Lines Matching refs:get_bits
36 #include "get_bits.h"
84 h->pic_struct = get_bits(&gb, 4);
93 if (get_bits(&gb, 1)) { /* clock_timestamp_flag */
97 h->ct_type |= 1 << get_bits(&gb, 2);
99 counting_type = get_bits(&gb, 5); /* counting_type */
100 full_timestamp_flag = get_bits(&gb, 1);
102 cnt_dropped_flag = get_bits(&gb, 1); /* cnt_dropped_flag */
105 tc->frame = get_bits(&gb, 8); /* n_frames */
108 tc->seconds = get_bits(&gb, 6); /* seconds_value 0..59 */
109 tc->minutes = get_bits(&gb, 6); /* minutes_value 0..59 */
110 tc->hours = get_bits(&gb, 5); /* hours_value 0..23 */
113 if (get_bits(&gb, 1)) { /* seconds_flag */
114 tc->seconds = get_bits(&gb, 6);
115 if (get_bits(&gb, 1)) { /* minutes_flag */
116 tc->minutes = get_bits(&gb, 6);
117 if (get_bits(&gb, 1)) /* hours_flag */
118 tc->hours = get_bits(&gb, 5);
166 flag = get_bits(gb, 1); // active_format_flag
173 h->active_format_description = get_bits(gb, 4);
199 country_code = get_bits(gb, 8); // itu_t_t35_country_code
216 provider_code = get_bits(gb, 16);
272 user_data[i] = get_bits(gb, 8);
350 h->arrangement_type = get_bits(gb, 7);
352 h->content_interpretation_type = get_bits(gb, 6);
379 h->anticlockwise_rotation = get_bits(gb, 16);
389 h->green_metadata_type = get_bits(gb, 8);
392 h->period_type = get_bits(gb, 8);
395 h->num_seconds = get_bits(gb, 16);
397 h->num_pictures = get_bits(gb, 16);
399 h->percent_non_zero_macroblocks = get_bits(gb, 8);
400 h->percent_intra_coded_macroblocks = get_bits(gb, 8);
401 h->percent_six_tap_filtering = get_bits(gb, 8);
402 h->percent_alpha_point_deblocking_instance = get_bits(gb, 8);
405 h->xsd_metric_type = get_bits(gb, 8);
406 h->xsd_metric_value = get_bits(gb, 16);
416 h->preferred_transfer_characteristics = get_bits(gb, 8);
427 h->model_id = get_bits(gb, 2);
430 h->bit_depth_luma = get_bits(gb, 3) + 8;
431 h->bit_depth_chroma = get_bits(gb, 3) + 8;
433 h->color_primaries = get_bits(gb, 8);
434 h->transfer_characteristics = get_bits(gb, 8);
435 h->matrix_coeffs = get_bits(gb, 8);
437 h->blending_mode_id = get_bits(gb, 2);
438 h->log2_scale_factor = get_bits(gb, 4);
443 h->num_intensity_intervals[c] = get_bits(gb, 8) + 1;
444 h->num_model_values[c] = get_bits(gb, 3) + 1;
448 h->intensity_interval_lower_bound[c][i] = get_bits(gb, 8);
449 h->intensity_interval_upper_bound[c][i] = get_bits(gb, 8);
478 } while (get_bits(gb, 8) == 255);
484 } while (get_bits(gb, 8) == 255);