Lines Matching defs:frame
144 AVFrame *frame;
324 const int ystride = ctx->frame->linesize[0];
334 Y = ctx->frame->data[0] + mb_x * 16 + y_pos * ystride;
336 C[i] = ctx->frame->data[i + 1] + mb_x * 8
337 + c_pos * ctx->frame->linesize[i + 1];
376 ctx->frame->linesize[blk + 1]);
384 static int aic_decode_frame(AVCodecContext *avctx, AVFrame *frame,
395 ctx->frame = frame;
396 ctx->frame->pict_type = AV_PICTURE_TYPE_I;
397 ctx->frame->key_frame = 1;
402 av_log(avctx, AV_LOG_ERROR, "Too small frame\n");
412 if ((ret = ff_thread_get_buffer(avctx, ctx->frame, 0)) < 0)