Home
last modified time | relevance | path

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

/external/webrtc/common_video/h264/
Dh264_bitstream_parser.cc46 if (!sps_ || !pps_) in ParseNonParameterSetNalu()
101 if (pps_->bottom_field_pic_order_in_frame_present_flag && in ParseNonParameterSetNalu()
111 if (pps_->bottom_field_pic_order_in_frame_present_flag && !field_pic_flag) { in ParseNonParameterSetNalu()
116 if (pps_->redundant_pic_cnt_present_flag) { in ParseNonParameterSetNalu()
203 if ((pps_->weighted_pred_flag && (slice_type == H264::SliceType::kP || in ParseNonParameterSetNalu()
205 (pps_->weighted_bipred_idc == 1 && slice_type == H264::SliceType::kB)) { in ParseNonParameterSetNalu()
252 if (pps_->entropy_coding_mode_flag && slice_type != H264::SliceType::kI && in ParseNonParameterSetNalu()
282 pps_ = PpsParser::ParsePps(slice + H264::kNaluTypeSize, in ParseSlice()
284 if (!pps_) in ParseSlice()
308 if (!last_slice_qp_delta_ || !pps_) in GetLastSliceQp()
[all …]
Dh264_bitstream_parser.h55 absl::optional<PpsParser::PpsState> pps_; variable
/external/webrtc/modules/video_coding/
Dh264_sprop_parameter_sets.h27 const std::vector<uint8_t>& pps_nalu() { return pps_; } in pps_nalu()
31 std::vector<uint8_t> pps_; variable
Dh264_sprop_parameter_sets.cc46 if (!DecodeAndConvert(pps_str, &pps_)) { in DecodeSprop()