comparison imgconvert.c @ 5735:8b211f34a3eb libavcodec

Use emms_c() instead of ifdef patch by: Ronald S. Bultje rsbultje a gmail d com
author andoma
date Sat, 29 Sep 2007 15:09:34 +0000
parents 3e8764a25c53
children 3e5e2bafe35c
comparison
equal deleted inserted replaced
5734:0590ad246eca 5735:8b211f34a3eb
2853 deinterlace_bottom_field(dst->data[i],dst->linesize[i], 2853 deinterlace_bottom_field(dst->data[i],dst->linesize[i],
2854 src->data[i], src->linesize[i], 2854 src->data[i], src->linesize[i],
2855 width, height); 2855 width, height);
2856 } 2856 }
2857 } 2857 }
2858 #ifdef HAVE_MMX 2858 emms_c();
2859 emms();
2860 #endif
2861 return 0; 2859 return 0;
2862 } 2860 }
2863 2861