Commit 731fa116 authored by Ronald S. Bultje's avatar Ronald S. Bultje

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

parent b170b323
...@@ -135,9 +135,8 @@ static void filter(AVFilterContext *ctx, AVFilterBufferRef *dstpic, ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment