diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-09 14:29:37 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-09 14:29:37 +0000 |
commit | 223d678a3fe91f6d78ead52d28a09161e4d32755 (patch) | |
tree | a25bb9b3c5ba50c353375eef652cce1bc5795dfa | |
parent | 49f2339cbf373d1d5025df3de2b1cb98e12ad70a (diff) | |
download | ffmpeg-223d678a3fe91f6d78ead52d28a09161e4d32755.tar.gz |
Add missing path to #include statement.
Originally committed as revision 13101 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/imgresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c index 5b720b2326..d9387f8389 100644 --- a/libavcodec/imgresample.c +++ b/libavcodec/imgresample.c @@ -25,8 +25,8 @@ */ #include "avcodec.h" -#include "swscale.h" #include "dsputil.h" +#include "libswscale/swscale.h" #ifdef HAVE_ALTIVEC #include "ppc/imgresample_altivec.h" |