diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-08-17 02:16:32 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-08-17 02:16:32 +0000 |
| commit | 0af11516cabc973907890f548925a66313c8d18c (patch) | |
| tree | c31b0f76274fbc23d24f0b0188c54282b96442bc /lib/dvb/pmt.cpp | |
| parent | 17647e30993cc20d8f94f2de4a0bc78ce6b593cb (diff) | |
| download | enigma2-0af11516cabc973907890f548925a66313c8d18c.tar.gz enigma2-0af11516cabc973907890f548925a66313c8d18c.zip | |
- add iSeekableService, implement it for serviceDvb
Diffstat (limited to 'lib/dvb/pmt.cpp')
| -rw-r--r-- | lib/dvb/pmt.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/dvb/pmt.cpp b/lib/dvb/pmt.cpp index 541a248c..e62de9b8 100644 --- a/lib/dvb/pmt.cpp +++ b/lib/dvb/pmt.cpp @@ -168,6 +168,15 @@ int eDVBServicePMTHandler::getDemux(ePtr<iDVBDemux> &demux) return -1; } +int eDVBServicePMTHandler::getPVRChannel(ePtr<iDVBPVRChannel> &pvr_channel) +{ + pvr_channel = m_pvr_channel; + if (pvr_channel) + return 0; + else + return -1; +} + int eDVBServicePMTHandler::tune(eServiceReferenceDVB &ref) { RESULT res; |
