diff options
author | jstebbins <[email protected]> | 2011-02-11 21:36:50 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-02-11 21:36:50 +0000 |
commit | 2289c0d8fae2a1c6d68a10e378d6dc0d510113ae (patch) | |
tree | 10fb7e4564beb6122cfa605685607b347634f1da | |
parent | 6075c7f4033bc5e819b5ffdc2782df94f073e48c (diff) |
Remove unnecessary translation of string "LIBFAAD" to "AAC".
ffmpeg will never give us this name anymore since it no longer
wraps faad.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3795 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/stream.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index bd2cee38e..183f86930 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -1557,10 +1557,6 @@ static void set_audio_description( hb_audio_t *audio, iso639_lang_t *lang ) { AVCodec *codec = avcodec_find_decoder( cc->codec_id ); codec_name = codec->name; - if ( !strcmp( codec_name, "LIBFAAD" ) ) - { - codec_name = "AAC"; - } if ( !strcmp( codec_name, "DCA" ) ) { codec_name = "DTS"; |