diff options
author | Johns <johns98@gmx.net> | 2012-02-11 18:22:48 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-02-11 18:22:48 +0100 |
commit | a91533f6d1c3c723ef7e4ac89b1d7d53014453b5 (patch) | |
tree | b02d845fec3354cf7723d99abceecc4e912f248d /audio.c | |
parent | baa4500a2c0214c3022e43377e31620b43d85f8f (diff) | |
download | vdr-plugin-softhddevice-a91533f6d1c3c723ef7e4ac89b1d7d53014453b5.tar.gz vdr-plugin-softhddevice-a91533f6d1c3c723ef7e4ac89b1d7d53014453b5.tar.bz2 |
Detect audio stream type only after stream switch.
Diffstat (limited to 'audio.c')
-rw-r--r-- | audio.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -2070,13 +2070,7 @@ int64_t AudioGetClock(void) */ void AudioSetVolume(int volume) { -#ifdef USE_ALSA - AlsaSetVolume(volume); -#endif -#ifdef USE_OSS - OssSetVolume(volume); -#endif - (void)volume; + return AudioUsedModule->SetVolume(volume); } /** |