Commit 434b57e0 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

aout: correct test before applying volume

parent 85aa03d0
...@@ -90,8 +90,7 @@ static int commitVolume (vlc_object_t *obj, audio_output_t *aout, ...@@ -90,8 +90,7 @@ static int commitVolume (vlc_object_t *obj, audio_output_t *aout,
float vol = volume / (float)AOUT_VOLUME_DEFAULT; float vol = volume / (float)AOUT_VOLUME_DEFAULT;
aout_lock (aout); aout_lock (aout);
#warning FIXME: wrong test. Need to check that aout_output is ready. if (owner->module != NULL)
if (owner->volume.mixer != NULL)
ret = aout->pf_volume_set (aout, vol, mute); ret = aout->pf_volume_set (aout, vol, mute);
aout_unlock (aout); aout_unlock (aout);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment