mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed handling the counter in detection of pre 1.3.19 PS data
This commit is contained in:
parent
0e5bc7773a
commit
9d17559caf
@ -1175,6 +1175,7 @@ Reinhard Nissl <rnissl@gmx.de>
|
|||||||
for pointing out that cDevice::Transferring() doesn't return the right value in the
|
for pointing out that cDevice::Transferring() doesn't return the right value in the
|
||||||
early stage of channel switching
|
early stage of channel switching
|
||||||
for fixing displaying transponder data when it is modified
|
for fixing displaying transponder data when it is modified
|
||||||
|
for fixing handling the counter in detection of pre 1.3.19 PS data
|
||||||
|
|
||||||
Richard Robson <richard_robson@beeb.net>
|
Richard Robson <richard_robson@beeb.net>
|
||||||
for reporting freezing replay if a timer starts while in Transfer Mode from the
|
for reporting freezing replay if a timer starts while in Transfer Mode from the
|
||||||
|
2
HISTORY
2
HISTORY
@ -5739,3 +5739,5 @@ Video Disk Recorder Revision History
|
|||||||
want to make sure you have a backup of this file in case you need to go back to
|
want to make sure you have a backup of this file in case you need to go back to
|
||||||
the previous version of VDR!
|
the previous version of VDR!
|
||||||
- Fixed displaying transponder data when it is modified (thanks to Reinhard Nissl).
|
- Fixed displaying transponder data when it is modified (thanks to Reinhard Nissl).
|
||||||
|
- Fixed handling the counter in detection of pre 1.3.19 PS data (thanks to Reinhard
|
||||||
|
Nissl).
|
||||||
|
7
device.c
7
device.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: device.c 2.1 2008/04/12 11:15:32 kls Exp $
|
* $Id: device.c 2.2 2008/04/12 14:12:14 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "device.h"
|
#include "device.h"
|
||||||
@ -1294,7 +1294,7 @@ int cDevice::PlayPesPacket(const uchar *Data, int Length, bool VideoOnly)
|
|||||||
uchar SubStreamIndex = SubStreamId & 0x1F;
|
uchar SubStreamIndex = SubStreamId & 0x1F;
|
||||||
|
|
||||||
// Compatibility mode for old VDR recordings, where 0xBD was only AC3:
|
// Compatibility mode for old VDR recordings, where 0xBD was only AC3:
|
||||||
pre_1_3_19_PrivateStreamDeteced:
|
pre_1_3_19_PrivateStreamDetected:
|
||||||
if (pre_1_3_19_PrivateStream > MIN_PRE_1_3_19_PRIVATESTREAM) {
|
if (pre_1_3_19_PrivateStream > MIN_PRE_1_3_19_PRIVATESTREAM) {
|
||||||
SubStreamId = c;
|
SubStreamId = c;
|
||||||
SubStreamType = 0x80;
|
SubStreamType = 0x80;
|
||||||
@ -1335,7 +1335,8 @@ pre_1_3_19_PrivateStreamDeteced:
|
|||||||
if (pre_1_3_19_PrivateStream > MIN_PRE_1_3_19_PRIVATESTREAM) {
|
if (pre_1_3_19_PrivateStream > MIN_PRE_1_3_19_PRIVATESTREAM) {
|
||||||
dsyslog("switching to pre 1.3.19 Dolby Digital compatibility mode - substream id = %02X", SubStreamId);
|
dsyslog("switching to pre 1.3.19 Dolby Digital compatibility mode - substream id = %02X", SubStreamId);
|
||||||
ClrAvailableTracks();
|
ClrAvailableTracks();
|
||||||
goto pre_1_3_19_PrivateStreamDeteced;
|
pre_1_3_19_PrivateStream = MIN_PRE_1_3_19_PRIVATESTREAM + 1;
|
||||||
|
goto pre_1_3_19_PrivateStreamDetected;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user