diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-11-06 13:17:35 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-11-06 13:17:35 +0100 |
commit | f8475a1d20ee4dade8b3f7590abfa794dae7741e (patch) | |
tree | c507bb8c60f9a2f0184d26a8f2ff285ddd91b1e1 | |
parent | c3e52f8da96991bb43c2d18cefd5fe9c6db7de87 (diff) | |
download | vdr-f8475a1d20ee4dade8b3f7590abfa794dae7741e.tar.gz vdr-f8475a1d20ee4dade8b3f7590abfa794dae7741e.tar.bz2 |
Fixed handling of pmAudioOnlyBlack
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | dvbdevice.c | 5 |
3 files changed, 4 insertions, 3 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index bbcc0db6..edf2263c 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -187,6 +187,7 @@ Stefan Huelswitt <huels@iname.com> available to plugins, and to add a SetText() function for reporting a bug in setting the title in the replay display of the "Classic VDR" skin in case a shorter title is set after a longer one + for fixing handling of pmAudioOnlyBlack Ulrich Röder <roeder@efr-net.de> for pointing out that there are channels that have a symbol rate higher than @@ -3127,3 +3127,4 @@ Video Disk Recorder Revision History - Added missing calls to cStatus::MsgOsdClear() in cSkins::Message() (thanks to Joachim Wilke for reporting this one). - Fixed the cDvbSpuDecoder (thanks to Marco Schlüßler). +- Fixed handling of pmAudioOnlyBlack (thanks to Stefan Huelswitt). diff --git a/dvbdevice.c b/dvbdevice.c index fb87ae4b..c2b60011 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.102 2004/10/30 14:53:30 kls Exp $ + * $Id: dvbdevice.c 1.103 2004/11/06 13:16:25 kls Exp $ */ #include "dvbdevice.h" @@ -897,10 +897,9 @@ bool cDvbDevice::SetPlayMode(ePlayMode PlayMode) CHECK(ioctl(fd_audio, AUDIO_SET_MUTE, false)); break; case pmAudioVideo: + case pmAudioOnlyBlack: if (playMode == pmNone) TurnOffLiveMode(); - // continue with next... - case pmAudioOnlyBlack: CHECK(ioctl(fd_video, VIDEO_SET_BLANK, true)); CHECK(ioctl(fd_audio, AUDIO_SELECT_SOURCE, AUDIO_SOURCE_MEMORY)); CHECK(ioctl(fd_audio, AUDIO_SET_AV_SYNC, PlayMode == pmAudioVideo)); |