* print long term list */
| 462 | * print long term list |
| 463 | */ |
| 464 | static 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 | |
| 477 | int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){ |
| 478 | MpegEncContext * const s = &h->s; |
no test coverage detected