mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed DDS detection for HD resolution subtitles
This commit is contained in:
parent
505574fa98
commit
5203fa03e8
@ -1256,6 +1256,7 @@ Reinhard Nissl <rnissl@gmx.de>
|
|||||||
for devices with large buffers
|
for devices with large buffers
|
||||||
for implementing cDeviceHook
|
for implementing cDeviceHook
|
||||||
for implementing cDevice::GetCurrentlyTunedTransponder()
|
for implementing cDevice::GetCurrentlyTunedTransponder()
|
||||||
|
for fixing DDS detection for HD resolution subtitles
|
||||||
|
|
||||||
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
|
||||||
|
1
HISTORY
1
HISTORY
@ -6476,3 +6476,4 @@ Video Disk Recorder Revision History
|
|||||||
Rolf Ahrenberg).
|
Rolf Ahrenberg).
|
||||||
- Added locking to the cCutter functions to avoid a crash in case CutRecording()
|
- Added locking to the cCutter functions to avoid a crash in case CutRecording()
|
||||||
is called from a plugin (reported by Andreas Mair).
|
is called from a plugin (reported by Andreas Mair).
|
||||||
|
- Fixed DDS detection for HD resolution subtitles (thanks to Reinhard Nissl).
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
* Original author: Marco Schlüßler <marco@lordzodiac.de>
|
* Original author: Marco Schlüßler <marco@lordzodiac.de>
|
||||||
* With some input from the "subtitle plugin" by Pekka Virtanen <pekka.virtanen@sci.fi>
|
* With some input from the "subtitle plugin" by Pekka Virtanen <pekka.virtanen@sci.fi>
|
||||||
*
|
*
|
||||||
* $Id: dvbsubtitle.c 2.6 2010/06/05 14:03:55 kls Exp $
|
* $Id: dvbsubtitle.c 2.7 2010/08/29 14:08:23 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "dvbsubtitle.h"
|
#include "dvbsubtitle.h"
|
||||||
@ -660,7 +660,7 @@ cDvbSubtitleConverter::cDvbSubtitleConverter(void)
|
|||||||
dvbSubtitleAssembler = new cDvbSubtitleAssembler;
|
dvbSubtitleAssembler = new cDvbSubtitleAssembler;
|
||||||
osd = NULL;
|
osd = NULL;
|
||||||
frozen = false;
|
frozen = false;
|
||||||
ddsVersionNumber = 0;
|
ddsVersionNumber = -1;
|
||||||
displayWidth = 720;
|
displayWidth = 720;
|
||||||
displayHeight = 576;
|
displayHeight = 576;
|
||||||
displayHorizontalOffset = 0;
|
displayHorizontalOffset = 0;
|
||||||
@ -693,7 +693,7 @@ void cDvbSubtitleConverter::Reset(void)
|
|||||||
bitmaps->Clear();
|
bitmaps->Clear();
|
||||||
DELETENULL(osd);
|
DELETENULL(osd);
|
||||||
frozen = false;
|
frozen = false;
|
||||||
ddsVersionNumber = 0;
|
ddsVersionNumber = -1;
|
||||||
displayWidth = 720;
|
displayWidth = 720;
|
||||||
displayHeight = 576;
|
displayHeight = 576;
|
||||||
displayHorizontalOffset = 0;
|
displayHorizontalOffset = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user