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/ppc/snow_altivec.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/ppc/snow_altivec.c')
-rw-r--r-- | libavcodec/ppc/snow_altivec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/snow_altivec.c b/libavcodec/ppc/snow_altivec.c index b15672ffe1..66ab86553a 100644 --- a/libavcodec/ppc/snow_altivec.c +++ b/libavcodec/ppc/snow_altivec.c @@ -21,11 +21,11 @@ * */ -#include "../dsputil.h" +#include "dsputil.h" #include "gcc_fixes.h" #include "dsputil_altivec.h" -#include "../snow.h" +#include "snow.h" #undef NDEBUG #include <assert.h> |