diff options
author | etobi <git@e-tobi.net> | 2010-02-13 00:28:21 +0100 |
---|---|---|
committer | etobi <git@e-tobi.net> | 2011-10-01 23:52:36 +0200 |
commit | a87fe8b8dbc21e308d2cd0d3547b77133ac0e149 (patch) | |
tree | fa786fa3acb000e787f1cb05d516dabb2912ad3f /remux.h | |
parent | 9960c81bed0689a397f8a3b9e3de91a3f75e5237 (diff) | |
download | vdr-patches-patches/ttxtsubs-vdr-1.7.21.tar.gz vdr-patches-patches/ttxtsubs-vdr-1.7.21.tar.bz2 |
Ttxtsubs plugin hookpatches/ttxtsubs-vdr-1.7.21
Diffstat (limited to 'remux.h')
-rw-r--r-- | remux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -284,7 +284,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: |