2020-08-14 16:58:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common_video/h264/pps_parser.h"
|
|
|
|
|
|
|
|
#include <cstdint>
|
2022-03-11 16:49:54 +00:00
|
|
|
#include <limits>
|
2020-08-14 16:58:22 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2022-03-11 16:49:54 +00:00
|
|
|
#include "absl/numeric/bits.h"
|
2020-08-14 16:58:22 +00:00
|
|
|
#include "common_video/h264/h264_common.h"
|
2022-03-11 16:49:54 +00:00
|
|
|
#include "rtc_base/bitstream_reader.h"
|
2020-08-14 16:58:22 +00:00
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
|
2022-03-11 16:49:54 +00:00
|
|
|
namespace webrtc {
|
2020-08-14 16:58:22 +00:00
|
|
|
namespace {
|
2022-03-11 16:49:54 +00:00
|
|
|
constexpr int kMaxPicInitQpDeltaValue = 25;
|
|
|
|
constexpr int kMinPicInitQpDeltaValue = -26;
|
2020-08-14 16:58:22 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// General note: this is based off the 02/2014 version of the H.264 standard.
|
|
|
|
// You can find it on this page:
|
|
|
|
// http://www.itu.int/rec/T-REC-H.264
|
|
|
|
|
|
|
|
absl::optional<PpsParser::PpsState> PpsParser::ParsePps(const uint8_t* data,
|
|
|
|
size_t length) {
|
|
|
|
// First, parse out rbsp, which is basically the source buffer minus emulation
|
|
|
|
// bytes (the last byte of a 0x00 0x00 0x03 sequence). RBSP is defined in
|
|
|
|
// section 7.3.1 of the H.264 standard.
|
2022-03-11 16:49:54 +00:00
|
|
|
return ParseInternal(H264::ParseRbsp(data, length));
|
2020-08-14 16:58:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool PpsParser::ParsePpsIds(const uint8_t* data,
|
|
|
|
size_t length,
|
|
|
|
uint32_t* pps_id,
|
|
|
|
uint32_t* sps_id) {
|
|
|
|
RTC_DCHECK(pps_id);
|
|
|
|
RTC_DCHECK(sps_id);
|
|
|
|
// First, parse out rbsp, which is basically the source buffer minus emulation
|
|
|
|
// bytes (the last byte of a 0x00 0x00 0x03 sequence). RBSP is defined in
|
|
|
|
// section 7.3.1 of the H.264 standard.
|
|
|
|
std::vector<uint8_t> unpacked_buffer = H264::ParseRbsp(data, length);
|
2022-03-11 16:49:54 +00:00
|
|
|
BitstreamReader reader(unpacked_buffer);
|
|
|
|
*pps_id = reader.ReadExponentialGolomb();
|
|
|
|
*sps_id = reader.ReadExponentialGolomb();
|
|
|
|
return reader.Ok();
|
2020-08-14 16:58:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
absl::optional<uint32_t> PpsParser::ParsePpsIdFromSlice(const uint8_t* data,
|
|
|
|
size_t length) {
|
|
|
|
std::vector<uint8_t> unpacked_buffer = H264::ParseRbsp(data, length);
|
2022-03-11 16:49:54 +00:00
|
|
|
BitstreamReader slice_reader(unpacked_buffer);
|
2020-08-14 16:58:22 +00:00
|
|
|
|
|
|
|
// first_mb_in_slice: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
slice_reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
// slice_type: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
slice_reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
// pic_parameter_set_id: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
uint32_t slice_pps_id = slice_reader.ReadExponentialGolomb();
|
|
|
|
if (!slice_reader.Ok()) {
|
2020-08-14 16:58:22 +00:00
|
|
|
return absl::nullopt;
|
2022-03-11 16:49:54 +00:00
|
|
|
}
|
2020-08-14 16:58:22 +00:00
|
|
|
return slice_pps_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
absl::optional<PpsParser::PpsState> PpsParser::ParseInternal(
|
2022-03-11 16:49:54 +00:00
|
|
|
rtc::ArrayView<const uint8_t> buffer) {
|
|
|
|
BitstreamReader reader(buffer);
|
2020-08-14 16:58:22 +00:00
|
|
|
PpsState pps;
|
2022-03-11 16:49:54 +00:00
|
|
|
pps.id = reader.ReadExponentialGolomb();
|
|
|
|
pps.sps_id = reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
|
|
|
|
// entropy_coding_mode_flag: u(1)
|
2022-03-11 16:49:54 +00:00
|
|
|
pps.entropy_coding_mode_flag = reader.Read<bool>();
|
2020-08-14 16:58:22 +00:00
|
|
|
// bottom_field_pic_order_in_frame_present_flag: u(1)
|
2022-03-11 16:49:54 +00:00
|
|
|
pps.bottom_field_pic_order_in_frame_present_flag = reader.Read<bool>();
|
2020-08-14 16:58:22 +00:00
|
|
|
|
|
|
|
// num_slice_groups_minus1: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
uint32_t num_slice_groups_minus1 = reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
if (num_slice_groups_minus1 > 0) {
|
|
|
|
// slice_group_map_type: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
uint32_t slice_group_map_type = reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
if (slice_group_map_type == 0) {
|
2022-03-11 16:49:54 +00:00
|
|
|
for (uint32_t i_group = 0;
|
|
|
|
i_group <= num_slice_groups_minus1 && reader.Ok(); ++i_group) {
|
2020-08-14 16:58:22 +00:00
|
|
|
// run_length_minus1[iGroup]: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
}
|
|
|
|
} else if (slice_group_map_type == 1) {
|
|
|
|
// TODO(sprang): Implement support for dispersed slice group map type.
|
|
|
|
// See 8.2.2.2 Specification for dispersed slice group map type.
|
|
|
|
} else if (slice_group_map_type == 2) {
|
2022-03-11 16:49:54 +00:00
|
|
|
for (uint32_t i_group = 0;
|
|
|
|
i_group <= num_slice_groups_minus1 && reader.Ok(); ++i_group) {
|
2020-08-14 16:58:22 +00:00
|
|
|
// top_left[iGroup]: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
// bottom_right[iGroup]: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
}
|
|
|
|
} else if (slice_group_map_type == 3 || slice_group_map_type == 4 ||
|
|
|
|
slice_group_map_type == 5) {
|
|
|
|
// slice_group_change_direction_flag: u(1)
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ConsumeBits(1);
|
2020-08-14 16:58:22 +00:00
|
|
|
// slice_group_change_rate_minus1: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
} else if (slice_group_map_type == 6) {
|
|
|
|
// pic_size_in_map_units_minus1: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
uint32_t pic_size_in_map_units = reader.ReadExponentialGolomb() + 1;
|
|
|
|
int slice_group_id_bits = 1 + absl::bit_width(num_slice_groups_minus1);
|
|
|
|
|
|
|
|
// slice_group_id: array of size pic_size_in_map_units, each element
|
|
|
|
// is represented by ceil(log2(num_slice_groups_minus1 + 1)) bits.
|
|
|
|
int64_t bits_to_consume =
|
|
|
|
int64_t{slice_group_id_bits} * pic_size_in_map_units;
|
|
|
|
if (!reader.Ok() || bits_to_consume > std::numeric_limits<int>::max()) {
|
|
|
|
return absl::nullopt;
|
2020-08-14 16:58:22 +00:00
|
|
|
}
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ConsumeBits(bits_to_consume);
|
2020-08-14 16:58:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// num_ref_idx_l0_default_active_minus1: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
// num_ref_idx_l1_default_active_minus1: ue(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
// weighted_pred_flag: u(1)
|
2022-03-11 16:49:54 +00:00
|
|
|
pps.weighted_pred_flag = reader.Read<bool>();
|
2020-08-14 16:58:22 +00:00
|
|
|
// weighted_bipred_idc: u(2)
|
2022-03-11 16:49:54 +00:00
|
|
|
pps.weighted_bipred_idc = reader.ReadBits(2);
|
2020-08-14 16:58:22 +00:00
|
|
|
|
|
|
|
// pic_init_qp_minus26: se(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
pps.pic_init_qp_minus26 = reader.ReadSignedExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
// Sanity-check parsed value
|
2022-03-11 16:49:54 +00:00
|
|
|
if (!reader.Ok() || pps.pic_init_qp_minus26 > kMaxPicInitQpDeltaValue ||
|
2020-08-14 16:58:22 +00:00
|
|
|
pps.pic_init_qp_minus26 < kMinPicInitQpDeltaValue) {
|
2022-03-11 16:49:54 +00:00
|
|
|
return absl::nullopt;
|
2020-08-14 16:58:22 +00:00
|
|
|
}
|
|
|
|
// pic_init_qs_minus26: se(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
// chroma_qp_index_offset: se(v)
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ReadExponentialGolomb();
|
2020-08-14 16:58:22 +00:00
|
|
|
// deblocking_filter_control_present_flag: u(1)
|
|
|
|
// constrained_intra_pred_flag: u(1)
|
2022-03-11 16:49:54 +00:00
|
|
|
reader.ConsumeBits(2);
|
2020-08-14 16:58:22 +00:00
|
|
|
// redundant_pic_cnt_present_flag: u(1)
|
2022-03-11 16:49:54 +00:00
|
|
|
pps.redundant_pic_cnt_present_flag = reader.ReadBit();
|
|
|
|
if (!reader.Ok()) {
|
|
|
|
return absl::nullopt;
|
|
|
|
}
|
2020-08-14 16:58:22 +00:00
|
|
|
|
|
|
|
return pps;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace webrtc
|