Lines Matching defs:current
49 AVFrame *current;
60 av_frame_free(&ctx->current);
78 /* Allocate current frame */
79 ctx->current = av_frame_alloc();
80 if (!ctx->current)
149 ret = ff_reget_buffer(avctx, ctx->current, 0);
158 av_image_copy_plane(ctx->current->data[0] +
159 ctx->current->linesize[0] * (avctx->height - 1),
160 -1 * ctx->current->linesize[0],
163 /* Otherwise sum the delta on top of the current frame */
165 sum_delta_flipped(ctx->current->data[0], ctx->current->linesize[0],
170 ret = av_frame_ref(frame, ctx->current);