1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +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");
#endif
emms_c();
}
static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms, int w, int h)