mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed video packet scanning
This commit is contained in:
parent
d67fb2ce55
commit
103177a9e7
4
HISTORY
4
HISTORY
@ -534,3 +534,7 @@ Video Disk Recorder Revision History
|
|||||||
- No longer getting stuck when a channel doesn't sync while switching
|
- No longer getting stuck when a channel doesn't sync while switching
|
||||||
with the 'Up' and 'Down' keys.
|
with the 'Up' and 'Down' keys.
|
||||||
|
|
||||||
|
2001-06-27: Version 0.84
|
||||||
|
|
||||||
|
- Fixed video packet scanning to make it recognize the whole range of
|
||||||
|
allowed video packet ids.
|
||||||
|
4
config.h
4
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 1.50 2001/06/23 13:48:22 kls Exp $
|
* $Id: config.h 1.51 2001/06/27 08:33:55 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -19,7 +19,7 @@
|
|||||||
#include "eit.h"
|
#include "eit.h"
|
||||||
#include "tools.h"
|
#include "tools.h"
|
||||||
|
|
||||||
#define VDRVERSION "0.83"
|
#define VDRVERSION "0.84"
|
||||||
|
|
||||||
#define MaxBuffer 10000
|
#define MaxBuffer 10000
|
||||||
|
|
||||||
|
4
dvbapi.c
4
dvbapi.c
@ -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: dvbapi.c 1.80 2001/06/24 17:42:19 kls Exp $
|
* $Id: dvbapi.c 1.81 2001/06/27 08:32:32 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "dvbapi.h"
|
#include "dvbapi.h"
|
||||||
@ -830,7 +830,7 @@ void cReplayBuffer::StripAudioPackets(uchar *b, int Length, uchar Except)
|
|||||||
b[j] = 0x00;
|
b[j] = 0x00;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 0xE0: // video
|
case 0xE0 ... 0xEF: // video
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
//esyslog(LOG_ERR, "ERROR: unexpected packet id %02X", c);
|
//esyslog(LOG_ERR, "ERROR: unexpected packet id %02X", c);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user