diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-06-12 14:42:55 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-06-12 14:42:55 +0200 |
commit | 9b0070a420a47dfcced1e480d85c9f455aa6e416 (patch) | |
tree | bb7b46be360ccdcb9537fbbfb78d950e5c986fe1 /dvbdevice.c | |
parent | dcee5cb9670abb17a2d541a4fc073a944c16f6bb (diff) | |
download | vdr-9b0070a420a47dfcced1e480d85c9f455aa6e416.tar.gz vdr-9b0070a420a47dfcced1e480d85c9f455aa6e416.tar.bz2 |
Revisited the "Fixed missing audio after replaying a DVD" change
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index e5b777dc..2d23d27c 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.89 2004/06/06 11:28:28 kls Exp $ + * $Id: dvbdevice.c 1.90 2004/06/12 14:42:19 kls Exp $ */ #include "dvbdevice.h" @@ -766,9 +766,10 @@ bool cDvbDevice::SetChannelDevice(const cChannel *Channel, bool LiveView) } if (IsPrimaryDevice()) AddPid(Channel->Tpid(), ptTeletext); + CHECK(ioctl(fd_audio, AUDIO_SET_MUTE, true)); // actually one would expect 'false' here, but according to Marco Schlüßler <marco@lordzodiac.de> this works + // to avoid missing audio after replaying a DVD; with 'false' there is an audio disturbance when switching + // between two channels on the same transponder on DVB-S CHECK(ioctl(fd_audio, AUDIO_SET_AV_SYNC, true)); - CHECK(ioctl(fd_audio, AUDIO_SET_MUTE, false)); - CHECK(ioctl(fd_video, VIDEO_SET_BLANK, false)); } else if (StartTransferMode) cControl::Launch(new cTransferControl(this, Channel->Vpid(), Channel->Apid1(), Channel->Apid2(), Channel->Dpid1(), Channel->Dpid2())); |