• Home
  • Raw
  • Download

Lines Matching full:current

20                                  VP9RawFrameHeader *current)  in FUNC()
32 VP9RawFrameHeader *current, int profile) in FUNC()
39 vp9->bit_depth = current->ten_or_twelve_bit ? 12 : 10; in FUNC()
45 if (current->color_space != VP9_CS_RGB) { in FUNC()
64 vp9->subsampling_x = current->subsampling_x; in FUNC()
65 vp9->subsampling_y = current->subsampling_y; in FUNC()
71 VP9RawFrameHeader *current) in FUNC()
79 vp9->frame_width = current->frame_width_minus_1 + 1; in FUNC()
80 vp9->frame_height = current->frame_height_minus_1 + 1; in FUNC()
91 VP9RawFrameHeader *current) in FUNC()
97 if (current->render_and_frame_size_different) { in FUNC()
106 VP9RawFrameHeader *current) in FUNC()
113 if (current->found_ref[i]) { in FUNC()
115 &vp9->ref[current->ref_frame_idx[i]]; in FUNC()
128 CHECK(FUNC(frame_size)(ctx, rw, current)); in FUNC()
135 CHECK(FUNC(render_size)(ctx, rw, current)); in FUNC()
141 VP9RawFrameHeader *current) in FUNC()
146 if (!current->is_filter_switchable) in FUNC()
153 VP9RawFrameHeader *current) in FUNC()
161 if (current->loop_filter_delta_enabled) { in FUNC()
163 if (current->loop_filter_delta_update) { in FUNC()
166 if (current->update_ref_delta[i]) in FUNC()
171 if (current->update_mode_delta[i]) in FUNC()
181 VP9RawFrameHeader *current) in FUNC()
195 VP9RawFrameHeader *current) in FUNC()
204 if (current->segmentation_enabled) { in FUNC()
206 if (current->segmentation_update_map) { in FUNC()
211 if (current->segmentation_temporal_update) in FUNC()
219 if (current->segmentation_update_data) { in FUNC()
224 if (current->feature_enabled[i][j] && in FUNC()
245 VP9RawFrameHeader *current) in FUNC()
266 VP9RawFrameHeader *current) in FUNC()
275 vp9->profile = (current->profile_high_bit << 1) + current->profile_low_bit; in FUNC()
280 if (current->show_existing_frame) { in FUNC()
292 if (current->frame_type == VP9_KEY_FRAME) { in FUNC()
293 CHECK(FUNC(frame_sync_code)(ctx, rw, current)); in FUNC()
294 CHECK(FUNC(color_config)(ctx, rw, current, vp9->profile)); in FUNC()
295 CHECK(FUNC(frame_size)(ctx, rw, current)); in FUNC()
296 CHECK(FUNC(render_size)(ctx, rw, current)); in FUNC()
301 if (current->show_frame == 0) in FUNC()
306 if (current->error_resilient_mode == 0) in FUNC()
311 if (current->intra_only == 1) { in FUNC()
312 CHECK(FUNC(frame_sync_code)(ctx, rw, current)); in FUNC()
315 CHECK(FUNC(color_config)(ctx, rw, current, vp9->profile)); in FUNC()
322 vp9->subsampling_x = current->subsampling_x; in FUNC()
323 vp9->subsampling_y = current->subsampling_y; in FUNC()
328 CHECK(FUNC(frame_size)(ctx, rw, current)); in FUNC()
329 CHECK(FUNC(render_size)(ctx, rw, current)); in FUNC()
339 CHECK(FUNC(frame_size_with_refs)(ctx, rw, current)); in FUNC()
341 CHECK(FUNC(interpolation_filter)(ctx, rw, current)); in FUNC()
345 if (current->error_resilient_mode == 0) { in FUNC()
355 CHECK(FUNC(loop_filter_params)(ctx, rw, current)); in FUNC()
356 CHECK(FUNC(quantization_params)(ctx, rw, current)); in FUNC()
357 CHECK(FUNC(segmentation_params)(ctx, rw, current)); in FUNC()
358 CHECK(FUNC(tile_info)(ctx, rw, current)); in FUNC()
363 if (current->refresh_frame_flags & (1 << i)) { in FUNC()
378 vp9->bit_depth, 1 << current->tile_cols_log2, in FUNC()
379 1 << current->tile_rows_log2); in FUNC()
394 VP9RawFrame *current) in FUNC()
400 CHECK(FUNC(uncompressed_header)(ctx, rw, &current->header)); in FUNC()
408 VP9RawSuperframeIndex *current) in FUNC()
418 for (i = 0; i <= current->frames_in_superframe_minus_1; i++) { in FUNC()
420 fle(8 * (current->bytes_per_framesize_minus_1 + 1), in FUNC()