comparison x86/dnxhd_mmx.c @ 12414:3fc4c625b6f3 libavcodec

Remove global mm_flags variable
author mru
date Tue, 24 Aug 2010 17:47:05 +0000
parents 7768bdfd4f7b
children a5ddb39627fd
comparison
equal deleted inserted replaced
12413:e6e4059ea421 12414:3fc4c625b6f3
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_flags & FF_MM_SSE2) { 55 if (mm_support() & FF_MM_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 }