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