]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
fix doxygen comment of the init functions of all audio format handlers.
authorAndre Noll <maan@systemlinux.org>
Sun, 11 Mar 2007 17:59:07 +0000 (18:59 +0100)
committerAndre Noll <maan@systemlinux.org>
Sun, 11 Mar 2007 17:59:07 +0000 (18:59 +0100)
aac_afh.c
mp3_afh.c
ogg_afh.c

index 3129824dbe0f721ebbe2566f06dcfca3c0f9b934..20f142733a1bbb1a46c27c96706614d1efe9c775 100644 (file)
--- 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,
index a5f8d740a86c3d125e3986d3853e3c198ac7510b..3630075941a2fccd355037b3b28af8486f80be41 100644 (file)
--- 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)
 {
index 3c7a143121897d045658195713bcb47170c6324f..28ab42a2b0c54ef311a33d72d8e9e5439a1f44ed 100644 (file)
--- 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)
 {