diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-03-30 12:42:23 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-03-30 12:42:23 +0200 |
commit | c52b219131eee937c16b3dd9ebc3706d77df689c (patch) | |
tree | 217a979b47064d59de1003c572e3b22e68e61d94 /dvbdevice.c | |
parent | f79a442f443edda16353a760b0b93eb4e63aaa42 (diff) | |
download | vdr-c52b219131eee937c16b3dd9ebc3706d77df689c.tar.gz vdr-c52b219131eee937c16b3dd9ebc3706d77df689c.tar.bz2 |
Added some missing cAudio handling calls
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 88bf4154..58307f89 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.48 2003/03/30 11:43:14 kls Exp $ + * $Id: dvbdevice.c 1.49 2003/03/30 12:40:47 kls Exp $ */ #include "dvbdevice.h" @@ -829,6 +829,7 @@ void cDvbDevice::Clear(void) CHECK(ioctl(fd_video, VIDEO_CLEAR_BUFFER)); if (fd_audio >= 0) CHECK(ioctl(fd_audio, AUDIO_CLEAR_BUFFER)); + cDevice::Clear(); } void cDvbDevice::Play(void) @@ -843,6 +844,7 @@ void cDvbDevice::Play(void) if (fd_video >= 0) CHECK(ioctl(fd_video, VIDEO_CONTINUE)); } + cDevice::Play(); } void cDvbDevice::Freeze(void) @@ -857,6 +859,7 @@ void cDvbDevice::Freeze(void) if (fd_video >= 0) CHECK(ioctl(fd_video, VIDEO_FREEZE)); } + cDevice::Freeze(); } void cDvbDevice::Mute(void) @@ -865,6 +868,7 @@ void cDvbDevice::Mute(void) CHECK(ioctl(fd_audio, AUDIO_SET_AV_SYNC, false)); CHECK(ioctl(fd_audio, AUDIO_SET_MUTE, true)); } + cDevice::Mute(); } void cDvbDevice::StillPicture(const uchar *Data, int Length) |