-/-
tho [Fri, 7 Dec 2007 14:54:44 +0000 (14:54 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@548 270642c3-0616-0410-b53a-bc976706d245

Examples/DVBAdapter/MPEdec.cc

index 9abf13c..318f860 100644 (file)
@@ -31,7 +31,7 @@
 
 #include <senf/Scheduler/Scheduler.hh>
 #include <senf/Packets/DefaultBundle/EthernetPacket.hh>
-#include <senf/Packets/MPEGDVBBundle/DatagramSection.hh>
+#include <senf/Packets/MPEGDVBBundle/MPESection.hh>
 #include <senf/Utils/membind.hh>
 #include <senf/Utils/hexdump.hh>
 #include <senf/Socket/Protocols/DVB.hh>
@@ -68,7 +68,7 @@ private:
     void dumpSection(senf::Scheduler::EventId event)
     {
         std::string data (handle.read());
-        senf::DatagramSection section (senf::DatagramSection::create(data));
+        senf::MPESection section (senf::MPESection::create(data));
         section.dump(std::cout);
         senf::PacketData & datagramData (section.next().data());
         senf::hexdump(datagramData.begin(), datagramData.end(), std::cout);