From: Andre Noll Date: Sun, 11 Mar 2007 17:59:07 +0000 (+0100) Subject: fix doxygen comment of the init functions of all audio format handlers. X-Git-Tag: v0.2.16~31 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=fcbaa47c0cb6e3e45bf1c465180752289bbe8b6b fix doxygen comment of the init functions of all audio format handlers. --- diff --git a/aac_afh.c b/aac_afh.c index 3129824d..20f14273 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -179,7 +179,11 @@ out: } static const char* aac_suffixes[] = {"m4a", "mp4", NULL}; -/** the init function of the aac audio format handler */ +/** + * the init function of the aac audio format handler + * + * \param afh pointer to the struct to initialize + */ void aac_afh_init(struct audio_format_handler *afh) { afh->get_file_info = aac_get_file_info, diff --git a/mp3_afh.c b/mp3_afh.c index a5f8d740..36300759 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -451,7 +451,7 @@ static const char* mp3_suffixes[] = {"mp3", NULL}; /** * the init function of the mp3 audio format handler * - * \param p pointer to the struct to initialize + * \param afh pointer to the struct to initialize */ void mp3_init(struct audio_format_handler *afh) { diff --git a/ogg_afh.c b/ogg_afh.c index 3c7a1431..28ab42a2 100644 --- a/ogg_afh.c +++ b/ogg_afh.c @@ -275,7 +275,7 @@ static const char* ogg_suffixes[] = {"ogg", NULL}; /** * the init function of the ogg vorbis audio format handler * - * \param p pointer to the struct to initialize + * \param afh pointer to the struct to initialize */ void ogg_init(struct audio_format_handler *afh) {