diff options
author | Rodeo <[email protected]> | 2014-01-25 23:19:41 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2014-01-25 23:19:41 +0000 |
commit | ebf885ce8a75dd392e2acab9a8a0e29032e05f71 (patch) | |
tree | 14d6ac12639e501c963158497a485a16522519bd /libhb/platform | |
parent | 90795a32478ff917df5a8b6a8bb817998d41ed58 (diff) |
decavcodec: prefer AVFrame fields over their AVCodecContext equivalent.
These fields correspond to the actual audio data in the AVFrame, and should always be set (otherwise, we must submit a bug report to libav).
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5994 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/platform')
-rw-r--r-- | libhb/platform/macosx/encca_aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/platform/macosx/encca_aac.c b/libhb/platform/macosx/encca_aac.c index 19e182a22..882b97a5a 100644 --- a/libhb/platform/macosx/encca_aac.c +++ b/libhb/platform/macosx/encca_aac.c @@ -297,7 +297,7 @@ int encCoreAudioInit(hb_work_object_t *w, hb_job_t *job, enum AAC_MODE mode) hb_error("encCoreAudioInit: hb_audio_remap_init() failed"); } uint64_t layout = hb_ff_mixdown_xlat(audio->config.out.mixdown, NULL); - hb_audio_remap_set_channel_layout(pv->remap, layout, pv->nchannels); + hb_audio_remap_set_channel_layout(pv->remap, layout); // get maximum output size AudioConverterGetProperty(pv->converter, |