diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-05-01 02:32:16 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-01 02:38:30 +0200 |
commit | 0ae4aba649dffd6de4594715be06e1ec39d374d5 (patch) | |
tree | 2377dc48e936eccc165f4e281972bcf1ef8ebf19 /libavcodec | |
parent | 7ac85f4be840361d55db302ac476ced28297a061 (diff) | |
download | ffmpeg-0ae4aba649dffd6de4594715be06e1ec39d374d5.tar.gz |
H264:Print short+long+max values when they dont match up.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264_refs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c index e850484e59..c13059ae69 100644 --- a/libavcodec/h264_refs.c +++ b/libavcodec/h264_refs.c @@ -630,7 +630,7 @@ int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){ */ av_log(h->s.avctx, AV_LOG_ERROR, "number of reference frames exceeds max (probably " - "corrupt input), discarding one\n"); + "corrupt input), discarding one long:%d short:%d max:%d\n", h->long_ref_count, h->short_ref_count, h->sps.ref_frame_count); if (h->long_ref_count && !h->short_ref_count) { for (i = 0; i < 16; ++i) |