]> git.sesse.net Git - vlc/commitdiff
AAC detection is not strong enough to force the aac demuxer
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 17 Oct 2012 13:40:21 +0000 (15:40 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 17 Oct 2012 13:40:59 +0000 (15:40 +0200)
src/input/demux.c

index e44df631378ee1f0fb5bf2c0029db53ce73453bb..ea4e4c3d4f36bd2a9763182ce67f235917ba3780 100644 (file)
@@ -110,13 +110,11 @@ demux_t *demux_New( vlc_object_t *p_obj, input_thread_t *p_parent_input,
      && (psz_ext = strrchr( p_demux->psz_file, '.' )) )
     {
        /* XXX: add only file without any problem here and with strong detection.
-        *  - no .mp3, .a52, ... (aac is added as it works only by file ext
-        *     anyway
+        *  - no .mp3, .a52, ...
         *  - wav can't be added 'cause of a52 and dts in them as raw audio
          */
          static const struct { char ext[5]; char demux[9]; } exttodemux[] =
          {
-            { "aac",  "aac" },
             { "aiff", "aiff" },
             { "asf",  "asf" }, { "wmv",  "asf" }, { "wma",  "asf" },
             { "avi",  "avi" },