diff libmpcodecs/vf_ilpack.c @ 34198:064be070d8c8

cpudetect: clean up libavutil #includes libavutil/x86_cpu.h is not used directly in cpudetect.h, so remove it from there and #include it directly in files that need it. This avoids libavutil headers appearing in #include cascades in loader/ and causing problems for e.g. Doxygen.
author diego
date Thu, 03 Nov 2011 13:24:46 +0000
parents 5e2569e52969
children 51b77c9a11ef
line wrap: on
line diff
--- a/libmpcodecs/vf_ilpack.c	Wed Nov 02 13:03:20 2011 +0000
+++ b/libmpcodecs/vf_ilpack.c	Thu Nov 03 13:24:46 2011 +0000
@@ -29,6 +29,7 @@
 #include "mp_image.h"
 #include "vf.h"
 #include "libavutil/attributes.h"
+#include "libavutil/x86_cpu.h"
 
 typedef void (pack_func_t)(unsigned char *dst, unsigned char *y,
     unsigned char *u, unsigned char *v, int w, int us, int vs);