X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=aac_afh.c;h=1ab865971fa663f4e669bbd375ea732b00c6e259;hp=ab97cdad0da50177b0820651dfd69f7237a7cd27;hb=3a624c04894f5b0fa4a1c0850307b33bf92c8e51;hpb=f7b6451de1f334d8ab13a1f9428a1b24a437ba1d diff --git a/aac_afh.c b/aac_afh.c index ab97cdad..1ab86597 100644 --- 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 */ -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; }