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 /dxr3device.c | |
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 'dxr3device.c')
-rw-r--r-- | dxr3device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dxr3device.c b/dxr3device.c index d57afbe..4cc89b2 100644 --- a/dxr3device.c +++ b/dxr3device.c @@ -156,7 +156,7 @@ void cDxr3Device::Mute() //! displays the given I-frame as a still picture. void cDxr3Device::StillPicture(const uchar *Data, int Length) { - m_DemuxDevice.StillPicture(Data, Length); + m_DemuxDevice.StillPicture(); } // ================================== |