Lines Matching defs:frame
48 uint8_t *back_frame; ///< background frame
53 * Run Length Decode a single 320x200 frame
59 * @param video_base offset of the rle data inside the frame
73 /** copy start of the background frame */
84 /** decode the variable part of the frame */
116 /** copy the rest from the background frame */
166 /** decode background frame if present */
181 static int rl2_decode_frame(AVCodecContext *avctx, AVFrame *frame,
188 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
192 rl2_rle_decode(s, buf, buf_size, frame->data[0], frame->linesize[0],
196 memcpy(frame->data[1], s->palette, AVPALETTE_SIZE);