Skip to content
Snippets Groups Projects
Commit 82674c40 authored by Ilkka Ollakka's avatar Ilkka Ollakka
Browse files

Enable ffmpeg aac decoder, seems to work currently.

parent 00e50baf
No related branches found
No related tags found
No related merge requests found
......@@ -222,14 +222,6 @@ static int OpenDecoder( vlc_object_t *p_this )
return VLC_EGENERIC;
}
/* Bail out if buggy decoder */
if( i_codec_id == CODEC_ID_AAC )
{
msg_Dbg( p_dec, "refusing to use ffmpeg's (%s) decoder which is buggy",
psz_namecodec );
return VLC_EGENERIC;
}
/* Initialization must be done before avcodec_find_decoder() */
InitLibavcodec(p_this);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment