From cc616431238c6c450a8bd53cf7983b12dda7f134 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 10 Dec 2011 18:42:52 +0100 Subject: [PATCH] h264: improve "no picture" debug output. Signed-off-by: Michael Niedermayer --- libavcodec/h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index d35938c328..a9a527723c 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -1531,7 +1531,7 @@ static void decode_postinit(H264Context *h, int setup_finished){ } else h->next_outputed_poc = out->poc; }else{ - av_log(s->avctx, AV_LOG_DEBUG, "no picture\n"); + av_log(s->avctx, AV_LOG_DEBUG, "no picture %s\n", out_of_order ? "ooo" : ""); } if (h->next_output_pic && h->next_output_pic->sync) {