# HG changeset patch # User reimar # Date 1091888155 0 # Node ID 4e7d8679d6d8a2e48ed59b43b7fc9d939504769f # Parent 520c8675f033334b32805bd9351c507536168a0b compilation fix for test program diff -r 520c8675f033 -r 4e7d8679d6d8 liba52/Makefile --- a/liba52/Makefile Thu Aug 05 06:31:42 2004 +0000 +++ b/liba52/Makefile Sat Aug 07 14:15:55 2004 +0000 @@ -20,7 +20,7 @@ $(RANLIB) $(LIBNAME) test: $(LIBNAME) test.c - $(CC) $(CFLAGS) test.c ../cpudetect.c -o test ./liba52.a -lm + $(CC) $(CFLAGS) test.c ../cpudetect.c -o test ../osdep/libosdep.a ./liba52.a -lm test2: $(LIBNAME) test.c $(CC) $(CFLAGS) test.c -o test2 ../libac3/libac3.a ./liba52.a -lm diff -r 520c8675f033 -r 4e7d8679d6d8 liba52/test.c --- a/liba52/test.c Thu Aug 05 06:31:42 2004 +0000 +++ b/liba52/test.c Sat Aug 07 14:15:55 2004 +0000 @@ -9,6 +9,7 @@ #include #include #include +#include #include "a52.h" #include "mm_accel.h" @@ -21,6 +22,10 @@ static int16_t out_buf[6*256*6]; +void mp_msg_c( int x, const char *format, ... ) // stub for cpudetect.c +{ +} + #ifdef TIMING static inline long long rdtsc() {