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

waveout: report initially selected output device

parent 5d828ad2
...@@ -806,7 +806,11 @@ static int Open(vlc_object_t *obj) ...@@ -806,7 +806,11 @@ static int Open(vlc_object_t *obj)
free(names); free(names);
free(ids); free(ids);
} }
var_Create(aout, "waveout-audio-device", VLC_VAR_STRING|VLC_VAR_DOINHERIT);
char *dev = var_CreateGetNonEmptyString(aout, "waveout-audio-device");
aout_DeviceReport(aout, dev);
free(dev);
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
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