diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-03 13:59:56 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-03 13:59:56 +0000 |
| commit | af6a8a3a102ff0230fcc6d90ad213e2e7d706fa8 (patch) | |
| tree | 1c2d6a115cacfe99292fb8599a03e2c9a20f0a4f /lib/dvb/dvb.h | |
| parent | 88a6749020acfb921ae70f714e995af74e72c47c (diff) | |
| download | enigma2-af6a8a3a102ff0230fcc6d90ad213e2e7d706fa8.tar.gz enigma2-af6a8a3a102ff0230fcc6d90ad213e2e7d706fa8.zip | |
implement readFrontendData method to get a python dictionary containing data
about current used transponder/frontend (frontend state, frontend type, lock
state, sync state, frequency, symbolrate, fec_innter...)
when it is called with True as param it returns the original transponder data
(written to tuner) otherwise it reads the current data out of the frontend
(corrected tuner data)
Diffstat (limited to 'lib/dvb/dvb.h')
| -rw-r--r-- | lib/dvb/dvb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb/dvb.h b/lib/dvb/dvb.h index 6209f281..836a4948 100644 --- a/lib/dvb/dvb.h +++ b/lib/dvb/dvb.h @@ -218,7 +218,8 @@ public: RESULT setCIRouting(const eDVBCIRouting &routing); RESULT getDemux(ePtr<iDVBDemux> &demux, int cap); RESULT getFrontend(ePtr<iDVBFrontend> &frontend); - + RESULT getCurrentFrontendParameters(ePtr<iDVBFrontendParameters> ¶m); + /* iDVBPVRChannel */ RESULT playFile(const char *file); void stopFile(); @@ -230,7 +231,6 @@ public: int getUseCount() { return m_use_count; } private: - ePtr<iDVBFrontendParameters> m_feparm; // for retune on lostlock ePtr<eDVBAllocatedFrontend> m_frontend; ePtr<eDVBAllocatedDemux> m_demux, m_decoder_demux; |
