From 35649a990a5d468b6e9539c9e362d1e5a351c9c4 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 9 Oct 2014 21:21:31 +0200 Subject: audio: add device selection & listing with --audio-device Not sure how good of an idea this is. This commit doesn't add support for this to any AO yet; the AO implementations will follow later. --- audio/out/ao.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'audio/out/ao.h') diff --git a/audio/out/ao.h b/audio/out/ao.h index 7badf90aef..32b6611afc 100644 --- a/audio/out/ao.h +++ b/audio/out/ao.h @@ -51,6 +51,16 @@ typedef struct ao_control_vol { float right; } ao_control_vol_t; +struct ao_device_desc { + char *name; // symbolic name; will be set on ao->device + char *desc; // verbose human readable name +}; + +struct ao_device_list { + struct ao_device_desc *devices; + int num_devices; +}; + struct ao; struct mpv_global; struct input_ctx; @@ -76,4 +86,7 @@ void ao_resume(struct ao *ao); void ao_drain(struct ao *ao); bool ao_eof_reached(struct ao *ao); +struct ao_device_list *ao_get_device_list(void); +void ao_print_devices(struct mp_log *log); + #endif /* MPLAYER_AUDIO_OUT_H */ -- cgit v1.2.3