From 86d4cf0dbdec08e2f3e793d0ae761bad8d2e5300 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 10 Feb 2009 18:51:59 +0100 Subject: output_all: added API documentation --- src/output_all.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'src') diff --git a/src/output_all.h b/src/output_all.h index 0b782f11b..6f55809f3 100644 --- a/src/output_all.h +++ b/src/output_all.h @@ -31,9 +31,16 @@ struct audio_format; struct tag; +/** + * Global initialization: load audio outputs from the configuration + * file and initialize them. + */ void audio_output_all_init(void); +/** + * Global finalization: free memory occupied by audio outputs. All + */ void audio_output_all_finish(void); @@ -56,21 +63,47 @@ audio_output_get(unsigned i); struct audio_output * audio_output_find(const char *name); +/** + * Opens all audio outputs which are not disabled. + * + * @param audio_format the preferred audio format, or NULL to reuse + * the previous format + * @return true on success, false on failure + */ bool audio_output_all_open(const struct audio_format *audio_format); +/** + * Closes all audio outputs. + */ void audio_output_all_close(void); +/** + * Play a chunk of audio data. + * + * @return true on success, false if no audio output was able to play + * (all closed then) + */ bool audio_output_all_play(const char *data, size_t size); +/** + * Send metadata for the next chunk. + */ void audio_output_all_tag(const struct tag *tag); +/** + * Puts all audio outputs into pause mode. Most implementations will + * simply close it then. + */ void audio_output_all_pause(void); +/** + * Try to cancel data which may still be in the device's buffers. + */ void audio_output_all_cancel(void); -- cgit v1.2.3