1
0
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:
Klaus Schmidinger 2001-06-27 08:33:55 +02:00
parent d67fb2ce55
commit 103177a9e7
3 changed files with 8 additions and 4 deletions

View File

@ -534,3 +534,7 @@ Video Disk Recorder Revision History
- No longer getting stuck when a channel doesn't sync while switching
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.

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* 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
@ -19,7 +19,7 @@
#include "eit.h"
#include "tools.h"
#define VDRVERSION "0.83"
#define VDRVERSION "0.84"
#define MaxBuffer 10000

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* 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"
@ -830,7 +830,7 @@ void cReplayBuffer::StripAudioPackets(uchar *b, int Length, uchar Except)
b[j] = 0x00;
}
break;
case 0xE0: // video
case 0xE0 ... 0xEF: // video
break;
default:
//esyslog(LOG_ERR, "ERROR: unexpected packet id %02X", c);