diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-16 09:21:23 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-16 09:21:23 +0000 |
commit | 14b2d010582861dfcf72428ffe226bbc6d0caeb4 (patch) | |
tree | 57d9f47d6a7f63881c65c711d225e844c9a9fe8f /libavformat/grab.c | |
parent | 2e374f12b50411fa36dd436c05093a97a727e10f (diff) | |
download | ffmpeg-14b2d010582861dfcf72428ffe226bbc6d0caeb4.tar.gz |
Drop unnecessary libavcodec/ prefix in #include path.
Originally committed as revision 9033 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/grab.c')
-rw-r--r-- | libavformat/grab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/grab.c b/libavformat/grab.c index 8fe3997bca..5eb2e74710 100644 --- a/libavformat/grab.c +++ b/libavformat/grab.c @@ -431,7 +431,7 @@ static int aiw_init(VideoData *s) } #ifdef HAVE_MMX -#include "libavcodec/i386/mmx.h" +#include "i386/mmx.h" #define LINE_WITH_UV \ movq_m2r(ptr[0],mm0); \ @@ -582,7 +582,7 @@ static int aiw_init(VideoData *s) movd_r2m(mm1,lum_m2[(ptroff)]); #else -#include "libavcodec/dsputil.h" +#include "dsputil.h" #define LINE_WITH_UV \ lum[0]=ptr[0];lum[1]=ptr[2];lum[2]=ptr[4];lum[3]=ptr[6];\ |