diff options
author | etobi <git@e-tobi.net> | 2010-02-13 00:28:21 +0100 |
---|---|---|
committer | etobi <git@e-tobi.net> | 2010-04-18 02:42:59 +0200 |
commit | 2f325a640f1d71222d3d7082776b7e1c55489bbd (patch) | |
tree | 0676a050d791487964c6601da7fa39fa9f45a044 /remux.h | |
parent | 62912232e2b38a1857c0ff279bd61579b1ab85ae (diff) | |
download | vdr-patches-2f325a640f1d71222d3d7082776b7e1c55489bbd.tar.gz vdr-patches-2f325a640f1d71222d3d7082776b7e1c55489bbd.tar.bz2 |
Ttxtsubs plugin hookpatches/ttxtsubs-vdr-1.7.14
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: |