summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-08-07 14:35:32 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-08-07 22:46:27 +0200
commit7d3aa2ca63c2bb540d18fc16e24586f377dc2044 (patch)
tree25c84be5fd5ba75c00e2db7a0d0339ce18490fa1
parent005d0069389a0ebb1cfd0934cb6d8a5a260acc91 (diff)
avutil/float_dsp: Remove use of deprecated av_set_cpu_flags_mask()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavutil/float_dsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/float_dsp.c b/libavutil/float_dsp.c
index 467d7a74c1..337708e847 100644
--- a/libavutil/float_dsp.c
+++ b/libavutil/float_dsp.c
@@ -431,7 +431,7 @@ int main(int argc, char **argv)
fill_double_array(&lfg, dbl_src1, LEN);
avpriv_float_dsp_init(&fdsp, 1);
- av_set_cpu_flags_mask(0);
+ av_force_cpu_flags(0);
avpriv_float_dsp_init(&cdsp, 1);
if (test_vector_fmul(&fdsp, &cdsp, src0, src1))