diff options
-rw-r--r-- | src/audio_parser.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/audio_parser.h b/src/audio_parser.h index 251ce7cef..3101ab207 100644 --- a/src/audio_parser.h +++ b/src/audio_parser.h @@ -16,9 +16,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* - * Parser functions for audio related objects. +/** \file * + * Parser functions for audio related objects. */ #ifndef AUDIO_PARSER_H @@ -30,6 +30,16 @@ struct audio_format; +/** + * Parses a string in the form "SAMPLE_RATE:BITS:CHANNELS" into an + * #audio_format. + * + * @param dest the destination #audio_format struct + * @param src the input string + * @param error location to store the error occuring, or NULL to + * ignore errors + * @return true on success + */ bool audio_format_parse(struct audio_format *dest, const char *src, GError **error); |