Lines Matching refs:frame
48 * The decoder extracts and fills its parameters even if the frame is
54 * If this cap is set, the generic code will initialize output frame
63 * The codec supports frame threading and has inter-frame dependencies, so it
72 * Codec handles output frame properties internally instead of letting the
171 * @param[out] frame AVFrame for output
173 * a non-empty frame was returned in frame.
178 int (*decode)(struct AVCodecContext *avctx, struct AVFrame *frame,
189 * Decode API with decoupled packet/frame dataflow.
192 * This function is called to get one output frame. It should call
195 int (*receive_frame)(struct AVCodecContext *avctx, struct AVFrame *frame);
202 * @param[in] frame AVFrame containing the input to be encoded
208 const struct AVFrame *frame, int *got_packet_ptr);
216 * Encode API with decoupled frame/packet dataflow.