summaryrefslogtreecommitdiff
path: root/libavcodec/aacps.h
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-01-27 01:22:55 +0000
committerMans Rullgard <mans@mansr.com>2012-05-05 22:04:21 +0100
commitbf1945af301aff54c33352e75f17aec6cb5269d7 (patch)
treea07fe77f557b90a75ebac8eb44027f97d5022a46 /libavcodec/aacps.h
parent2ed503af9fbd3ed16ce42a2712496e008184f545 (diff)
aacps: move some loops to function pointers
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/aacps.h')
-rw-r--r--libavcodec/aacps.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/aacps.h b/libavcodec/aacps.h
index 124fbee221..d5c355d5bd 100644
--- a/libavcodec/aacps.h
+++ b/libavcodec/aacps.h
@@ -24,6 +24,7 @@
#include <stdint.h>
+#include "aacpsdsp.h"
#include "avcodec.h"
#include "get_bits.h"
@@ -72,6 +73,7 @@ typedef struct {
float H22[2][PS_MAX_NUM_ENV+1][PS_MAX_NR_IIDICC];
int8_t opd_hist[PS_MAX_NR_IIDICC];
int8_t ipd_hist[PS_MAX_NR_IIDICC];
+ PSDSPContext dsp;
} PSContext;
void ff_ps_init(void);