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
0b82b38533
commit
644fcc3bbe
@ -1174,6 +1174,7 @@ Reinhard Nissl <rnissl@gmx.de>
|
|||||||
for reporting an invalid access in the section handler when ending VDR
|
for reporting an invalid access in the section handler when ending VDR
|
||||||
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 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
|
||||||
|
5
HISTORY
5
HISTORY
@ -5729,3 +5729,8 @@ Video Disk Recorder Revision History
|
|||||||
- Added Chinese language texts (thanks to Nan Feng).
|
- Added Chinese language texts (thanks to Nan Feng).
|
||||||
- Updated the Portuguese language texts.
|
- Updated the Portuguese language texts.
|
||||||
- Added a note about VDR_CHARSET_OVERRIDE to the INSTALL file.
|
- Added a note about VDR_CHARSET_OVERRIDE to the INSTALL file.
|
||||||
|
|
||||||
|
2008-04-13: Version 1.6.0-1
|
||||||
|
|
||||||
|
- Fixed handling the counter in detection of pre 1.3.19 PS data (thanks to Reinhard
|
||||||
|
Nissl).
|
||||||
|
4
config.h
4
config.h
@ -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: config.h 1.310 2008/03/23 10:26:10 kls Exp $
|
* $Id: config.h 1.310.1.1 2008/04/13 11:09:42 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
// VDR's own version number:
|
// VDR's own version number:
|
||||||
|
|
||||||
#define VDRVERSION "1.6.0"
|
#define VDRVERSION "1.6.0-1"
|
||||||
#define VDRVERSNUM 10600 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 10600 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
// The plugin API's version number:
|
// The plugin API's version number:
|
||||||
|
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 1.157 2008/03/09 10:03:34 kls Exp $
|
* $Id: device.c 1.157.1.1 2008/04/13 11:16:00 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "device.h"
|
#include "device.h"
|
||||||
@ -1273,7 +1273,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;
|
||||||
@ -1314,7 +1314,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