diff options
Diffstat (limited to 'lib/ffmpeg/libavcodec/motion-test.c')
-rw-r--r-- | lib/ffmpeg/libavcodec/motion-test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ffmpeg/libavcodec/motion-test.c b/lib/ffmpeg/libavcodec/motion-test.c index 37f55a6f42..994b262bc0 100644 --- a/lib/ffmpeg/libavcodec/motion-test.c +++ b/lib/ffmpeg/libavcodec/motion-test.c @@ -128,7 +128,7 @@ int main(int argc, char **argv) AVCodecContext *ctx; int c; DSPContext cctx, mmxctx; - int flags[2] = { FF_MM_MMX, FF_MM_MMX2 }; + int flags[2] = { AV_CPU_FLAG_MMX, AV_CPU_FLAG_MMX2 }; int flags_size = HAVE_MMX2 ? 2 : 1; for(;;) { @@ -145,11 +145,11 @@ int main(int argc, char **argv) printf("ffmpeg motion test\n"); ctx = avcodec_alloc_context(); - ctx->dsp_mask = FF_MM_FORCE; + ctx->dsp_mask = AV_CPU_FLAG_FORCE; dsputil_init(&cctx, ctx); for (c = 0; c < flags_size; c++) { int x; - ctx->dsp_mask = FF_MM_FORCE | flags[c]; + ctx->dsp_mask = AV_CPU_FLAG_FORCE | flags[c]; dsputil_init(&mmxctx, ctx); for (x = 0; x < 2; x++) { |