mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-30 10:33:13 +00:00
Forgot to remove printf() used in debugging
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6149 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
1
muted.c
1
muted.c
@@ -325,7 +325,6 @@ static float getvol(void)
|
|||||||
err = AudioDeviceGetProperty(device, channels[0], false, kAudioDevicePropertyVolumeScalar, &size, &volumeL);
|
err = AudioDeviceGetProperty(device, channels[0], false, kAudioDevicePropertyVolumeScalar, &size, &volumeL);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = AudioDeviceGetProperty(device, channels[1], false, kAudioDevicePropertyVolumeScalar, &size, &volumeR);
|
err = AudioDeviceGetProperty(device, channels[1], false, kAudioDevicePropertyVolumeScalar, &size, &volumeR);
|
||||||
printf("volumeL = %f - volumeR = %f\n", volumeL, volumeR);
|
|
||||||
if (!err)
|
if (!err)
|
||||||
vol = (volumeL < volumeR) ? volumeR : volumeL;
|
vol = (volumeL < volumeR) ? volumeR : volumeL;
|
||||||
else {
|
else {
|
||||||
|
Reference in New Issue
Block a user