diff options
author | etobi <git@e-tobi.net> | 2010-02-13 00:28:21 +0100 |
---|---|---|
committer | etobi <git@e-tobi.net> | 2011-08-19 22:45:19 +0200 |
commit | fd8e60b778faa10adeffa96fa0c734d8b0f8384f (patch) | |
tree | 492bca33f9377f5e5d5997828cccf1d165e37deb /remux.h | |
parent | 8ffcf9b992ec861604034b312ddb8dd14358bc60 (diff) | |
download | vdr-patches-patches/ttxtsubs-vdr-1.7.20.tar.gz vdr-patches-patches/ttxtsubs-vdr-1.7.20.tar.bz2 |
Ttxtsubs plugin hookpatches/ttxtsubs-vdr-1.7.20
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: |