From 82674c404707d81843ca67d512f3eb073732a984 Mon Sep 17 00:00:00 2001 From: Ilkka Ollakka Date: Tue, 11 Nov 2008 13:06:41 +0200 Subject: [PATCH] Enable ffmpeg aac decoder, seems to work currently. --- modules/codec/avcodec/avcodec.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/modules/codec/avcodec/avcodec.c b/modules/codec/avcodec/avcodec.c index 151082e591..3f7a2e5441 100644 --- a/modules/codec/avcodec/avcodec.c +++ b/modules/codec/avcodec/avcodec.c @@ -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); -- 2.20.1