From 990bbc15b8e749f88e5a088239a05b86dd022fe3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 1 Sep 2013 03:44:19 +0200 Subject: [PATCH] avcodec/error_resilience: change out commented printf() to av_log() Signed-off-by: Michael Niedermayer --- libavcodec/error_resilience.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/error_resilience.c b/libavcodec/error_resilience.c index 9c3b505371..b9924a6dcc 100644 --- a/libavcodec/error_resilience.c +++ b/libavcodec/error_resilience.c @@ -747,7 +747,7 @@ static int is_intra_more_likely(ERContext *s) } } } - // printf("is_intra_likely: %d type:%d\n", is_intra_likely, s->pict_type); +// av_log(NULL, AV_LOG_ERROR, "is_intra_likely: %d type:%d\n", is_intra_likely, s->pict_type); return is_intra_likely > 0; }