diff options
author | jstebbins <[email protected]> | 2011-06-12 18:05:20 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-06-12 18:05:20 +0000 |
commit | 991912416a55dfcf100591f31e6e72f3f2f5275d (patch) | |
tree | 0ed644ee9ba9d05e20e30de2a0805aa27802405c /libhb/decdca.c | |
parent | e36c5d5cc69a207b088a0c92c8c6cb7a3f50ba21 (diff) |
libhb: generalize channel remapping between decoders and encoders
Decoders set the channel map of their output in hb_audio_config_t.
Encoders use this information to remap while encoding.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4052 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/decdca.c')
-rw-r--r-- | libhb/decdca.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/decdca.c b/libhb/decdca.c index 62f460915..ed86be4b7 100644 --- a/libhb/decdca.c +++ b/libhb/decdca.c @@ -5,6 +5,8 @@ It may be used under the terms of the GNU General Public License. */ #include "hb.h" +#include "downmix.h" + #include "dca.h" struct hb_work_private_s @@ -358,5 +360,7 @@ static int decdcaBSInfo( hb_work_object_t *w, const hb_buffer_t *b, info->channel_layout |= HB_INPUT_CH_LAYOUT_HAS_LFE; } + info->channel_map = &hb_qt_chan_map; + return 1; } |