]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
aac: add "mp4" to suffixes for guess_audio_format()
authorAndre <maan@p133.(none)>
Sun, 25 Jun 2006 14:06:27 +0000 (16:06 +0200)
committerAndre <maan@p133.(none)>
Sun, 25 Jun 2006 14:06:27 +0000 (16:06 +0200)
NEWS
aac_afh.c

diff --git a/NEWS b/NEWS
index 9c8d2cce702e4ff5e91e3ea41d7306d7690360be..0a7189c0399b4f18cea2553cc0dd01e0eb8c7b2f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -8,8 +8,8 @@ NEWS
 A bunch of new features and core changes.
 
        - the new paraslash scheduler, short and sweet.
 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)
        - each writer has its own command line parser, just like
          para_recv and para_filter.
        - new writer: osxplay (thanks to Gerd Becker)
index d60588b419ac7b504bd03f490dd64be513ad35ff..a3a24bc0b2f4225050ca90b72a059788f3824249 100644 (file)
--- 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;
 }
 
        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)
 {
 /** the init function of the aac audio format handler */
 void aac_afh_init(struct audio_format_handler *p)
 {