X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=flac_afh.c;h=6e23683937f6932aaa739095ef8281fc9075da55;hp=e2d5380240240ddfaf3ce2b989ab0847f2e6e4fb;hb=0c7c4d80673854527ce3c3786dd581169565b5e6;hpb=869fa1d76e7f88470120552792ca71068b49a747 diff --git a/flac_afh.c b/flac_afh.c index e2d53802..6e236839 100644 --- a/flac_afh.c +++ b/flac_afh.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2011 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2011 Andre Noll , see file COPYING. */ /** \file flac_afh.c Audio format handler for flac files. */ @@ -519,13 +515,12 @@ free_pfad: static const char * const flac_suffixes[] = {"flac", NULL}; /** - * The init function of the flac audio format handler. + * The audio format handler for flac (free lossless audio decoder). * - * \param afh pointer to the struct to initialize + * It depends on libflac and on libogg. */ -void flac_afh_init(struct audio_format_handler *afh) -{ - afh->get_file_info = flac_get_file_info, - afh->suffixes = flac_suffixes; - afh->rewrite_tags = flac_rewrite_tags; -} +const struct audio_format_handler flac_afh = { + .get_file_info = flac_get_file_info, + .suffixes = flac_suffixes, + .rewrite_tags = flac_rewrite_tags, +};