diff options
author | etobi <git@e-tobi.net> | 2010-02-13 00:28:21 +0100 |
---|---|---|
committer | etobi <git@e-tobi.net> | 2010-03-06 12:07:59 +0100 |
commit | 3745627ba07dbf61f772ea463043d74567c5f710 (patch) | |
tree | 8b4c014c0640cfb4a35bf2146031116e868274cd /remux.h | |
parent | 28721a9cc5571432c4088ea33430aa863d7b734e (diff) | |
download | vdr-patches-patches/ttxtsubs-vdr-1.7.13.tar.gz vdr-patches-patches/ttxtsubs-vdr-1.7.13.tar.bz2 |
Ttxtsubs plugin hookpatches/ttxtsubs-vdr-1.7.13
Diffstat (limited to 'remux.h')
-rw-r--r-- | remux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -280,7 +280,8 @@ public: uchar SubtitlingType(int i) const { return (0 <= i && i < MAXSPIDS) ? subtitlingTypes[i] : uchar(0); } uint16_t CompositionPageId(int i) const { return (0 <= i && i < MAXSPIDS) ? compositionPageIds[i] : uint16_t(0); } uint16_t AncillaryPageId(int i) const { return (0 <= i && i < MAXSPIDS) ? ancillaryPageIds[i] : uint16_t(0); } - const tTeletextSubtitlePage* TeletextSubtitlePages() const { return teletextSubtitlePages; } + const tTeletextSubtitlePage *TeletextSubtitlePages() const { return teletextSubtitlePages; } + int TotalTeletextSubtitlePages() const { return totalTtxtSubtitlePages; } }; // TS to PES converter: |