diff options
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | config.h | 4 | ||||
-rw-r--r-- | dvbapi.c | 4 |
3 files changed, 8 insertions, 4 deletions
@@ -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. @@ -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 @@ -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); |