aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-28 19:34:55 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-02-20 01:23:54 +0100
commit17966ae5bb439c2b3d5c62878d6679c8fc4fba76 (patch)
tree2cb92117345b281f2f885f62971c85daa0d48685
parent5af2fd317d841f50390ada3b6e8d6618bcd82cb0 (diff)
downloadffmpeg-17966ae5bb439c2b3d5c62878d6679c8fc4fba76.tar.gz
qdm2: increase noise_table size
This prevents out of array reads. An alternative solution would be to check the index but this would require several checks in the inner loops Yet another alternative would be to change the index reset logic but this likely would introduce a difference to the binary decoder Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 8c4aebb58d00fd613f3f684bf0f869966149ae78) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/qdm2_tablegen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/qdm2_tablegen.h b/libavcodec/qdm2_tablegen.h
index f215b15ffc..38adb97dc5 100644
--- a/libavcodec/qdm2_tablegen.h
+++ b/libavcodec/qdm2_tablegen.h
@@ -37,7 +37,7 @@
#include "libavcodec/qdm2_tables.h"
#else
static uint16_t softclip_table[HARDCLIP_THRESHOLD - SOFTCLIP_THRESHOLD + 1];
-static float noise_table[4096];
+static float noise_table[4096 + 20];
static uint8_t random_dequant_index[256][5];
static uint8_t random_dequant_type24[128][3];
static float noise_samples[128];