summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-04-27 09:45:51 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-04-27 09:45:51 +0200
commit65b9d4a97f3a00865f8d578635f8ac2947c62cbb (patch)
treeaf4c3155343ee125b900f3b2bb085d810c77e374 /dvbdevice.c
parentf67fef57ea86972bdc1c1d54567c17f6d5c04a57 (diff)
downloadvdr-65b9d4a97f3a00865f8d578635f8ac2947c62cbb.tar.gz
vdr-65b9d4a97f3a00865f8d578635f8ac2947c62cbb.tar.bz2
Removed the Mute() call from cDvbDevice::StillPicture()
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index 32c5b9e6..d66cd767 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.c 1.55 2003/04/26 11:49:06 kls Exp $
+ * $Id: dvbdevice.c 1.56 2003/04/27 09:44:17 kls Exp $
*/
#include "dvbdevice.h"
@@ -871,7 +871,6 @@ void cDvbDevice::Mute(void)
void cDvbDevice::StillPicture(const uchar *Data, int Length)
{
- Mute();
/* Using the VIDEO_STILLPICTURE ioctl call would be the
correct way to display a still frame, but unfortunately this
doesn't work with frames from VDR. So let's do pretty much the
@@ -883,7 +882,7 @@ void cDvbDevice::StillPicture(const uchar *Data, int Length)
*/
//#define VIDEO_STILLPICTURE_WORKS_WITH_VDR_FRAMES
#ifdef VIDEO_STILLPICTURE_WORKS_WITH_VDR_FRAMES
- videoDisplayStillPicture sp = { (char *)Data, Length };
+ video_still_picture sp = { (char *)Data, Length };
CHECK(ioctl(fd_video, VIDEO_STILLPICTURE, &sp));
#else
#define MIN_IFRAME 400000