diff --git a/CONTRIBUTORS b/CONTRIBUTORS index bbcc0db6..edf2263c 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -187,6 +187,7 @@ Stefan Huelswitt 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 for pointing out that there are channels that have a symbol rate higher than diff --git a/HISTORY b/HISTORY index 39f53355..87f5d269 100644 --- a/HISTORY +++ b/HISTORY @@ -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));