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
ac44e6f2ae
commit
7008aeaf22
@ -3241,3 +3241,7 @@ Thomas Reufer <thomas@reufer.ch>
|
|||||||
Mariusz Bialonczyk <manio@skyboo.net>
|
Mariusz Bialonczyk <manio@skyboo.net>
|
||||||
for fixing sending CA descriptors to CAMs in case a cReceiver is not used for a
|
for fixing sending CA descriptors to CAMs in case a cReceiver is not used for a
|
||||||
recording or live view, like e.g. streaming clients
|
recording or live view, like e.g. streaming clients
|
||||||
|
|
||||||
|
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
@ -8132,7 +8132,7 @@ 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-15: Version 2.1.4
|
2014-01-16: Version 2.1.4
|
||||||
|
|
||||||
- Updated 'sources.conf' (thanks to Antti Hartikainen).
|
- Updated 'sources.conf' (thanks to Antti Hartikainen).
|
||||||
- cFont::CreateFont() now returns a dummy font in case there are no fonts installed.
|
- cFont::CreateFont() now returns a dummy font in case there are no fonts installed.
|
||||||
@ -8143,3 +8143,6 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed sending CA descriptors to CAMs in case a cReceiver is not used for a
|
- Fixed sending CA descriptors to CAMs in case a cReceiver is not used for a
|
||||||
recording or live view, like e.g. streaming clients (thanks to Mariusz Bialonczyk).
|
recording or live view, like e.g. streaming clients (thanks to Mariusz Bialonczyk).
|
||||||
- Added logging the supported system ids of a CAM.
|
- Added logging the supported system ids of a CAM.
|
||||||
|
- 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).
|
||||||
|
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 3.1 2014/01/16 10:15:50 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