diff options
author | etobi <git@e-tobi.net> | 2010-02-13 00:28:21 +0100 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2010-06-07 22:14:20 +0200 |
commit | 4cf2bdca0d81dc419315657cea0087bd905e078f (patch) | |
tree | bb56c7c58cd288924d03bfd2265702dde30ff799 /remux.h | |
parent | e4224634d1f8a3a07cf5f2c3f6e43333f0c376c7 (diff) | |
download | vdr-patches-patches/ttxtsubs-vdr-1.7.15.tar.gz vdr-patches-patches/ttxtsubs-vdr-1.7.15.tar.bz2 |
Ttxtsubs plugin hookpatches/ttxtsubs-vdr-1.7.15
Diffstat (limited to 'remux.h')
-rw-r--r-- | remux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -281,7 +281,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: |