diff options
author | jstebbins <[email protected]> | 2010-04-19 14:40:50 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-04-19 14:40:50 +0000 |
commit | 78aaa0da6e4f331d0c9d97a67a15f5eb1aafb5fe (patch) | |
tree | afcf13bcad5bc6f9cc8d9a8b05c32754a06c6661 /libhb | |
parent | 179ce99f7b95f3b58cedba88723c13d88874f210 (diff) |
fix an error in the tmp array size of hb_layout_remap
was 6, should be 8
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3244 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/downmix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/downmix.c b/libhb/downmix.c index 2b57324c1..b713f9bce 100644 --- a/libhb/downmix.c +++ b/libhb/downmix.c @@ -1152,7 +1152,7 @@ void hb_layout_remap( int * map; int * inv_map; int mode; - hb_sample_t tmp[6]; + hb_sample_t tmp[8]; mode = hb_layout_to_mode(layout); lfe = ((mode & DOWNMIX_LFE_FLAG) != 0); |