diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-09-30 19:32:54 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-09-30 19:32:54 +0000 |
| commit | 8d8294b4b354436adde202604fffb55c181d686c (patch) | |
| tree | cb56e191bf75fda0d504cfc66e8e1cf4d8575e4e /main/enigma-dvbtest.cpp | |
| parent | fc233e3a96e68514165781859afc94a2bb33e9e9 (diff) | |
| download | enigma2-8d8294b4b354436adde202604fffb55c181d686c.tar.gz enigma2-8d8294b4b354436adde202604fffb55c181d686c.zip | |
use libdvbsi++ from tuxbox-cvs,
please add http://ghost.dream-multimedia-tv.de/libdvbsi++.bb to your bitbake/openembedded/packages/tuxbox directory and exectute "bitbake -b ../openembedded/packages/tuxbox/libdvbsi++.bb" then install the libdvbsi++...ipk
Diffstat (limited to 'main/enigma-dvbtest.cpp')
| -rw-r--r-- | main/enigma-dvbtest.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/main/enigma-dvbtest.cpp b/main/enigma-dvbtest.cpp index 76c760c4..aa562399 100644 --- a/main/enigma-dvbtest.cpp +++ b/main/enigma-dvbtest.cpp @@ -7,7 +7,7 @@ #include <lib/dvb/db.h> #include <lib/dvb/isection.h> #include <lib/dvb/esection.h> -#include <lib/dvb_si/pmt.h> +#include <dvbsi++/program_map_section.h> #include <lib/dvb/specs.h> #include <unistd.h> @@ -16,7 +16,7 @@ class eMain: public eApplication, public Object ePtr<eDVBResourceManager> m_mgr; ePtr<iDVBChannel> m_channel; ePtr<iDVBDemux> m_demux; - eAUTable<eTable<ProgramMapTable> > m_table; + eAUTable<eTable<ProgramMapSection> > m_table; ePtr<eDVBDB> m_dvbdb; @@ -101,15 +101,15 @@ public: void tableReady(int) { /* table "fertig" (wie auch immer) */ - ePtr<eTable<ProgramMapTable> > ptr; + ePtr<eTable<ProgramMapSection> > ptr; /* erfolgreich? */ if (!m_table.getCurrent(ptr)) { /* dumpen ... */ - ProgramMapTableConstIterator i; + ProgramMapSectionConstIterator i; for (i = ptr->getSections().begin(); i != ptr->getSections().end(); ++i) { - const ProgramMapTable &pmt = **i; + const ProgramMapSection &pmt = **i; eDebug("pcr pid: %x", pmt.getPcrPid()); } eDebug("program map ..."); |
