diff x86/dnxhd_mmx.c @ 12456:a5ddb39627fd libavcodec

Rename FF_MM_ symbols related to CPU features flags as AV_CPU_FLAG_ symbols, and move them from libavcodec/avcodec.h to libavutil/cpu.h.
author stefano
date Sat, 04 Sep 2010 09:59:08 +0000
parents 3fc4c625b6f3
children 9fef0a8ddd63
line wrap: on
line diff
--- a/x86/dnxhd_mmx.c	Fri Sep 03 21:13:01 2010 +0000
+++ b/x86/dnxhd_mmx.c	Sat Sep 04 09:59:08 2010 +0000
@@ -52,7 +52,7 @@
 
 void ff_dnxhd_init_mmx(DNXHDEncContext *ctx)
 {
-    if (mm_support() & FF_MM_SSE2) {
+    if (mm_support() & AV_CPU_FLAG_SSE2) {
         ctx->get_pixels_8x4_sym = get_pixels_8x4_sym_sse2;
     }
 }