diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-04 19:59:12 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-04 21:33:13 +0100 |
commit | 9434ec5f767cfb71c1179f3e118fc38b6d33699e (patch) | |
tree | 39eebf9fab0ecef8069739de488386bed3adb786 | |
parent | e4e9b9454e9705878a221dd0ba8c7da963df40a8 (diff) | |
download | ffmpeg-9434ec5f767cfb71c1179f3e118fc38b6d33699e.tar.gz |
avcodec/h264_refs: Fix and add back trace code removed in e1c5170c638e39a8017827339ac687c5f6ff9b35
-rw-r--r-- | libavcodec/h264_refs.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c index a43b814a09..d46d940dae 100644 --- a/libavcodec/h264_refs.c +++ b/libavcodec/h264_refs.c @@ -181,6 +181,22 @@ static void h264_initialise_ref_list(H264Context *h, H264SliceContext *sl) if (len < sl->ref_count[0]) memset(&sl->ref_list[0][len], 0, sizeof(H264Ref) * (sl->ref_count[0] - len)); } +#ifdef TRACE + for (i = 0; i < sl->ref_count[0]; i++) { + ff_tlog(h->avctx, "List0: %s fn:%d 0x%p\n", + (sl->ref_list[0][i].parent ? (sl->ref_list[0][i].parent->long_ref ? "LT" : "ST") : "??"), + sl->ref_list[0][i].pic_id, + sl->ref_list[0][i].data[0]); + } + if (sl->slice_type_nos == AV_PICTURE_TYPE_B) { + for (i = 0; i < sl->ref_count[1]; i++) { + ff_tlog(h->avctx, "List1: %s fn:%d 0x%p\n", + (sl->ref_list[1][i].parent ? (sl->ref_list[1][i].parent->long_ref ? "LT" : "ST") : "??"), + sl->ref_list[1][i].pic_id, + sl->ref_list[1][i].data[0]); + } + } +#endif for (j = 0; j<1+(sl->slice_type_nos == AV_PICTURE_TYPE_B); j++) { for (i = 0; i < sl->ref_count[j]; i++) { |