# HG changeset patch # User diego # Date 1179309105 0 # Node ID d5ba514e3f4ae1597a8f4db74ad4c044256b106d # Parent 4d10df33e8232f865a088b0fee519cc79d1b318d 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 diff -r 4d10df33e823 -r d5ba514e3f4a Makefile --- a/Makefile Tue May 15 20:47:55 2007 +0000 +++ b/Makefile Wed May 16 09:51:45 2007 +0000 @@ -4,7 +4,7 @@ # include ../config.mak -CFLAGS+=-I$(SRC_PATH)/libswscale +CFLAGS+=-I$(SRC_PATH)/libswscale -I$(SRC_PATH)/libavcodec OBJS= bitstream.o \ utils.o \ diff -r 4d10df33e823 -r d5ba514e3f4a alpha/dsputil_alpha.c --- a/alpha/dsputil_alpha.c Tue May 15 20:47:55 2007 +0000 +++ b/alpha/dsputil_alpha.c Wed May 16 09:51:45 2007 +0000 @@ -20,7 +20,7 @@ */ #include "asm.h" -#include "../dsputil.h" +#include "dsputil.h" extern void simple_idct_axp(DCTELEM *block); extern void simple_idct_put_axp(uint8_t *dest, int line_size, DCTELEM *block); diff -r 4d10df33e823 -r d5ba514e3f4a alpha/motion_est_alpha.c --- a/alpha/motion_est_alpha.c Tue May 15 20:47:55 2007 +0000 +++ b/alpha/motion_est_alpha.c Wed May 16 09:51:45 2007 +0000 @@ -20,7 +20,7 @@ */ #include "asm.h" -#include "../dsputil.h" +#include "dsputil.h" void get_pixels_mvi(DCTELEM *restrict block, const uint8_t *restrict pixels, int line_size) diff -r 4d10df33e823 -r d5ba514e3f4a alpha/mpegvideo_alpha.c --- a/alpha/mpegvideo_alpha.c Tue May 15 20:47:55 2007 +0000 +++ b/alpha/mpegvideo_alpha.c Wed May 16 09:51:45 2007 +0000 @@ -20,8 +20,8 @@ */ #include "asm.h" -#include "../dsputil.h" -#include "../mpegvideo.h" +#include "dsputil.h" +#include "mpegvideo.h" static void dct_unquantize_h263_intra_axp(MpegEncContext *s, DCTELEM *block, int n, int qscale) diff -r 4d10df33e823 -r d5ba514e3f4a alpha/simple_idct_alpha.c --- a/alpha/simple_idct_alpha.c Tue May 15 20:47:55 2007 +0000 +++ b/alpha/simple_idct_alpha.c Wed May 16 09:51:45 2007 +0000 @@ -27,7 +27,7 @@ */ #include "asm.h" -#include "../dsputil.h" +#include "dsputil.h" extern void (*put_pixels_clamped_axp_p)(const DCTELEM *block, uint8_t *pixels, int line_size); diff -r 4d10df33e823 -r d5ba514e3f4a armv4l/dsputil_arm.c --- a/armv4l/dsputil_arm.c Tue May 15 20:47:55 2007 +0000 +++ b/armv4l/dsputil_arm.c Wed May 16 09:51:45 2007 +0000 @@ -19,7 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" #ifdef HAVE_IPP #include "ipp.h" #endif diff -r 4d10df33e823 -r d5ba514e3f4a armv4l/dsputil_iwmmxt.c --- a/armv4l/dsputil_iwmmxt.c Tue May 15 20:47:55 2007 +0000 +++ b/armv4l/dsputil_iwmmxt.c Wed May 16 09:51:45 2007 +0000 @@ -19,7 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" #define DEF(x, y) x ## _no_rnd_ ## y ##_iwmmxt #define SET_RND(regd) __asm__ __volatile__ ("mov r12, #1 \n\t tbcsth " #regd ", r12":::"r12"); diff -r 4d10df33e823 -r d5ba514e3f4a armv4l/mpegvideo_arm.c --- a/armv4l/mpegvideo_arm.c Tue May 15 20:47:55 2007 +0000 +++ b/armv4l/mpegvideo_arm.c Wed May 16 09:51:45 2007 +0000 @@ -19,9 +19,9 @@ * */ -#include "../dsputil.h" -#include "../mpegvideo.h" -#include "../avcodec.h" +#include "dsputil.h" +#include "mpegvideo.h" +#include "avcodec.h" extern void MPV_common_init_iwmmxt(MpegEncContext *s); extern void MPV_common_init_armv5te(MpegEncContext *s); diff -r 4d10df33e823 -r d5ba514e3f4a armv4l/mpegvideo_armv5te.c --- a/armv4l/mpegvideo_armv5te.c Tue May 15 20:47:55 2007 +0000 +++ b/armv4l/mpegvideo_armv5te.c Wed May 16 09:51:45 2007 +0000 @@ -25,9 +25,9 @@ * Instructions timings and optimization guide for ARM9E: http://www.arm.com/pdfs/DDI0222B_9EJS_r1p2.pdf */ -#include "../dsputil.h" -#include "../mpegvideo.h" -#include "../avcodec.h" +#include "dsputil.h" +#include "mpegvideo.h" +#include "avcodec.h" #ifdef ENABLE_ARM_TESTS diff -r 4d10df33e823 -r d5ba514e3f4a armv4l/mpegvideo_iwmmxt.c --- a/armv4l/mpegvideo_iwmmxt.c Tue May 15 20:47:55 2007 +0000 +++ b/armv4l/mpegvideo_iwmmxt.c Wed May 16 09:51:45 2007 +0000 @@ -18,9 +18,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" -#include "../mpegvideo.h" -#include "../avcodec.h" +#include "dsputil.h" +#include "mpegvideo.h" +#include "avcodec.h" static void dct_unquantize_h263_intra_iwmmxt(MpegEncContext *s, DCTELEM *block, int n, int qscale) diff -r 4d10df33e823 -r d5ba514e3f4a bfin/dsputil_bfin.c --- a/bfin/dsputil_bfin.c Tue May 15 20:47:55 2007 +0000 +++ b/bfin/dsputil_bfin.c Wed May 16 09:51:45 2007 +0000 @@ -23,8 +23,8 @@ #include #include -#include "../avcodec.h" -#include "../dsputil.h" +#include "avcodec.h" +#include "dsputil.h" #define USE_L1CODE diff -r 4d10df33e823 -r d5ba514e3f4a i386/cavsdsp_mmx.c --- a/i386/cavsdsp_mmx.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/cavsdsp_mmx.c Wed May 16 09:51:45 2007 +0000 @@ -22,7 +22,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" #include "common.h" DECLARE_ALIGNED_8(static const uint64_t,ff_pw_4 ) = 0x0004000400040004ULL; diff -r 4d10df33e823 -r d5ba514e3f4a i386/cputest.c --- a/i386/cputest.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/cputest.c Wed May 16 09:51:45 2007 +0000 @@ -21,7 +21,7 @@ */ #include -#include "../dsputil.h" +#include "dsputil.h" #undef printf diff -r 4d10df33e823 -r d5ba514e3f4a i386/dsputil_mmx.c --- a/i386/dsputil_mmx.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/dsputil_mmx.c Wed May 16 09:51:45 2007 +0000 @@ -22,9 +22,9 @@ * MMX optimization by Nick Kurshev */ -#include "../dsputil.h" -#include "../simple_idct.h" -#include "../mpegvideo.h" +#include "dsputil.h" +#include "simple_idct.h" +#include "mpegvideo.h" #include "x86_cpu.h" #include "mmx.h" diff -r 4d10df33e823 -r d5ba514e3f4a i386/fdct_mmx.c --- a/i386/fdct_mmx.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/fdct_mmx.c Wed May 16 09:51:45 2007 +0000 @@ -30,7 +30,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "common.h" -#include "../dsputil.h" +#include "dsputil.h" #include "mmx.h" #define ATTR_ALIGN(align) __attribute__ ((__aligned__ (align))) diff -r 4d10df33e823 -r d5ba514e3f4a i386/fft_3dn.c --- a/i386/fft_3dn.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/fft_3dn.c Wed May 16 09:51:45 2007 +0000 @@ -19,7 +19,7 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" static const int p1m1[2] __attribute__((aligned(8))) = { 0, 1 << 31 }; diff -r 4d10df33e823 -r d5ba514e3f4a i386/fft_3dn2.c --- a/i386/fft_3dn2.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/fft_3dn2.c Wed May 16 09:51:45 2007 +0000 @@ -19,7 +19,7 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" static const int p1m1[2] __attribute__((aligned(8))) = { 0, 1 << 31 }; diff -r 4d10df33e823 -r d5ba514e3f4a i386/fft_sse.c --- a/i386/fft_sse.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/fft_sse.c Wed May 16 09:51:45 2007 +0000 @@ -18,7 +18,7 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" static const int p1p1p1m1[4] __attribute__((aligned(16))) = { 0, 0, 0, 1 << 31 }; diff -r 4d10df33e823 -r d5ba514e3f4a i386/idct_mmx.c --- a/i386/idct_mmx.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/idct_mmx.c Wed May 16 09:51:45 2007 +0000 @@ -20,7 +20,7 @@ */ #include "common.h" -#include "../dsputil.h" +#include "dsputil.h" #include "mmx.h" diff -r 4d10df33e823 -r d5ba514e3f4a i386/idct_mmx_xvid.c --- a/i386/idct_mmx_xvid.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/idct_mmx_xvid.c Wed May 16 09:51:45 2007 +0000 @@ -50,7 +50,7 @@ #include -#include "../avcodec.h" +#include "avcodec.h" //============================================================================= // Macros and other preprocessor constants diff -r 4d10df33e823 -r d5ba514e3f4a i386/motion_est_mmx.c --- a/i386/motion_est_mmx.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/motion_est_mmx.c Wed May 16 09:51:45 2007 +0000 @@ -21,7 +21,7 @@ * * mostly by Michael Niedermayer */ -#include "../dsputil.h" +#include "dsputil.h" #include "x86_cpu.h" static const __attribute__ ((aligned(8))) uint64_t round_tab[3]={ diff -r 4d10df33e823 -r d5ba514e3f4a i386/mpegvideo_mmx.c --- a/i386/mpegvideo_mmx.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/mpegvideo_mmx.c Wed May 16 09:51:45 2007 +0000 @@ -22,9 +22,9 @@ * h263, mpeg1, mpeg2 dequantizer & draw_edges by Michael Niedermayer */ -#include "../dsputil.h" -#include "../mpegvideo.h" -#include "../avcodec.h" +#include "dsputil.h" +#include "mpegvideo.h" +#include "avcodec.h" #include "x86_cpu.h" extern uint16_t inv_zigzag_direct16[64]; diff -r 4d10df33e823 -r d5ba514e3f4a i386/simple_idct_mmx.c --- a/i386/simple_idct_mmx.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/simple_idct_mmx.c Wed May 16 09:51:45 2007 +0000 @@ -19,8 +19,8 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" -#include "../simple_idct.h" +#include "dsputil.h" +#include "simple_idct.h" /* 23170.475006 diff -r 4d10df33e823 -r d5ba514e3f4a i386/snowdsp_mmx.c --- a/i386/snowdsp_mmx.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/snowdsp_mmx.c Wed May 16 09:51:45 2007 +0000 @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../avcodec.h" -#include "../snow.h" +#include "avcodec.h" +#include "snow.h" #include "x86_cpu.h" void ff_snow_horizontal_compose97i_sse2(DWTELEM *b, int width){ diff -r 4d10df33e823 -r d5ba514e3f4a i386/vp3dsp_mmx.c --- a/i386/vp3dsp_mmx.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/vp3dsp_mmx.c Wed May 16 09:51:45 2007 +0000 @@ -23,7 +23,7 @@ * MMX-optimized functions cribbed from the original VP3 source code. */ -#include "../dsputil.h" +#include "dsputil.h" #include "mmx.h" #define IdctAdjustBeforeShift 8 diff -r 4d10df33e823 -r d5ba514e3f4a i386/vp3dsp_sse2.c --- a/i386/vp3dsp_sse2.c Tue May 15 20:47:55 2007 +0000 +++ b/i386/vp3dsp_sse2.c Wed May 16 09:51:45 2007 +0000 @@ -23,7 +23,7 @@ * SSE2-optimized functions cribbed from the original VP3 source code. */ -#include "../dsputil.h" +#include "dsputil.h" #include "mmx.h" static DECLARE_ALIGNED_16(const unsigned short, SSE2_dequant_const[]) = diff -r 4d10df33e823 -r d5ba514e3f4a mlib/dsputil_mlib.c --- a/mlib/dsputil_mlib.c Tue May 15 20:47:55 2007 +0000 +++ b/mlib/dsputil_mlib.c Wed May 16 09:51:45 2007 +0000 @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" -#include "../mpegvideo.h" +#include "dsputil.h" +#include "mpegvideo.h" #include #include diff -r 4d10df33e823 -r d5ba514e3f4a ppc/dsputil_altivec.c --- a/ppc/dsputil_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/dsputil_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -20,7 +20,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" #include "gcc_fixes.h" diff -r 4d10df33e823 -r d5ba514e3f4a ppc/dsputil_ppc.c --- a/ppc/dsputil_ppc.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/dsputil_ppc.c Wed May 16 09:51:45 2007 +0000 @@ -20,7 +20,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" #include "dsputil_ppc.h" diff -r 4d10df33e823 -r d5ba514e3f4a ppc/fdct_altivec.c --- a/ppc/fdct_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/fdct_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -21,7 +21,7 @@ #include "common.h" -#include "../dsputil.h" +#include "dsputil.h" #include "dsputil_altivec.h" #include "gcc_fixes.h" diff -r 4d10df33e823 -r d5ba514e3f4a ppc/fft_altivec.c --- a/ppc/fft_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/fft_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -20,7 +20,7 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" #include "gcc_fixes.h" diff -r 4d10df33e823 -r d5ba514e3f4a ppc/float_altivec.c --- a/ppc/float_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/float_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" #include "gcc_fixes.h" diff -r 4d10df33e823 -r d5ba514e3f4a ppc/gmc_altivec.c --- a/ppc/gmc_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/gmc_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -20,7 +20,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" #include "gcc_fixes.h" diff -r 4d10df33e823 -r d5ba514e3f4a ppc/h264_altivec.c --- a/ppc/h264_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/h264_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" #include "gcc_fixes.h" diff -r 4d10df33e823 -r d5ba514e3f4a ppc/idct_altivec.c --- a/ppc/idct_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/idct_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -39,7 +39,7 @@ #include /* malloc(), free() */ #include -#include "../dsputil.h" +#include "dsputil.h" #include "gcc_fixes.h" diff -r 4d10df33e823 -r d5ba514e3f4a ppc/int_altivec.c --- a/ppc/int_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/int_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -23,7 +23,7 @@ ** integer misc ops. **/ -#include "../dsputil.h" +#include "dsputil.h" #include "gcc_fixes.h" diff -r 4d10df33e823 -r d5ba514e3f4a ppc/mpegvideo_altivec.c --- a/ppc/mpegvideo_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/mpegvideo_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -23,8 +23,8 @@ #include #include -#include "../dsputil.h" -#include "../mpegvideo.h" +#include "dsputil.h" +#include "mpegvideo.h" #include "gcc_fixes.h" diff -r 4d10df33e823 -r d5ba514e3f4a ppc/mpegvideo_ppc.c --- a/ppc/mpegvideo_ppc.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/mpegvideo_ppc.c Wed May 16 09:51:45 2007 +0000 @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" -#include "../mpegvideo.h" +#include "dsputil.h" +#include "mpegvideo.h" #include #ifdef HAVE_ALTIVEC diff -r 4d10df33e823 -r d5ba514e3f4a ppc/snow_altivec.c --- a/ppc/snow_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/snow_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -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 diff -r 4d10df33e823 -r d5ba514e3f4a ppc/vc1dsp_altivec.c --- a/ppc/vc1dsp_altivec.c Tue May 15 20:47:55 2007 +0000 +++ b/ppc/vc1dsp_altivec.c Wed May 16 09:51:45 2007 +0000 @@ -20,7 +20,7 @@ * */ -#include "../dsputil.h" +#include "dsputil.h" #include "gcc_fixes.h" diff -r 4d10df33e823 -r d5ba514e3f4a ps2/dsputil_mmi.c --- a/ps2/dsputil_mmi.c Tue May 15 20:47:55 2007 +0000 +++ b/ps2/dsputil_mmi.c Wed May 16 09:51:45 2007 +0000 @@ -22,7 +22,7 @@ * clear_blocks_mmi() by BroadQ */ -#include "../dsputil.h" +#include "dsputil.h" #include "mmi.h" void ff_mmi_idct_put(uint8_t *dest, int line_size, DCTELEM *block); diff -r 4d10df33e823 -r d5ba514e3f4a ps2/idct_mmi.c --- a/ps2/idct_mmi.c Tue May 15 20:47:55 2007 +0000 +++ b/ps2/idct_mmi.c Wed May 16 09:51:45 2007 +0000 @@ -26,8 +26,8 @@ * */ -#include "../common.h" -#include "../dsputil.h" +#include "common.h" +#include "dsputil.h" #include "mmi.h" #define BITS_INV_ACC 5 // 4 or 5 for IEEE diff -r 4d10df33e823 -r d5ba514e3f4a ps2/mpegvideo_mmi.c --- a/ps2/mpegvideo_mmi.c Tue May 15 20:47:55 2007 +0000 +++ b/ps2/mpegvideo_mmi.c Wed May 16 09:51:45 2007 +0000 @@ -20,9 +20,9 @@ * MMI optimization by Leon van Stuivenberg */ -#include "../dsputil.h" -#include "../mpegvideo.h" -#include "../avcodec.h" +#include "dsputil.h" +#include "mpegvideo.h" +#include "avcodec.h" static void dct_unquantize_h263_mmi(MpegEncContext *s, DCTELEM *block, int n, int qscale) diff -r 4d10df33e823 -r d5ba514e3f4a sh4/dsputil_align.c --- a/sh4/dsputil_align.c Tue May 15 20:47:55 2007 +0000 +++ b/sh4/dsputil_align.c Wed May 16 09:51:45 2007 +0000 @@ -21,8 +21,8 @@ */ -#include "../avcodec.h" -#include "../dsputil.h" +#include "avcodec.h" +#include "dsputil.h" #define LP(p) *(uint32_t*)(p) diff -r 4d10df33e823 -r d5ba514e3f4a sh4/dsputil_sh4.c --- a/sh4/dsputil_sh4.c Tue May 15 20:47:55 2007 +0000 +++ b/sh4/dsputil_sh4.c Wed May 16 09:51:45 2007 +0000 @@ -20,8 +20,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../avcodec.h" -#include "../dsputil.h" +#include "avcodec.h" +#include "dsputil.h" static void memzero_align8(void *dst,size_t size) { diff -r 4d10df33e823 -r d5ba514e3f4a sh4/idct_sh4.c --- a/sh4/idct_sh4.c Tue May 15 20:47:55 2007 +0000 +++ b/sh4/idct_sh4.c Wed May 16 09:51:45 2007 +0000 @@ -20,7 +20,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "../dsputil.h" +#include "dsputil.h" #define c1 1.38703984532214752434 /* sqrt(2)*cos(1*pi/16) */ #define c2 1.30656296487637657577 /* sqrt(2)*cos(2*pi/16) */ #define c3 1.17587560241935884520 /* sqrt(2)*cos(3*pi/16) */ diff -r 4d10df33e823 -r d5ba514e3f4a sparc/dsputil_vis.c --- a/sparc/dsputil_vis.c Tue May 15 20:47:55 2007 +0000 +++ b/sparc/dsputil_vis.c Wed May 16 09:51:45 2007 +0000 @@ -31,7 +31,7 @@ #include #include -#include "../dsputil.h" +#include "dsputil.h" #include "vis.h"