diff options
author | Rodeo <[email protected]> | 2012-08-26 14:35:54 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-08-26 14:35:54 +0000 |
commit | 80987fa9a86baaddf5627bc4138070fb39b162ac (patch) | |
tree | e681f2a7b3a20976aad32555cae9796b703c8aca /libhb | |
parent | 2a6ae070b419d320f1c4e1b404299c938f90c501 (diff) |
Use a more direct workaround for the DTS-ES XCh decoding issue.
The workaround committed in revision 4896 works for now, but if/when we add 6.1 encoding, we'll want to decode that discrete center surround channel. We could special-case it, but the issue would still be present under 64-bit Windows.
Instead, disable the buggy assembly optimizations until they are fixed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4918 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/decavcodec.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libhb/decavcodec.c b/libhb/decavcodec.c index 11a04a8b4..d0a64a2b0 100644 --- a/libhb/decavcodec.c +++ b/libhb/decavcodec.c @@ -221,18 +221,6 @@ static int decavcodecaInit( hb_work_object_t * w, hb_job_t * job ) hb_log( "decavcodecaInit: avcodec_open failed" ); return 1; } - /* Libav's ff_vector_fmac_scalar_*() asm functions are buggy under Win64 - * we can't let it decode the DTS-ES XCh extension until this is fixed - * - * Note: the DTS decoder doesn't support request_channels changing - * mid-stream, so we must do this here */ - if ((w->codec_param == CODEC_ID_DTS) && - (w->audio->config.in.channel_layout & ~AV_CH_LOW_FREQUENCY) == AV_CH_LAYOUT_6POINT0) - { - hb_deep_log(2, "decavcodecaInit: disabling DTS-ES XCh extension processing"); - pv->context->request_channels = - 5 + !!(w->audio->config.in.channel_layout & AV_CH_LOW_FREQUENCY); - } return 0; } |