diff options
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; } |