Lines Matching refs:frame

49  * One encoded frame returned from the library.
54 int64_t pts; /**< time stamp to show frame
56 unsigned long duration; /**< duration to show frame
58 uint32_t flags; /**< flags for this frame */
540 av_log(avctx, AV_LOG_ERROR, "Invalid tile sizing: frame not "
1031 dst->pts = src->data.frame.pts;
1032 dst->duration = src->data.frame.duration;
1033 dst->flags = src->data.frame.flags;
1034 dst->sz = src->data.frame.sz;
1035 dst->buf = src->data.frame.buf;
1040 /* associate last-seen SSE to the frame. */
1049 * Store coded frame information in format suitable for return from encode2().
1111 * In cases where aom_codec_get_cx_data() returns more than 1 frame append
1112 * the frame queue. Return the head frame if available.
1113 * @return Stored frame size
1115 * @return AVERROR(ENOMEM) on coded frame queue data allocation error
1126 /* return the leading frame if we've already begun queueing */
1142 /* avoid storing the frame when the list is empty and we haven't yet
1143 * provided a frame for output */
1168 memcpy(cx_frame->buf, pkt->data.frame.buf, pkt->data.frame.sz);
1210 const AVFrame *frame, int *got_packet)
1218 if (frame) {
1220 rawimg->planes[AOM_PLANE_Y] = frame->data[0];
1221 rawimg->planes[AOM_PLANE_U] = frame->data[1];
1222 rawimg->planes[AOM_PLANE_V] = frame->data[2];
1223 rawimg->stride[AOM_PLANE_Y] = frame->linesize[0];
1224 rawimg->stride[AOM_PLANE_U] = frame->linesize[1];
1225 rawimg->stride[AOM_PLANE_V] = frame->linesize[2];
1226 timestamp = frame->pts;
1227 switch (frame->color_range) {
1236 if (frame->pict_type == AV_PICTURE_TYPE_I)
1243 log_encoder_error(avctx, "Error encoding frame");
1248 if (!frame && avctx->flags & AV_CODEC_FLAG_PASS1) {
1344 "alternate reference frame selection", OFFSET(lag_in_frames), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE},
1345 { "arnr-max-frames", "altref noise reduction max frame count", OFFSET(arnr_max_frames), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE},
1363 { "frame-parallel", "Enable frame parallel decodability features", OFFSET(frame_parallel), AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, VE},
1380 { "still-picture", "Encode in single frame mode (typically used for still AVIF images).", OFFSET(still_picture), AV_OPT_TYPE_BOOL, {.i64 = 0}, -1, 1, VE },
1397 { "enable-ref-frame-mvs", "Enable temporal mv prediction", OFFSET(enable_ref_frame_mvs), AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, VE},