Lines Matching defs:seq

48 static int get_bit_depth_from_seq(const AV1RawSequenceHeader *seq)
50 if (seq->seq_profile == 2 && seq->color_config.high_bitdepth)
51 return seq->color_config.twelve_bit ? 12 : 10;
52 else if (seq->seq_profile <= 2 && seq->color_config.high_bitdepth)
62 const AV1RawSequenceHeader *seq = h->raw_seq;
74 pp->max_width = seq->max_frame_width_minus_1 + 1;
75 pp->max_height = seq->max_frame_height_minus_1 + 1;
79 pp->bitdepth = get_bit_depth_from_seq(seq);
80 pp->seq_profile = seq->seq_profile;
94 pp->coding.use_128x128_superblock = seq->use_128x128_superblock;
95 pp->coding.intra_edge_filter = seq->enable_intra_edge_filter;
96 pp->coding.interintra_compound = seq->enable_interintra_compound;
97 pp->coding.masked_compound = seq->enable_masked_compound;
99 pp->coding.dual_filter = seq->enable_dual_filter;
100 pp->coding.jnt_comp = seq->enable_jnt_comp;
103 pp->coding.cdef = seq->enable_cdef;
104 pp->coding.restoration = seq->enable_restoration;
105 pp->coding.film_grain = seq->film_grain_params_present && !(avctx->export_side_data & AV_CODEC_EXPORT_DATA_FILM_GRAIN);
109 pp->coding.filter_intra = seq->enable_filter_intra;
118 pp->coding.enable_ref_frame_mvs = seq->enable_ref_frame_mvs;
125 pp->format.subsampling_x = seq->color_config.subsampling_x;
126 pp->format.subsampling_y = seq->color_config.subsampling_y;
127 pp->format.mono_chrome = seq->color_config.mono_chrome;
132 pp->order_hint_bits = seq->enable_order_hint ? seq->order_hint_bits_minus_1 + 1 : 0;
230 pp->film_grain.matrix_coeff_is_identity = (seq->color_config.matrix_coefficients == AVCOL_SPC_RGB);