Lines Matching refs:vp9
34 CodedBitstreamVP9Context *vp9 = ctx->priv_data; in FUNC() local
39 vp9->bit_depth = current->ten_or_twelve_bit ? 12 : 10; in FUNC()
41 vp9->bit_depth = 8; in FUNC()
64 vp9->subsampling_x = current->subsampling_x; in FUNC()
65 vp9->subsampling_y = current->subsampling_y; in FUNC()
73 CodedBitstreamVP9Context *vp9 = ctx->priv_data; in FUNC() local
79 vp9->frame_width = current->frame_width_minus_1 + 1; in FUNC()
80 vp9->frame_height = current->frame_height_minus_1 + 1; in FUNC()
82 vp9->mi_cols = (vp9->frame_width + 7) >> 3; in FUNC()
83 vp9->mi_rows = (vp9->frame_height + 7) >> 3; in FUNC()
84 vp9->sb64_cols = (vp9->mi_cols + 7) >> 3; in FUNC()
85 vp9->sb64_rows = (vp9->mi_rows + 7) >> 3; in FUNC()
108 CodedBitstreamVP9Context *vp9 = ctx->priv_data; in FUNC() local
115 &vp9->ref[current->ref_frame_idx[i]]; in FUNC()
117 vp9->frame_width = ref->frame_width; in FUNC()
118 vp9->frame_height = ref->frame_height; in FUNC()
120 vp9->subsampling_x = ref->subsampling_x; in FUNC()
121 vp9->subsampling_y = ref->subsampling_y; in FUNC()
122 vp9->bit_depth = ref->bit_depth; in FUNC()
130 vp9->mi_cols = (vp9->frame_width + 7) >> 3; in FUNC()
131 vp9->mi_rows = (vp9->frame_height + 7) >> 3; in FUNC()
132 vp9->sb64_cols = (vp9->mi_cols + 7) >> 3; in FUNC()
133 vp9->sb64_rows = (vp9->mi_rows + 7) >> 3; in FUNC()
247 CodedBitstreamVP9Context *vp9 = ctx->priv_data; in FUNC() local
252 while ((VP9_MAX_TILE_WIDTH_B64 << min_log2_tile_cols) < vp9->sb64_cols) in FUNC()
255 while ((vp9->sb64_cols >> (max_log2_tile_cols + 1)) >= VP9_MIN_TILE_WIDTH_B64) in FUNC()
268 CodedBitstreamVP9Context *vp9 = ctx->priv_data; in FUNC() local
275 vp9->profile = (current->profile_high_bit << 1) + current->profile_low_bit; in FUNC()
276 if (vp9->profile == 3) in FUNC()
294 CHECK(FUNC(color_config)(ctx, rw, current, vp9->profile)); in FUNC()
314 if (vp9->profile > 0) { in FUNC()
315 CHECK(FUNC(color_config)(ctx, rw, current, vp9->profile)); in FUNC()
320 vp9->bit_depth = 8; in FUNC()
322 vp9->subsampling_x = current->subsampling_x; in FUNC()
323 vp9->subsampling_y = current->subsampling_y; in FUNC()
364 vp9->ref[i] = (VP9ReferenceFrameState) { in FUNC()
365 .frame_width = vp9->frame_width, in FUNC()
366 .frame_height = vp9->frame_height, in FUNC()
367 .subsampling_x = vp9->subsampling_x, in FUNC()
368 .subsampling_y = vp9->subsampling_y, in FUNC()
369 .bit_depth = vp9->bit_depth, in FUNC()
376 vp9->frame_width, vp9->frame_height, in FUNC()
377 vp9->subsampling_x, vp9->subsampling_y, in FUNC()
378 vp9->bit_depth, 1 << current->tile_cols_log2, in FUNC()