build patches
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6467 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
8d32e5c625
commit
cce6e4c938
@ -3,9 +3,9 @@ SubDir OBOS_TOP src add-ons media plugins avcodec ;
|
||||
UsePrivateHeaders media ;
|
||||
|
||||
Addon avcodec : media plugins :
|
||||
avcodec.cpp
|
||||
codectbl.cpp
|
||||
video_util.cpp
|
||||
# avcodec.cpp
|
||||
# codectbl.cpp
|
||||
# video_util.cpp
|
||||
:
|
||||
false
|
||||
:
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
//#define DO_PROFILING
|
||||
|
||||
#include "video_util.h"
|
||||
//#include "video_util.h"
|
||||
|
||||
struct codec_table { CodecID id; media_type type; media_format_family family; uint32 fourcc; const char *prettyname;};
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
SubDir OBOS_TOP src add-ons media plugins avcodec libavcodec ;
|
||||
|
||||
SubDirCcFlags -fomit-frame-pointer -DPIC ;
|
||||
DEFINES += HAVE_AV_CONFIG_H=1 ;
|
||||
SubDirCcFlags -DHAVE_AV_CONFIG_H=1 ;
|
||||
|
||||
StaticLibrary avcodec :
|
||||
4xm.c
|
||||
|
@ -211,9 +211,13 @@ inline void dprintf(const char* fmt,...) {}
|
||||
# else
|
||||
|
||||
# ifdef DEBUG
|
||||
# define dprintf(fmt,...) printf(fmt, __VA_ARGS__)
|
||||
# if defined(__BEOS__)
|
||||
# define dprintf(fmt,args...) printf(fmt, ## args)
|
||||
# else
|
||||
# define dprintf(fmt,...) printf(fmt, __VA_ARGS__)
|
||||
# endif
|
||||
# else
|
||||
# if defined(CONFIG_BEOS)
|
||||
# if defined(__BEOS__)
|
||||
# define dprintf(fmt...)
|
||||
# else
|
||||
# define dprintf(fmt,...)
|
||||
|
Loading…
x
Reference in New Issue
Block a user