comparison motion_est.c @ 6:ec4642daa6fe libavcodec

added emms_c() macro which should can used in c code in both mmx/non mmx cases
author glantau
date Tue, 24 Jul 2001 20:42:03 +0000
parents 2e2c46c87460
children 9df2d13e64b2
comparison
equal deleted inserted replaced
5:4479bcab253e 6:ec4642daa6fe
432 break; 432 break;
433 case ME_PHODS: 433 case ME_PHODS:
434 dmin = phods_motion_search(s, &mx, &my, range / 2, xmin, ymin, xmax, ymax); 434 dmin = phods_motion_search(s, &mx, &my, range / 2, xmin, ymin, xmax, ymax);
435 break; 435 break;
436 } 436 }
437 #ifdef HAVE_MMX 437 emms_c();
438 if (mm_flags & MM_MMX)
439 emms();
440 #endif
441 438
442 /* intra / predictive decision */ 439 /* intra / predictive decision */
443 xx = mb_x * 16; 440 xx = mb_x * 16;
444 yy = mb_y * 16; 441 yy = mb_y * 16;
445 442