mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a wrong inheritance in libsi's SubtitlingDescriptor::Subtitling
This commit is contained in:
parent
d0be04aed5
commit
22bb343f12
@ -1168,6 +1168,7 @@ Marco Schl
|
|||||||
for fixing handling transparent areas in cDvbSpuBitmap
|
for fixing handling transparent areas in cDvbSpuBitmap
|
||||||
for fixing a bug in libsi's SubtitlingDescriptor::getLength()
|
for fixing a bug in libsi's SubtitlingDescriptor::getLength()
|
||||||
for removing scaling coordinates in letterbox mode from cDvbSpu
|
for removing scaling coordinates in letterbox mode from cDvbSpu
|
||||||
|
for fixing a wrong inheritance in libsi's SubtitlingDescriptor::Subtitling
|
||||||
|
|
||||||
Jürgen Schmitz <j.schmitz@web.de>
|
Jürgen Schmitz <j.schmitz@web.de>
|
||||||
for reporting a bug in displaying the current channel when switching via the SVDRP
|
for reporting a bug in displaying the current channel when switching via the SVDRP
|
||||||
|
2
HISTORY
2
HISTORY
@ -3510,3 +3510,5 @@ Video Disk Recorder Revision History
|
|||||||
- Recordings now avoid zero sized video data files (thanks to Wolfgang Fitz).
|
- Recordings now avoid zero sized video data files (thanks to Wolfgang Fitz).
|
||||||
- Some rearrangements in cDvbPlayer::Action() to avoid lockups on NPTL systems
|
- Some rearrangements in cDvbPlayer::Action() to avoid lockups on NPTL systems
|
||||||
(thanks to Reinhard Nissl).
|
(thanks to Reinhard Nissl).
|
||||||
|
- Fixed a wrong inheritance in libsi's SubtitlingDescriptor::Subtitling (thanks to
|
||||||
|
Marco Schlüßler).
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* the Free Software Foundation; either version 2 of the License, or *
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
* (at your option) any later version. *
|
* (at your option) any later version. *
|
||||||
* *
|
* *
|
||||||
* $Id: descriptor.h 1.11 2005/05/06 08:57:53 kls Exp $
|
* $Id: descriptor.h 1.12 2005/05/08 14:08:19 kls Exp $
|
||||||
* *
|
* *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
@ -283,7 +283,7 @@ private:
|
|||||||
|
|
||||||
class SubtitlingDescriptor : public Descriptor {
|
class SubtitlingDescriptor : public Descriptor {
|
||||||
public:
|
public:
|
||||||
class Subtitling : public Descriptor {
|
class Subtitling : public LoopElement {
|
||||||
public:
|
public:
|
||||||
char languageCode[4];
|
char languageCode[4];
|
||||||
int getSubtitlingType() const;
|
int getSubtitlingType() const;
|
||||||
|
Loading…
Reference in New Issue
Block a user