mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
audio: don't list encoder AO with --audio-device=help
This commit is contained in:
parent
8417d86ce6
commit
04a5d25bf7
@ -404,6 +404,8 @@ struct ao_device_list *ao_get_device_list(struct mpv_global *global)
|
||||
struct ao_device_list *list = talloc_zero(NULL, struct ao_device_list);
|
||||
for (int n = 0; audio_out_drivers[n]; n++) {
|
||||
const struct ao_driver *d = audio_out_drivers[n];
|
||||
if (d->encode)
|
||||
continue;
|
||||
struct ao *ao = ao_alloc(true, global, NULL, (char *)d->name, NULL);
|
||||
if (!ao)
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user