diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2007-05-16 09:51:45 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-16 09:51:45 +0000 |
commit | b550bfaa618da17c63c0ef132f938beaaaf0a3dc (patch) | |
tree | 8649acd2667fa63434f61c9ec45a0ad1d23a2725 /libavcodec/i386/dsputil_mmx.c | |
parent | 14b2d010582861dfcf72428ffe226bbc6d0caeb4 (diff) | |
download | ffmpeg-b550bfaa618da17c63c0ef132f938beaaaf0a3dc.tar.gz |
Add libavcodec to compiler include flags in order to simplify header
include paths in the source files.
mostly from a patch by Ronald S. Bultje, rbultje ronald.bitfreak net
Originally committed as revision 9034 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/dsputil_mmx.c')
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 9b81b2d610..063d0237b0 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -22,9 +22,9 @@ * MMX optimization by Nick Kurshev <nickols_k@mail.ru> */ -#include "../dsputil.h" -#include "../simple_idct.h" -#include "../mpegvideo.h" +#include "dsputil.h" +#include "simple_idct.h" +#include "mpegvideo.h" #include "x86_cpu.h" #include "mmx.h" |