diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-09-04 16:42:28 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-09-04 20:42:57 +0200 |
commit | c703088c1b198647794d54cfa3bd73842cb44fb9 (patch) | |
tree | 879e8525fcb510c86659f7cd4b5c2012b7c4f531 /libavcodec | |
parent | 2777bae7f2fbb96843bc2d12c9190a12ffdfef55 (diff) | |
download | ffmpeg-c703088c1b198647794d54cfa3bd73842cb44fb9.tar.gz |
avcodec/binkaudio: Remove unused array from context
Unused since 7bfd1766d1c18f07b0a2dd042418a874d49ea60d.
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/binkaudio.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/binkaudio.c b/libavcodec/binkaudio.c index f17164da91..f7e9a37a1b 100644 --- a/libavcodec/binkaudio.c +++ b/libavcodec/binkaudio.c @@ -54,7 +54,6 @@ typedef struct BinkAudioContext { int num_bands; unsigned int *bands; float root; - DECLARE_ALIGNED(32, FFTSample, coeffs)[BINK_BLOCK_MAX_SIZE]; float previous[MAX_CHANNELS][BINK_BLOCK_MAX_SIZE / 16]; ///< coeffs from previous audio block float quant_table[96]; AVPacket *pkt; |