diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-06-21 11:44:53 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-06-22 10:49:40 +0200 |
commit | a5a93fa8f5aad3a1e6e71b95eaef96b734ba0dd3 (patch) | |
tree | cfb31d60d703251d75b2a27b7c2c72b7dc74a25d /libavcodec | |
parent | d11baad055857ef01e79a0499efbdcbad5c7e657 (diff) | |
download | ffmpeg-a5a93fa8f5aad3a1e6e71b95eaef96b734ba0dd3.tar.gz |
cosmetics: do not use full path for local headers
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/rv40dsp_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/rv40dsp_init.c b/libavcodec/x86/rv40dsp_init.c index cc1ea45e88..e429cc3359 100644 --- a/libavcodec/x86/rv40dsp_init.c +++ b/libavcodec/x86/rv40dsp_init.c @@ -26,8 +26,8 @@ * 3,3 is bugged in the rv40 format and maps to _xy2 version */ -#include "libavcodec/x86/dsputil_mmx.h" #include "libavcodec/rv34dsp.h" +#include "dsputil_mmx.h" void ff_put_rv40_chroma_mc8_mmx (uint8_t *dst, uint8_t *src, int stride, int h, int x, int y); |