From 96c0c7c3a572ef39c29f16b7fec7ab7051bcfd37 Mon Sep 17 00:00:00 2001 From: martii Date: Mon, 10 Jun 2013 15:11:13 +0200 Subject: [PATCH] libeplayer3/h264: disable debugging --- libeplayer3/output/writer/h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libeplayer3/output/writer/h264.c b/libeplayer3/output/writer/h264.c index 2958573..f26f74f 100644 --- a/libeplayer3/output/writer/h264.c +++ b/libeplayer3/output/writer/h264.c @@ -56,7 +56,7 @@ #ifdef H264_DEBUG static const char *FILENAME = "h264.c"; -static short debug_level = 10; +static short debug_level = 0; #define h264_printf(level, fmt, x...) do { \ if (debug_level >= level) printf("[%s:%s] " fmt, FILENAME, __FUNCTION__, ## x); } while (0)