Lines Matching defs:frame
197 AVFrame *frame = arg;
209 uint8_t *p = frame->data[0] + y * frame->linesize[0] * ctx->texture_block_h;
212 ctx->tex_funct(p + x * 4 * ctx->texture_block_w, frame->linesize[0],
220 uint8_t *p0 = frame->data[0] + y * frame->linesize[0] * ctx->texture_block_h;
221 uint8_t *p3 = ctx->tex_step != 64 ? NULL : frame->data[3] + y * frame->linesize[3] * ctx->texture_block_h;
224 ctx->tex_funct_planar[0](p0 + x * ctx->texture_block_w, frame->linesize[0],
225 p3 != NULL ? p3 + x * ctx->texture_block_w : NULL, frame->linesize[3],
236 uint8_t *p0 = frame->data[1] + y * frame->linesize[1] * ctx->ctexture_block_h;
237 uint8_t *p1 = frame->data[2] + y * frame->linesize[2] * ctx->ctexture_block_h;
240 ctx->tex_funct_planar[1](p0 + x * ctx->ctexture_block_w, frame->linesize[1],
241 p1 + x * ctx->ctexture_block_w, frame->linesize[2],
1041 static int dxv_decode(AVCodecContext *avctx, AVFrame *frame,
1213 ret = ff_thread_get_buffer(avctx, frame, 0);
1219 frame, NULL, ctx->slice_count);
1222 frame->pict_type = AV_PICTURE_TYPE_I;
1223 frame->key_frame = 1;