From 103177a9e75396d18fbbe56a6fa993bb4bfe6263 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Wed, 27 Jun 2001 08:33:55 +0200 Subject: Fixed video packet scanning --- HISTORY | 4 ++++ config.h | 4 ++-- dvbapi.c | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/HISTORY b/HISTORY index 9a305cd3..89be5a2a 100644 --- a/HISTORY +++ b/HISTORY @@ -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. diff --git a/config.h b/config.h index 8b113334..fec245bf 100644 --- a/config.h +++ b/config.h @@ -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 diff --git a/dvbapi.c b/dvbapi.c index 097f3561..d1dc5283 100644 --- a/dvbapi.c +++ b/dvbapi.c @@ -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); -- cgit v1.2.3