build patches
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6467 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -3,9 +3,9 @@ SubDir OBOS_TOP src add-ons media plugins avcodec ;
|
|||||||
UsePrivateHeaders media ;
|
UsePrivateHeaders media ;
|
||||||
|
|
||||||
Addon avcodec : media plugins :
|
Addon avcodec : media plugins :
|
||||||
avcodec.cpp
|
# avcodec.cpp
|
||||||
codectbl.cpp
|
# codectbl.cpp
|
||||||
video_util.cpp
|
# video_util.cpp
|
||||||
:
|
:
|
||||||
false
|
false
|
||||||
:
|
:
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
//#define DO_PROFILING
|
//#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;};
|
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 ;
|
SubDir OBOS_TOP src add-ons media plugins avcodec libavcodec ;
|
||||||
|
|
||||||
SubDirCcFlags -fomit-frame-pointer -DPIC ;
|
SubDirCcFlags -fomit-frame-pointer -DPIC ;
|
||||||
DEFINES += HAVE_AV_CONFIG_H=1 ;
|
SubDirCcFlags -DHAVE_AV_CONFIG_H=1 ;
|
||||||
|
|
||||||
StaticLibrary avcodec :
|
StaticLibrary avcodec :
|
||||||
4xm.c
|
4xm.c
|
||||||
|
|||||||
@@ -211,9 +211,13 @@ inline void dprintf(const char* fmt,...) {}
|
|||||||
# else
|
# else
|
||||||
|
|
||||||
# ifdef DEBUG
|
# 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
|
# else
|
||||||
# if defined(CONFIG_BEOS)
|
# if defined(__BEOS__)
|
||||||
# define dprintf(fmt...)
|
# define dprintf(fmt...)
|
||||||
# else
|
# else
|
||||||
# define dprintf(fmt,...)
|
# define dprintf(fmt,...)
|
||||||
|
|||||||
Reference in New Issue
Block a user