MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / print_long_term

Function print_long_term

libavcodec/h264_refs.c:464–475  ·  view source on GitHub ↗

* print long term list */

Source from the content-addressed store, hash-verified

462 * print long term list
463 */
464static void print_long_term(H264Context *h) {
465 uint32_t i;
466 if(h->s.avctx->debug&FF_DEBUG_MMCO) {
467 av_log(h->s.avctx, AV_LOG_DEBUG, "long term list:\n");
468 for(i = 0; i < 16; i++){
469 Picture *pic= h->long_ref[i];
470 if (pic) {
471 av_log(h->s.avctx, AV_LOG_DEBUG, "%d fn:%d poc:%d %p\n", i, pic->frame_num, pic->poc, pic->data[0]);
472 }
473 }
474 }
475}
476
477int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
478 MpegEncContext * const s = &h->s;

Calls 1

av_logFunction · 0.85

Tested by

no test coverage detected