diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-01-21 01:33:31 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-01-21 01:33:31 +0100 |
commit | 8f0768cc22788357f603695b86f5e9013652bba6 (patch) | |
tree | aece6cab293d489b857d02d206d90e56ace4eade /libavcodec/arm | |
parent | 01084336b7b969e29f163699a8414a84d00295da (diff) | |
parent | 23e57d167a87d3a671fe25efb2d5a1cf1719efc6 (diff) | |
download | ffmpeg-8f0768cc22788357f603695b86f5e9013652bba6.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
Add a tool that uses avio to read and write, doing a plain copy of data
ARM: fix build with FFT enabled and MDCT disabled
lavf: force single-threaded decoding in avformat_find_stream_info
avidec: migrate last of lavf from FF_ER_* to AV_EF_*
avserver: fix build after the next bump.
Conflicts:
libavformat/Makefile
libavformat/avidec.c
libavformat/utils.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/arm')
-rw-r--r-- | libavcodec/arm/fft_init_arm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/arm/fft_init_arm.c b/libavcodec/arm/fft_init_arm.c index 3e0e41ec3b..cdb64e7404 100644 --- a/libavcodec/arm/fft_init_arm.c +++ b/libavcodec/arm/fft_init_arm.c @@ -42,10 +42,12 @@ av_cold void ff_fft_init_arm(FFTContext *s) if (HAVE_NEON) { s->fft_permute = ff_fft_permute_neon; s->fft_calc = ff_fft_calc_neon; +#if CONFIG_MDCT s->imdct_calc = ff_imdct_calc_neon; s->imdct_half = ff_imdct_half_neon; s->mdct_calc = ff_mdct_calc_neon; s->mdct_permutation = FF_MDCT_PERM_INTERLEAVE; +#endif } } |