1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

yadif: use emms_c() instead of inline assembly for emms invocations.

This commit is contained in:
Ronald S. Bultje
2012-07-21 17:04:06 -07:00
parent b170b323e3
commit 731fa116b4

View File

@@ -135,9 +135,8 @@ static void filter(AVFilterContext *ctx, AVFilterBufferRef *dstpic,
} }
} }
} }
#if HAVE_MMX
__asm__ volatile("emms \n\t" : : : "memory"); emms_c();
#endif
} }
static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms, int w, int h) static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms, int w, int h)