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/audio_remap.h | |
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/audio_remap.h')
-rw-r--r-- | libhb/audio_remap.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libhb/audio_remap.h b/libhb/audio_remap.h index 3092fb854..6f44ad6b9 100644 --- a/libhb/audio_remap.h +++ b/libhb/audio_remap.h @@ -73,8 +73,7 @@ hb_audio_remap_t* hb_audio_remap_init(enum AVSampleFormat sample_fmt, * Must be called at least once before remapping. */ void hb_audio_remap_set_channel_layout(hb_audio_remap_t *remap, - uint64_t channel_layout, - int channels); + uint64_t channel_layout); /* * Free an hb_audio_remap_t. |