mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Increased MIN_TS_PACKETS_FOR_FRAME_DETECTOR to 10
This commit is contained in:
parent
426cf5710d
commit
bc89bda239
@ -3188,3 +3188,7 @@ Thomas Maass <mase@setho.org>
|
|||||||
|
|
||||||
Eike Edener <eike@edener.de>
|
Eike Edener <eike@edener.de>
|
||||||
for reporting a bug in writing group separators to channels.conf that contain a comma
|
for reporting a bug in writing group separators to channels.conf that contain a comma
|
||||||
|
|
||||||
|
Eike Sauer <EikeSauer@t-online.de>
|
||||||
|
for reporting a problem with channels that need more than 5 TS packets for detecting
|
||||||
|
frame borders
|
||||||
|
5
HISTORY
5
HISTORY
@ -7870,6 +7870,9 @@ Video Disk Recorder Revision History
|
|||||||
and also to use the correct directory with --edit (the latter reported by Marko
|
and also to use the correct directory with --edit (the latter reported by Marko
|
||||||
Mäkelä).
|
Mäkelä).
|
||||||
|
|
||||||
2014-01-07: Version 2.0.6
|
2014-01-16: Version 2.0.6
|
||||||
|
|
||||||
- Updated 'sources.conf' (thanks to Antti Hartikainen).
|
- Updated 'sources.conf' (thanks to Antti Hartikainen).
|
||||||
|
- Increased MIN_TS_PACKETS_FOR_FRAME_DETECTOR to 10 in order to be able to record
|
||||||
|
channels that need more than 5 TS packets for detecting frame borders (reported by
|
||||||
|
Eike Sauer).
|
||||||
|
6
config.h
6
config.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: config.h 2.76.1.5 2013/10/29 16:06:45 kls Exp $
|
* $Id: config.h 2.76.1.6 2014/01/16 10:34:38 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -22,8 +22,8 @@
|
|||||||
|
|
||||||
// VDR's own version number:
|
// VDR's own version number:
|
||||||
|
|
||||||
#define VDRVERSION "2.0.5"
|
#define VDRVERSION "2.0.6"
|
||||||
#define VDRVERSNUM 20005 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 20006 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
// The plugin API's version number:
|
// The plugin API's version number:
|
||||||
|
|
||||||
|
4
remux.h
4
remux.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: remux.h 2.37 2013/01/20 11:43:59 kls Exp $
|
* $Id: remux.h 2.37.1.1 2014/01/16 10:33:35 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __REMUX_H
|
#ifndef __REMUX_H
|
||||||
@ -462,7 +462,7 @@ void PesDump(const char *Name, const u_char *Data, int Length);
|
|||||||
|
|
||||||
// Frame detector:
|
// Frame detector:
|
||||||
|
|
||||||
#define MIN_TS_PACKETS_FOR_FRAME_DETECTOR 5
|
#define MIN_TS_PACKETS_FOR_FRAME_DETECTOR 10
|
||||||
|
|
||||||
class cFrameParser;
|
class cFrameParser;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user