Commit f3ab6d91 authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Diego Biurrun

Do not specify directories in #include path, -I flags take care of this.

taken from a patch by Ronald S. Bultje, rbultje ronald.bitfreak net

Originally committed as revision 9035 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b550bfaa
...@@ -22,16 +22,16 @@ ...@@ -22,16 +22,16 @@
#include "mpegvideo.h" #include "mpegvideo.h"
#include "mpeg12data.h" #include "mpeg12data.h"
#include "mpeg4data.h" #include "mpeg4data.h"
#include "../libavcodec/i386/cputest.c" #include "cputest.c"
#include "../libavcodec/i386/dsputil_mmx.c" #include "dsputil_mmx.c"
#include "../libavcodec/i386/fdct_mmx.c" #include "fdct_mmx.c"
#include "../libavcodec/i386/idct_mmx.c" #include "idct_mmx.c"
#include "../libavcodec/i386/motion_est_mmx.c" #include "motion_est_mmx.c"
#include "../libavcodec/i386/simple_idct_mmx.c" #include "simple_idct_mmx.c"
#include "../libavcodec/dsputil.c" #include "dsputil.c"
#include "../libavcodec/simple_idct.c" #include "simple_idct.c"
#include "../libavcodec/jfdctfst.c" #include "jfdctfst.c"
#undef TESTCPU_MAIN #undef TESTCPU_MAIN
......
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