Commit 990bbc15 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/error_resilience: change out commented printf() to av_log()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 03882030
...@@ -747,7 +747,7 @@ static int is_intra_more_likely(ERContext *s) ...@@ -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; return is_intra_likely > 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment