diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-10 18:42:52 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-10 18:51:48 +0100 |
commit | cc616431238c6c450a8bd53cf7983b12dda7f134 (patch) | |
tree | 122b408ad51a05e522566adef4e0c9461a390ded | |
parent | 5b2873c1d57683f377caf77b03e38a427eb3922b (diff) | |
download | ffmpeg-cc616431238c6c450a8bd53cf7983b12dda7f134.tar.gz |
h264: improve "no picture" debug output.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/h264.c | 2 |
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) { |