From a430f64252f5b38bb19dc151c3793d66d64a8fb7 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 30 Jan 2005 13:38:06 +0100 Subject: Fixed masking SubStreamType in cDevice::PlayPesPacket() --- device.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'device.c') diff --git a/device.c b/device.c index 723d23df..425ee6a9 100644 --- a/device.c +++ b/device.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 1.79 2005/01/25 18:19:30 kls Exp $ + * $Id: device.c 1.80 2005/01/30 12:52:45 kls Exp $ */ #include "device.h" @@ -842,7 +842,7 @@ int cDevice::PlayPesPacket(const uchar *Data, int Length, bool VideoOnly) case 0xBD: { // private stream 1 int PayloadOffset = Data[8] + 9; uchar SubStreamId = Data[PayloadOffset]; - uchar SubStreamType = SubStreamId & 0xE0; + uchar SubStreamType = SubStreamId & 0xF0; uchar SubStreamIndex = SubStreamId & 0x1F; // Compatibility mode for old VDR recordings, where 0xBD was only AC3: @@ -857,6 +857,7 @@ int cDevice::PlayPesPacket(const uchar *Data, int Length, bool VideoOnly) switch (SubStreamType) { case 0x20: // SPU + case 0x30: // SPU break; case 0x80: // AC3 & DTS if (Setup.UseDolbyDigital) { -- cgit v1.2.3