[vlc-commits] AAC detection is not strong enough to force the aac demuxer

Jean-Baptiste Kempf git at videolan.org
Wed Oct 17 15:40:53 CEST 2012


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Oct 17 15:40:21 2012 +0200| [ec746a55e99e0b03e7083cd1771a3b5135d46e97] | committer: Jean-Baptiste Kempf

AAC detection is not strong enough to force the aac demuxer

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ec746a55e99e0b03e7083cd1771a3b5135d46e97
---

 src/input/demux.c |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/input/demux.c b/src/input/demux.c
index e44df63..ea4e4c3 100644
--- a/src/input/demux.c
+++ b/src/input/demux.c
@@ -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" },



More information about the vlc-commits mailing list