diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-23 00:29:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-23 00:29:06 +0200 |
commit | 9515d7c629cdd71c68bced05ea235aad08b768ce (patch) | |
tree | c4e55aa824ab522a74ff7036bace4b7648e70fa1 /libavcodec/fft-test.c | |
parent | 9eeedf87699837cd18df567a8d9d148009737b04 (diff) | |
parent | 5be7d8597d02bcaba2de2503c0e59cf865c746dc (diff) | |
download | ffmpeg-9515d7c629cdd71c68bced05ea235aad08b768ce.tar.gz |
Merge commit '5be7d8597d02bcaba2de2503c0e59cf865c746dc'
* commit '5be7d8597d02bcaba2de2503c0e59cf865c746dc':
fft-test: Comment some #endifs
Conflicts:
libavcodec/fft-test.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/fft-test.c')
-rw-r--r-- | libavcodec/fft-test.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/fft-test.c b/libavcodec/fft-test.c index f92fc2994d..bb28ffc943 100644 --- a/libavcodec/fft-test.c +++ b/libavcodec/fft-test.c @@ -187,7 +187,7 @@ static void dct_ref(FFTSample *output, FFTSample *input, int nbits) } } #endif /* CONFIG_DCT */ -#endif +#endif /* FFT_FLOAT */ static FFTSample frandom(AVLFG *prng) @@ -258,7 +258,7 @@ int main(int argc, char **argv) RDFTContext r1, *r = &r1; DCTContext d1, *d = &d1; int fft_size_2; -#endif +#endif /* FFT_FLOAT */ int fft_nbits, fft_size; double scale = 1.0; AVLFG prng; @@ -350,7 +350,7 @@ int main(int argc, char **argv) ff_dct_init(d, fft_nbits, do_inverse ? DCT_III : DCT_II); break; # endif /* CONFIG_DCT */ -#endif +#endif /* FFT_FLOAT */ default: av_log(NULL, AV_LOG_ERROR, "Requested transform not supported\n"); return 1; @@ -437,7 +437,7 @@ int main(int argc, char **argv) err = check_diff((float *)tab_ref, (float *)tab, fft_size, 1.0); break; #endif /* CONFIG_DCT */ -#endif +#endif /* FFT_FLOAT */ } /* do a speed test */ @@ -473,7 +473,7 @@ int main(int argc, char **argv) memcpy(tab2, tab1, fft_size * sizeof(FFTSample)); d->dct_calc(d, tab2); break; -#endif +#endif /* FFT_FLOAT */ } } duration = av_gettime_relative() - time_start; @@ -507,7 +507,7 @@ int main(int argc, char **argv) ff_dct_end(d); break; # endif /* CONFIG_DCT */ -#endif +#endif /* FFT_FLOAT */ } av_free(tab); |