mirror of
https://github.com/mpv-player/mpv
synced 2024-11-18 21:16:10 +01:00
compilation fix for test program
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12967 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8aa097bb54
commit
adad534913
@ -20,7 +20,7 @@ $(LIBNAME): $(OBJS)
|
||||
$(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
|
||||
|
@ -9,6 +9,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <inttypes.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "a52.h"
|
||||
#include "mm_accel.h"
|
||||
@ -21,6 +22,10 @@ static int buf_size=0;
|
||||
|
||||
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()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user