diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-04-27 09:45:51 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-04-27 09:45:51 +0200 |
commit | 65b9d4a97f3a00865f8d578635f8ac2947c62cbb (patch) | |
tree | af4c3155343ee125b900f3b2bb085d810c77e374 /dvbdevice.c | |
parent | f67fef57ea86972bdc1c1d54567c17f6d5c04a57 (diff) | |
download | vdr-65b9d4a97f3a00865f8d578635f8ac2947c62cbb.tar.gz vdr-65b9d4a97f3a00865f8d578635f8ac2947c62cbb.tar.bz2 |
Removed the Mute() call from cDvbDevice::StillPicture()
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 5 |
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 |