summaryrefslogtreecommitdiff
path: root/libavcodec/sbr.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-11-19 12:03:22 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2015-11-19 13:12:20 +0100
commitbfd0e02dd64e912a6b67c25d9f86b3b0b849ad10 (patch)
tree842fbb097a5fd1bdb1833fd52e7ea148220f6c1f /libavcodec/sbr.h
parent50ce510ac4e3ed093c051738242a9a75aeeb36ce (diff)
avcodec/aacsbr: Split pre dequantization noise factors table
This allows removing a special case for the fixed point decoder and will make error checks simpler Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/sbr.h')
-rw-r--r--libavcodec/sbr.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/sbr.h b/libavcodec/sbr.h
index 66a88a2898..f22c47501b 100644
--- a/libavcodec/sbr.h
+++ b/libavcodec/sbr.h
@@ -96,8 +96,10 @@ typedef struct SBRData {
AAC_FLOAT q_temp[42][48];
uint8_t s_indexmapped[8][48];
///Envelope scalefactors
+ uint8_t env_facs_q[6][48];
AAC_FLOAT env_facs[6][48];
///Noise scalefactors
+ uint8_t noise_facs_q[6][48];
AAC_FLOAT noise_facs[3][5];
///Envelope time borders
uint8_t t_env[8];