From e8787ac4a4430bb30bfba0b5154111370e89133b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 10 Feb 2009 17:21:19 +0100 Subject: audio: added output enumeration functions Added audio_output_get(), audio_output_find(). --- src/audio.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/audio.h') diff --git a/src/audio.h b/src/audio.h index c42d27d5e..2bffa7d41 100644 --- a/src/audio.h +++ b/src/audio.h @@ -35,6 +35,19 @@ struct config_param; */ unsigned int audio_output_count(void); +/** + * Returns the "i"th audio output device. + */ +struct audio_output * +audio_output_get(unsigned i); + +/** + * Returns the audio output device with the specified name. Returns + * NULL if the name does not exist. + */ +struct audio_output * +audio_output_find(const char *name); + void getOutputAudioFormat(const struct audio_format *inFormat, struct audio_format *outFormat); -- cgit v1.2.3