Lines Matching refs:frame

418  * frame.
458 * This function initializes the loop filter boundary limits if the frame's
459 * quality index is different from the previous frame's.
627 /* not coded; copy this fragment from the prior frame */
807 /* fetch the mode coding scheme for this frame */
1639 * the frame. Much of this function is adapted directly from the original
1695 * have a frame number of 0. That means INTRA blocks can only predict
1696 * from other INTRA blocks. There are 2 golden frame coding types;
1712 /* there is a last DC predictor for each of the 3 frame types */
1834 * in this frame (it will be filtered in next iteration) */
1844 * in this frame (it will be filtered in the next row) */
1916 /* At the end of the frame, report INT_MAX instead of the height of
1917 * the frame. This makes the other threads' ff_thread_await_progress()
1947 * Wait for the reference frame of the current fragment.
2202 * previous or the golden frame */
2243 /* copy directly from the previous frame */
2271 /// Allocate tables for per-frame data in Vp3DecodeContext
2373 * in the first frame decode */
2562 // copy previous frame data
2591 static int vp3_decode_frame(AVCodecContext *avctx, AVFrame *frame,
2636 "Header packet passed to frame decoder, skipping\n");
2743 "vp3: first frame not a keyframe\n");
2820 /* output frame, offset as needed */
2821 if ((ret = av_frame_ref(frame, s->current_frame.f)) < 0)
2824 frame->crop_left = s->offset_x;
2825 frame->crop_right = avctx->coded_width - avctx->width - s->offset_x;
2826 frame->crop_top = s->offset_y;
2827 frame->crop_bottom = avctx->coded_height - avctx->height - s->offset_y;
2900 /* 3.2.0 aka alpha3 has the same frame orientation as original vp3
2928 "Invalid frame dimensions - w:%d h:%d x:%d y:%d (%dx%d).\n",