diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-01-01 22:28:28 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-01-01 23:04:31 +0100 |
commit | 68cdeb06deea8af38b41bbb52ac494199c07127a (patch) | |
tree | 4ef9d70a8f90dc40c3196196e91d549b3e6b674b /libavcodec/tests | |
parent | 375a22a472fd895632e2d4bc5a876100af0099aa (diff) | |
download | ffmpeg-68cdeb06deea8af38b41bbb52ac494199c07127a.tar.gz |
avcodec/tests/fft: Fix indention of dct_init()
Fixes CID1396253
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/tests')
-rw-r--r-- | libavcodec/tests/fft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tests/fft.c b/libavcodec/tests/fft.c index 4536091c77..83f2ff2a08 100644 --- a/libavcodec/tests/fft.c +++ b/libavcodec/tests/fft.c @@ -490,7 +490,7 @@ int main(int argc, char **argv) av_log(NULL, AV_LOG_INFO, "DCT_III"); else av_log(NULL, AV_LOG_INFO, "DCT_II"); - dct_init(&d, fft_nbits, do_inverse ? DCT_III : DCT_II); + dct_init(&d, fft_nbits, do_inverse ? DCT_III : DCT_II); break; # endif /* CONFIG_DCT */ #endif /* FFT_FLOAT */ |