Lines Matching refs:frame
42 AVFrame *frame;
178 av_frame_free(&ctx->frame);
193 ctx->frame = av_frame_alloc();
194 if (!ctx->frame)
441 AVFrame *frame = ctx->frame;
443 ret = ff_encode_get_frame(avctx, frame);
447 if (frame->buf[0]) {
448 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
455 *pts = frame->pts;
459 av_log(avctx, AV_LOG_ERROR, "Could not allocate new rav1e frame.\n");
460 av_frame_unref(frame);
468 rav1e_frame_fill_plane(rframe, i, frame->data[i],
469 (frame->height >> shift) * frame->linesize[i],
470 frame->linesize[i], bytes);
472 av_frame_unref(frame);
491 av_log(avctx, AV_LOG_ERROR, "Could not send frame: %s\n", rav1e_status_to_str(ret));
530 av_log(avctx, AV_LOG_ERROR, "Could not encode frame: %s\n", rav1e_status_to_str(ret));