diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-09 14:33:55 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-09 14:33:55 +0000 |
commit | 20cd685ae8ec274f2295b524989fceb3e58a01f0 (patch) | |
tree | 9761ba916fb1773a2b8f30efdfca2bb4fe084c7f | |
parent | 223d678a3fe91f6d78ead52d28a09161e4d32755 (diff) | |
download | ffmpeg-20cd685ae8ec274f2295b524989fceb3e58a01f0.tar.gz |
Add missing path to #include.
Originally committed as revision 13102 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/vp3dsp_mmx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/vp3dsp_mmx.h b/libavcodec/i386/vp3dsp_mmx.h index 7c2bc601be..3382356368 100644 --- a/libavcodec/i386/vp3dsp_mmx.h +++ b/libavcodec/i386/vp3dsp_mmx.h @@ -22,7 +22,7 @@ #ifndef FFMPEG_VP3DSP_MMX_H #define FFMPEG_VP3DSP_MMX_H -#include "dsputil.h" +#include "libavcodec/dsputil.h" void ff_vp3_idct_mmx(int16_t *data); void ff_vp3_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block); |