summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-12-10 18:42:52 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-12-10 18:51:48 +0100
commitcc616431238c6c450a8bd53cf7983b12dda7f134 (patch)
tree122b408ad51a05e522566adef4e0c9461a390ded /libavcodec/h264.c
parent5b2873c1d57683f377caf77b03e38a427eb3922b (diff)
h264: improve "no picture" debug output.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
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) {