diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-11 02:47:38 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-11 02:51:23 +0100 |
commit | a39d36146a40cb52b3560fd02c73eccf72603b8f (patch) | |
tree | b7bfcbc87ad687c0df3db524cb8cfbe2b272e802 /libavcodec/h264_refs.c | |
parent | d7da4d47a6841444f12bf56dfe4230d3e4af8646 (diff) | |
download | ffmpeg-a39d36146a40cb52b3560fd02c73eccf72603b8f.tar.gz |
h264_refs: Print default in case we are missing a reference.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264_refs.c')
-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 dbdd5317a7..812913a612 100644 --- a/libavcodec/h264_refs.c +++ b/libavcodec/h264_refs.c @@ -287,7 +287,7 @@ int ff_h264_decode_ref_pic_list_reordering(H264Context *h){ for(list=0; list<h->list_count; list++){ for(index= 0; index < h->ref_count[list]; index++){ if (!h->ref_list[list][index].f.data[0]) { - av_log(h->s.avctx, AV_LOG_ERROR, "Missing reference picture\n"); + av_log(h->s.avctx, AV_LOG_ERROR, "Missing reference picture, default is %d\n", h->default_ref_list[list][0].poc); if (h->default_ref_list[list][0].f.data[0]) h->ref_list[list][index]= h->default_ref_list[list][0]; else |