libeplayer3: deactivate debugging

This commit is contained in:
martii
2013-06-08 12:34:19 +02:00
committed by Stefan Seyfried
parent f5091bcd35
commit 267788f14e
17 changed files with 25 additions and 25 deletions

View File

@@ -27,7 +27,7 @@
#ifdef CONTAINER_DEBUG
static short debug_level = 10;
static short debug_level = 0;
#define container_printf(level, x...) do { \
if (debug_level >= level) printf(x); } while (0)

View File

@@ -54,9 +54,9 @@
#define ASS_DEBUG
#ifdef ASS_DEBUG
static const char *FILENAME = "container_ass.c";
static short debug_level = 10;
static short debug_level = 0;
#define ass_printf(level, fmt, x...) do { \
if (debug_level >= level) printf("[%s:%s] " fmt, FILENAME, __FUNCTION__, ## x); } while (0)

View File

@@ -64,7 +64,7 @@
#ifdef FFMPEG_DEBUG
static short debug_level = 10;
static short debug_level = 0;
#define ffmpeg_printf(level, fmt, x...) do { \
if (debug_level >= level) printf("[%s:%s] " fmt, FILENAME, __FUNCTION__, ## x); } while (0)

View File

@@ -47,7 +47,7 @@
#ifdef SRT_DEBUG
static short debug_level = 10;
static short debug_level = 0;
#define srt_printf(level, fmt, x...) do { \
if (debug_level >= level) printf("[%s:%s] " fmt, FILENAME, __FUNCTION__, ## x); } while (0)

View File

@@ -47,7 +47,7 @@
#ifdef SSA_DEBUG
static short debug_level = 10;
static short debug_level = 0;
#define ssa_printf(level, fmt, x...) do { \
if (debug_level >= level) printf("[%s:%s] " fmt, FILENAME, __FUNCTION__, ## x); } while (0)