changeset 5010:d5ba514e3f4a libavcodec

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
author diego
date Wed, 16 May 2007 09:51:45 +0000
parents 4d10df33e823
children 03aa103464d4
files Makefile alpha/dsputil_alpha.c alpha/motion_est_alpha.c alpha/mpegvideo_alpha.c alpha/simple_idct_alpha.c armv4l/dsputil_arm.c armv4l/dsputil_iwmmxt.c armv4l/mpegvideo_arm.c armv4l/mpegvideo_armv5te.c armv4l/mpegvideo_iwmmxt.c bfin/dsputil_bfin.c i386/cavsdsp_mmx.c i386/cputest.c i386/dsputil_mmx.c i386/fdct_mmx.c i386/fft_3dn.c i386/fft_3dn2.c i386/fft_sse.c i386/idct_mmx.c i386/idct_mmx_xvid.c i386/motion_est_mmx.c i386/mpegvideo_mmx.c i386/simple_idct_mmx.c i386/snowdsp_mmx.c i386/vp3dsp_mmx.c i386/vp3dsp_sse2.c mlib/dsputil_mlib.c ppc/dsputil_altivec.c ppc/dsputil_ppc.c ppc/fdct_altivec.c ppc/fft_altivec.c ppc/float_altivec.c ppc/gmc_altivec.c ppc/h264_altivec.c ppc/idct_altivec.c ppc/int_altivec.c ppc/mpegvideo_altivec.c ppc/mpegvideo_ppc.c ppc/snow_altivec.c ppc/vc1dsp_altivec.c ps2/dsputil_mmi.c ps2/idct_mmi.c ps2/mpegvideo_mmi.c sh4/dsputil_align.c sh4/dsputil_sh4.c sh4/idct_sh4.c sparc/dsputil_vis.c
diffstat 47 files changed, 70 insertions(+), 70 deletions(-) [+]
line wrap: on
line diff
--- 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 \
--- 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);
--- 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)
--- 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)
--- 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);
--- 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
--- 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");
--- 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);
--- 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
--- 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)
--- 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 <unistd.h>
 #include <bits/bfin_sram.h>
-#include "../avcodec.h"
-#include "../dsputil.h"
+#include "avcodec.h"
+#include "dsputil.h"
 
 #define USE_L1CODE
 
--- 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;
--- 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 <stdlib.h>
-#include "../dsputil.h"
+#include "dsputil.h"
 
 #undef printf
 
--- 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 <nickols_k@mail.ru>
  */
 
-#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"
 
--- 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)))
--- 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 };
--- 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 };
--- 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 };
--- 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"
 
--- 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 <inttypes.h>
-#include "../avcodec.h"
+#include "avcodec.h"
 
 //=============================================================================
 // Macros and other preprocessor constants
--- 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 <michaelni@gmx.at>
  */
-#include "../dsputil.h"
+#include "dsputil.h"
 #include "x86_cpu.h"
 
 static const __attribute__ ((aligned(8))) uint64_t round_tab[3]={
--- 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 <michaelni@gmx.at>
  */
 
-#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];
--- 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
--- 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){
--- 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
--- 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[]) =
--- 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 <mlib_types.h>
 #include <mlib_status.h>
--- 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"
 
--- 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"
 
--- 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"
 
--- 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"
 
--- 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"
 
--- 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"
 
--- 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"
 
--- 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 <stdlib.h>                                      /* malloc(), free() */
 #include <string.h>
-#include "../dsputil.h"
+#include "dsputil.h"
 
 #include "gcc_fixes.h"
 
--- 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"
 
--- 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 <stdlib.h>
 #include <stdio.h>
-#include "../dsputil.h"
-#include "../mpegvideo.h"
+#include "dsputil.h"
+#include "mpegvideo.h"
 
 #include "gcc_fixes.h"
 
--- 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 <time.h>
 
 #ifdef HAVE_ALTIVEC
--- 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 <assert.h>
--- 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"
 
--- 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);
--- 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
--- 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)
--- 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)
--- 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)
 {
--- 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) */
--- 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 <signal.h>
 #include <setjmp.h>
 
-#include "../dsputil.h"
+#include "dsputil.h"
 
 #include "vis.h"