]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - aac_afh.c
kill global variable af from all audio format handlers
[paraslash.git] / aac_afh.c
index ab97cdad0da50177b0820651dfd69f7237a7cd27..1ab865971fa663f4e669bbd375ea732b00c6e259 100644 (file)
--- a/aac_afh.c
+++ b/aac_afh.c
@@ -191,9 +191,9 @@ out:
 
 static const char* aac_suffixes[] = {"m4a", "mp4", NULL};
 /** the init function of the aac audio format handler */
 
 static const char* aac_suffixes[] = {"m4a", "mp4", NULL};
 /** the init function of the aac audio format handler */
-void aac_afh_init(struct audio_format_handler *p)
+void aac_afh_init(struct audio_format_handler *afh)
 {
 {
-       p->get_file_info = aac_get_file_info,
-       p->close_audio_file = aac_close_audio_file;
-       p->suffixes = aac_suffixes;
+       afh->get_file_info = aac_get_file_info,
+       afh->close_audio_file = aac_close_audio_file;
+       afh->suffixes = aac_suffixes;
 }
 }