Lines Matching defs:last_pic
42 AVFrame *last_pic;
532 if (ctx->last_pic->format != avctx->pix_fmt)
533 av_frame_unref(ctx->last_pic);
610 if (ctx->last_pic->data[0]) {
611 av_assert0(frame->linesize[0] == ctx->last_pic->linesize[0]);
612 c->last_rgb_pic = ctx->last_pic->data[0] +
613 ctx->last_pic->linesize[0] * (avctx->height - 1);
619 if ((ret = ff_reget_buffer(avctx, ctx->last_pic, 0)) < 0)
621 if ((ret = av_frame_ref(frame, ctx->last_pic)) < 0)
736 av_frame_unref(ctx->last_pic);
737 ret = av_frame_ref(ctx->last_pic, frame);
808 av_frame_free(&ctx->last_pic);
826 ctx->last_pic = av_frame_alloc();
830 if (!c->pal_pic || !c->last_pal_pic || !ctx->last_pic) {