diff options
Diffstat (limited to 'src/libffmpeg/libavcodec/mpeg12.c')
-rw-r--r-- | src/libffmpeg/libavcodec/mpeg12.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/libffmpeg/libavcodec/mpeg12.c b/src/libffmpeg/libavcodec/mpeg12.c index f0aecd980..00183c22d 100644 --- a/src/libffmpeg/libavcodec/mpeg12.c +++ b/src/libffmpeg/libavcodec/mpeg12.c @@ -27,9 +27,17 @@ #ifndef CONFIG_WIN32 #ifdef DEBUG -#define dprintf(fmt,args...) printf(fmt, ## args) +# if __GNUC_ +# define dprintf(fmt,args...) printf(fmt, ## args) +# else +# define dprintf(...) printf(__VA_ARGS__) +# endif #else -#define dprintf(fmt,args...) +# if __GNUC__ +# define dprintf(fmt,args...) +# else +# define dprintf(...) +# endif #endif #else |