diff options
author | Sascha Volkenandt <sascha@akv-soft.de> | 2005-01-09 19:42:00 +0100 |
---|---|---|
committer | Sascha Volkenandt <sascha@akv-soft.de> | 2005-01-09 19:42:00 +0100 |
commit | a32763d16f82ef6055430d69100784522b631bd6 (patch) | |
tree | 76299c1f75a3a32a44cd8804c112c257cc62f41f /receiver.c | |
parent | 2e4f67e1a49a479db365bfb44fbc1aeac80d518a (diff) | |
download | vdr-plugin-osdpip-0.0.7.1.tar.gz vdr-plugin-osdpip-0.0.7.1.tar.bz2 |
Release version 0.0.7.1v0.0.7.1
- adapted to VDR 1.3.18+ (should work with older versions, too)
Diffstat (limited to 'receiver.c')
-rw-r--r-- | receiver.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -14,14 +14,22 @@ cOsdPipReceiver::cOsdPipReceiver(const cChannel *Channel, cRingBufferFrame *ESBuffer): +#if VDRVERSNUM >= 10318 + cReceiver(Channel->Ca(), 0, 2, Channel->Vpid(), Channel->Apid(0)) +#else cReceiver(Channel->Ca(), 0, 2, Channel->Vpid(), Channel->Apid1()) +#endif { m_TSBuffer = new cRingBufferLinear(MEGABYTE(3), TS_SIZE * 2, true); #if VDRVERSNUM >= 10313 m_TSBuffer->SetTimeouts(0, 100); #endif m_ESBuffer = ESBuffer; +#if VDRVERSNUM >= 10318 + m_Remux = new cRemux(Channel->Vpid(), Channel->Apid(0), 0, 0, 0, true); +#else m_Remux = new cRemux(Channel->Vpid(), Channel->Apid1(), 0, 0, 0, true); +#endif m_Active = false; } |