diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-10-16 16:17:27 +0200 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-10-16 16:17:27 +0200 |
commit | 5ae90e8bc84404e62a2463b4c8f949cae467c1e5 (patch) | |
tree | 07b62681f5c6222a40c2d416e5f30919178cb8f3 /dxr3demuxdevice.h | |
parent | eb5d044705943b1da732ad7cd7ffbff48f3bfb98 (diff) | |
download | vdr-plugin-dxr3-5ae90e8bc84404e62a2463b4c8f949cae467c1e5.tar.gz vdr-plugin-dxr3-5ae90e8bc84404e62a2463b4c8f949cae467c1e5.tar.bz2 |
current implementation of StillPicture in cDxr3DemuxDevice is wrong
We call 3 times DemuxPes - wow. The big problem is that a still picture
can not only contain a pes packet. Also I want to refactor out as much
as possible from the demuxdevice as i dont like it and want to remove
it in the long term.
Diffstat (limited to 'dxr3demuxdevice.h')
-rw-r--r-- | dxr3demuxdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dxr3demuxdevice.h b/dxr3demuxdevice.h index 60de113..35a5a21 100644 --- a/dxr3demuxdevice.h +++ b/dxr3demuxdevice.h @@ -50,7 +50,7 @@ public: int DemuxPes(const uint8_t* buf, int length, bool bAc3Dts = false); int DemuxAudioPes(const uint8_t* buf, int length); - void StillPicture(const uint8_t* buf, int length); + void StillPicture(); eDxr3DemuxMode GetDemuxMode() { return m_demuxMode; } eDxr3TrickState GetTrickState() { return m_trickState; }; |