summaryrefslogtreecommitdiff
path: root/libavcodec/aac.h
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2017-07-04 16:59:13 +0200
committerAlex Converse <alex.converse@gmail.com>2017-08-24 17:42:07 -0700
commitdbc9a8f21f92d0613142ea23bb836356fc41de38 (patch)
treeaf69a5b18c5e104362be35a23c4b9acf2c1eb815 /libavcodec/aac.h
parentf0f48884b02354173747c31d5016eaefe3db6a00 (diff)
avcodec/aac: Add floating point 960/120 MDCT window
Co-Authored-By: Alex Converse <alex.converse@gmail.com> Co-Authored-By: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r--libavcodec/aac.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h
index 97a2df6b86..4910c661d6 100644
--- a/libavcodec/aac.h
+++ b/libavcodec/aac.h
@@ -327,7 +327,9 @@ struct AACContext {
#if USE_FIXED
AVFixedDSPContext *fdsp;
#else
+ MDCT15Context *mdct120;
MDCT15Context *mdct480;
+ MDCT15Context *mdct960;
AVFloatDSPContext *fdsp;
#endif /* USE_FIXED */
int random_state;
@@ -353,6 +355,7 @@ struct AACContext {
OutputConfiguration oc[2];
int warned_num_aac_frames;
+ int warned_960_sbr;
/* aacdec functions pointers */
void (*imdct_and_windowing)(AACContext *ac, SingleChannelElement *sce);