Commit ec746a55 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

AAC detection is not strong enough to force the aac demuxer

parent ee02148b
...@@ -110,13 +110,11 @@ demux_t *demux_New( vlc_object_t *p_obj, input_thread_t *p_parent_input, ...@@ -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, '.' )) ) && (psz_ext = strrchr( p_demux->psz_file, '.' )) )
{ {
/* XXX: add only file without any problem here and with strong detection. /* 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 * - no .mp3, .a52, ...
* anyway
* - wav can't be added 'cause of a52 and dts in them as raw audio * - 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[] = static const struct { char ext[5]; char demux[9]; } exttodemux[] =
{ {
{ "aac", "aac" },
{ "aiff", "aiff" }, { "aiff", "aiff" },
{ "asf", "asf" }, { "wmv", "asf" }, { "wma", "asf" }, { "asf", "asf" }, { "wmv", "asf" }, { "wma", "asf" },
{ "avi", "avi" }, { "avi", "avi" },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment