diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-07-04 16:59:13 +0200 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2017-08-24 17:42:07 -0700 |
commit | dbc9a8f21f92d0613142ea23bb836356fc41de38 (patch) | |
tree | af69a5b18c5e104362be35a23c4b9acf2c1eb815 /libavcodec/aac.h | |
parent | f0f48884b02354173747c31d5016eaefe3db6a00 (diff) | |
download | ffmpeg-dbc9a8f21f92d0613142ea23bb836356fc41de38.tar.gz |
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.h | 3 |
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); |