From: Andre Date: Sun, 25 Jun 2006 14:06:27 +0000 (+0200) Subject: aac: add "mp4" to suffixes for guess_audio_format() X-Git-Tag: v0.2.14~59^2~22 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=5103fd8fb0405b1d52f180f7f1075a17ff292af9 aac: add "mp4" to suffixes for guess_audio_format() --- diff --git a/NEWS b/NEWS index 9c8d2cce..0a7189c0 100644 --- a/NEWS +++ b/NEWS @@ -8,8 +8,8 @@ NEWS A bunch of new features and core changes. - the new paraslash scheduler, short and sweet. - - Support for m4a files via the new aac filter/ and audio - format handler (requires libfaad). + - Support for m4a/mp4 files via the new aac audio format + handler/filter (requires libfaad). - each writer has its own command line parser, just like para_recv and para_filter. - new writer: osxplay (thanks to Gerd Becker) diff --git a/aac_afh.c b/aac_afh.c index d60588b4..a3a24bc0 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -230,7 +230,7 @@ static char *aac_read_chunk(long unsigned current_chunk, ssize_t *len) return (char *)inbuf; } -static const char* aac_suffixes[] = {"m4a", NULL}; +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) {