Lines Matching defs:pict
428 int ff_h263_decode_frame(AVCodecContext *avctx, AVFrame *pict,
441 if ((ret = av_frame_ref(pict, s->next_picture_ptr->f)) < 0)
696 if ((ret = av_frame_ref(pict, s->current_picture_ptr->f)) < 0)
698 ff_print_debug_info(s, s->current_picture_ptr, pict);
699 ff_mpv_export_qp_table(s, pict, s->current_picture_ptr, FF_MPV_QSCALE_TYPE_MPEG1);
701 if ((ret = av_frame_ref(pict, s->last_picture_ptr->f)) < 0)
703 ff_print_debug_info(s, s->last_picture_ptr, pict);
704 ff_mpv_export_qp_table(s, pict, s->last_picture_ptr, FF_MPV_QSCALE_TYPE_MPEG1);
708 if ( pict->format == AV_PIX_FMT_YUV420P
711 int h = AV_CEIL_RSHIFT(pict->height, !!p);
713 pict->data[p] += (h - 1) * pict->linesize[p];
714 pict->linesize[p] *= -1;