X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=aac_afh.c;h=7f2a22a223ce733aa4b49d0a60ff63d1b95bf321;hp=3315a42d57a5ea9673be88b077daef1275ab49f6;hb=62c0894fbb589dd45e69b7d9ef1fd152a9960d62;hpb=e5de57de1b8bf1df96c152fc92f5a49f75d6d96c diff --git a/aac_afh.c b/aac_afh.c index 3315a42d..7f2a22a2 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -333,17 +333,17 @@ close: } static const char * const aac_suffixes[] = {"m4a", "mp4", NULL}; + /** - * the init function of the aac audio format handler + * The audio format handler for the Advanced Audio Codec. * - * \param afh pointer to the struct to initialize + * This is only compiled in if the faad library is installed. */ -void aac_afh_init(struct audio_format_handler *afh) -{ - afh->get_file_info = aac_get_file_info, - afh->suffixes = aac_suffixes; - afh->rewrite_tags = aac_afh_rewrite_tags; - afh->open = aac_afh_open; - afh->get_chunk = aac_afh_get_chunk; - afh->close = aac_afh_close; -} +const struct audio_format_handler aac_afh = { + .get_file_info = aac_get_file_info, + .suffixes = aac_suffixes, + .rewrite_tags = aac_afh_rewrite_tags, + .open = aac_afh_open, + .get_chunk = aac_afh_get_chunk, + .close = aac_afh_close, +};