ffmpeg | branch: master | James Almer <[email protected]> | Thu Jun 1 13:12:20 2017 -0300| [93dc1c1221856e88ac9df560a1b4f77dd5f5395d] | committer: James Almer
checkasm: add _fixed suffix to fixed_dsp tests Should prevents future conflicts with the similarly named floatdsp tests > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=93dc1c1221856e88ac9df560a1b4f77dd5f5395d --- tests/checkasm/fixed_dsp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/checkasm/fixed_dsp.c b/tests/checkasm/fixed_dsp.c index 546858a600..fa11f2e23f 100644 --- a/tests/checkasm/fixed_dsp.c +++ b/tests/checkasm/fixed_dsp.c @@ -137,15 +137,15 @@ void checkasm_check_fixed_dsp(void) AVFixedDSPContext *fdsp = avpriv_alloc_fixed_dsp(1); randomize_buffers(); - if (check_func(fdsp->vector_fmul, "vector_fmul")) + if (check_func(fdsp->vector_fmul, "vector_fmul_fixed")) check_vector_fmul(src0, src1); - if (check_func(fdsp->vector_fmul_add, "vector_fmul_add")) + if (check_func(fdsp->vector_fmul_add, "vector_fmul_add_fixed")) check_vector_fmul_add(src0, src1, src2); - if (check_func(fdsp->vector_fmul_reverse, "vector_fmul_reverse")) + if (check_func(fdsp->vector_fmul_reverse, "vector_fmul_reverse_fixed")) check_vector_fmul(src0, src1); - if (check_func(fdsp->vector_fmul_window, "vector_fmul_window")) + if (check_func(fdsp->vector_fmul_window, "vector_fmul_window_fixed")) check_vector_fmul_window(src0, src1, src2); - if (check_func(fdsp->vector_fmul_window_scaled, "vector_fmul_window_scaled")) + if (check_func(fdsp->vector_fmul_window_scaled, "vector_fmul_window_scaled_fixed")) check_vector_fmul_window_scaled(src0, src1, src2); report("vector_fmul"); if (check_func(fdsp->butterflies_fixed, "butterflies_fixed")) _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
