diff options
author | Tobias Grimm <tobias@e-tobi.loc> | 2009-04-25 22:41:47 +0200 |
---|---|---|
committer | Tobias Grimm <tobias@e-tobi.loc> | 2009-06-20 18:17:43 +0200 |
commit | 5df82d263906e65b751b6e419d6bbd26a22121d3 (patch) | |
tree | 57ef587f528b46c5a2d7e4e55d547fee353fbeae /vdrttxtsubshooks.h | |
parent | 61ea36dc9f402d0218d5cec06b0d583920509b68 (diff) | |
download | vdr-patches-5df82d263906e65b751b6e419d6bbd26a22121d3.tar.gz vdr-patches-5df82d263906e65b751b6e419d6bbd26a22121d3.tar.bz2 |
ttxtsubs: Dropped cTtxtsubsRecorder - not required for VDR 1.7.5 with TS recordings anymore
Diffstat (limited to 'vdrttxtsubshooks.h')
-rw-r--r-- | vdrttxtsubshooks.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/vdrttxtsubshooks.h b/vdrttxtsubshooks.h index 9f2eac2..bb96429 100644 --- a/vdrttxtsubshooks.h +++ b/vdrttxtsubshooks.h @@ -26,15 +26,6 @@ class cChannel; #define VDRTTXTSUBSHOOKS -class cTtxtSubsRecorderBase { - public: - virtual ~cTtxtSubsRecorderBase() {}; - - // returns a PES packet if there is data to add to the recording - virtual uint8_t *GetPacket(uint8_t **buf, size_t *len) { return NULL; }; - virtual void DeviceAttach(void) {}; -}; - class cVDRTtxtsubsHookListener { public: cVDRTtxtsubsHookListener(void) {}; @@ -45,8 +36,6 @@ class cVDRTtxtsubsHookListener { virtual void HideOSD(void) {}; virtual void ShowOSD(void) {}; virtual void PlayerTeletextData(uint8_t *p, int length, bool IsPesRecording = true) {}; - virtual cTtxtSubsRecorderBase *NewTtxtSubsRecorder(cDevice *dev, const cChannel *ch) - { return NULL; }; virtual int ManualPageNumber(const cChannel *channel) { return 0; }; |