summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-06-27 08:33:55 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-06-27 08:33:55 +0200
commit103177a9e75396d18fbbe56a6fa993bb4bfe6263 (patch)
tree9c7cecceff7440563c395f47af6c38f630e09f03
parentd67fb2ce5563892d6b6735a82e1262cf35a713d9 (diff)
downloadvdr-103177a9e75396d18fbbe56a6fa993bb4bfe6263.tar.gz
vdr-103177a9e75396d18fbbe56a6fa993bb4bfe6263.tar.bz2
Fixed video packet scanning
-rw-r--r--HISTORY4
-rw-r--r--config.h4
-rw-r--r--dvbapi.c4
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);