Home
last modified time | relevance | path

Searched refs:sps_ (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/rtp_rtcp/source/
Dh264_bitstream_parser.cc102 sps_ = SpsState(); in ParseSpsNalu()
125 sps_.separate_colour_plane_flag = 0; in ParseSpsNalu()
137 sps_parser.ReadBits(&sps_.separate_colour_plane_flag, 1)); in ParseSpsNalu()
167 sps_parser.ReadExponentialGolomb(&sps_.log2_max_frame_num_minus4)); in ParseSpsNalu()
170 sps_parser.ReadExponentialGolomb(&sps_.pic_order_cnt_type)); in ParseSpsNalu()
172 if (sps_.pic_order_cnt_type == 0) { in ParseSpsNalu()
175 &sps_.log2_max_pic_order_cnt_lsb_minus4)); in ParseSpsNalu()
176 } else if (sps_.pic_order_cnt_type == 1) { in ParseSpsNalu()
179 sps_parser.ReadBits(&sps_.delta_pic_order_always_zero_flag, 1)); in ParseSpsNalu()
202 RETURN_FALSE_ON_FAIL(sps_parser.ReadBits(&sps_.frame_mbs_only_flag, 1)); in ParseSpsNalu()
[all …]
Dh264_sps_parser.cc25 : sps_(sps), byte_length_(byte_length), width_(), height_() { in H264SpsParser()
33 const char* sps_bytes = reinterpret_cast<const char*>(sps_); in Parse()
43 if (byte_length_ - i >= 3 && sps_[i] == 0 && sps_[i + 1] == 0 && in Parse()
44 sps_[i + 2] == 3) { in Parse()
Dh264_sps_parser.h29 const uint8_t* const sps_;
Dh264_bitstream_parser.h69 SpsState sps_; variable