From fcbaa47c0cb6e3e45bf1c465180752289bbe8b6b Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 11 Mar 2007 18:59:07 +0100 Subject: [PATCH 1/1] fix doxygen comment of the init functions of all audio format handlers. --- aac_afh.c | 6 +++++- mp3_afh.c | 2 +- ogg_afh.c | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) 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) { -- 2.39.2