Lines Matching defs:frame
277 AVFrame *frame;
998 av_log(ctx->avctx, AV_LOG_ERROR, "Insufficient data for raw frame.\n");
1282 av_log(ctx->avctx, AV_LOG_ERROR, "Insufficient data for frame.\n");
1325 av_log(ctx->avctx, AV_LOG_ERROR, "Input frame too short (%d bytes).\n",
1375 if ((ret = ff_get_buffer(ctx->avctx, ctx->frame, 0)) < 0)
1378 dst = ctx->frame->data[0];
1379 dstpitch = ctx->frame->linesize[0];
1390 static int decode_frame(AVCodecContext *avctx, AVFrame *frame,
1396 ctx->frame = frame;
1481 memcpy(ctx->frame->data[1], ctx->pal, 1024);
1489 if ((ctx->frame->key_frame = !header.seq_num)) {
1490 ctx->frame->pict_type = AV_PICTURE_TYPE_I;
1494 ctx->frame->pict_type = AV_PICTURE_TYPE_P;
1500 "Subcodec %d: error decoding frame.\n", header.codec);