diff options
author | jstebbins <[email protected]> | 2011-06-08 18:28:55 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-06-08 18:28:55 +0000 |
commit | 2a262093e255a22c3c38c9c676b37c44a1abb085 (patch) | |
tree | 2ca8b4d096c0ca3412d46f9d3c2f3286ae4eefb5 /libhb/encavcodecaudio.c | |
parent | 1e92c150aac42a8cd6e8c12b10494d9a1f42796e (diff) |
Add ffaac encode support
Adds "AAC (ffmpeg)" option to lingui and macui, "ffaac" option to cli.
Does not yet remove faac.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4031 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/encavcodecaudio.c')
-rw-r--r-- | libhb/encavcodecaudio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/encavcodecaudio.c b/libhb/encavcodecaudio.c index 3258ca042..86ab66300 100644 --- a/libhb/encavcodecaudio.c +++ b/libhb/encavcodecaudio.c @@ -174,7 +174,8 @@ static hb_buffer_t * Encode( hb_work_object_t * w ) { map = &hb_ac3_chan_map; } - else if ( audio->config.in.codec == HB_ACODEC_DCA ) + else if ( audio->config.in.codec == HB_ACODEC_DCA || + audio->config.in.codec == HB_ACODEC_LPCM ) { map = &hb_qt_chan_map; } |