comparison 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
comparison
equal deleted inserted replaced
12455:14f85520cd02 12456:a5ddb39627fd
50 ); 50 );
51 } 51 }
52 52
53 void ff_dnxhd_init_mmx(DNXHDEncContext *ctx) 53 void ff_dnxhd_init_mmx(DNXHDEncContext *ctx)
54 { 54 {
55 if (mm_support() & FF_MM_SSE2) { 55 if (mm_support() & AV_CPU_FLAG_SSE2) {
56 ctx->get_pixels_8x4_sym = get_pixels_8x4_sym_sse2; 56 ctx->get_pixels_8x4_sym = get_pixels_8x4_sym_sse2;
57 } 57 }
58 } 58 }