philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 11 | #include "modules/video_coding/h264_sps_pps_tracker.h" |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 12 | |
| 13 | #include <string> |
philipel | 022b54e | 2016-12-20 12:15:59 | [diff] [blame] | 14 | #include <utility> |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 15 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 16 | #include "common_video/h264/h264_common.h" |
| 17 | #include "common_video/h264/pps_parser.h" |
| 18 | #include "common_video/h264/sps_parser.h" |
Rasmus Brandt | 88f080a | 2017-11-02 13:28:06 | [diff] [blame] | 19 | #include "modules/video_coding/codecs/h264/include/h264_globals.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 20 | #include "modules/video_coding/frame_object.h" |
| 21 | #include "modules/video_coding/packet_buffer.h" |
| 22 | #include "rtc_base/checks.h" |
| 23 | #include "rtc_base/logging.h" |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 24 | |
| 25 | namespace webrtc { |
| 26 | namespace video_coding { |
| 27 | |
| 28 | namespace { |
| 29 | const uint8_t start_code_h264[] = {0, 0, 0, 1}; |
| 30 | } // namespace |
| 31 | |
philipel | a75d12d | 2016-11-07 13:11:28 | [diff] [blame] | 32 | H264SpsPpsTracker::PacketAction H264SpsPpsTracker::CopyAndFixBitstream( |
| 33 | VCMPacket* packet) { |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 34 | RTC_DCHECK(packet->codec == kVideoCodecH264); |
| 35 | |
| 36 | const uint8_t* data = packet->dataPtr; |
| 37 | const size_t data_size = packet->sizeBytes; |
| 38 | const RTPVideoHeader& video_header = packet->video_header; |
philipel | 7d745e5 | 2018-08-02 12:03:53 | [diff] [blame^] | 39 | auto& h264_header = |
| 40 | absl::get<RTPVideoHeaderH264>(packet->video_header.video_type_header); |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 41 | |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 42 | bool append_sps_pps = false; |
| 43 | auto sps = sps_data_.end(); |
| 44 | auto pps = pps_data_.end(); |
| 45 | |
philipel | 7d745e5 | 2018-08-02 12:03:53 | [diff] [blame^] | 46 | for (size_t i = 0; i < h264_header.nalus_length; ++i) { |
| 47 | const NaluInfo& nalu = h264_header.nalus[i]; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 48 | switch (nalu.type) { |
| 49 | case H264::NaluType::kSps: { |
philipel | 6585f70 | 2017-03-17 13:12:33 | [diff] [blame] | 50 | sps_data_[nalu.sps_id].width = packet->width; |
| 51 | sps_data_[nalu.sps_id].height = packet->height; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 52 | break; |
| 53 | } |
| 54 | case H264::NaluType::kPps: { |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 55 | pps_data_[nalu.pps_id].sps_id = nalu.sps_id; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 56 | break; |
| 57 | } |
| 58 | case H264::NaluType::kIdr: { |
| 59 | // If this is the first packet of an IDR, make sure we have the required |
| 60 | // SPS/PPS and also calculate how much extra space we need in the buffer |
| 61 | // to prepend the SPS/PPS to the bitstream with start codes. |
johan | 0d1b2b6 | 2017-01-10 12:21:35 | [diff] [blame] | 62 | if (video_header.is_first_packet_in_frame) { |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 63 | if (nalu.pps_id == -1) { |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 64 | RTC_LOG(LS_WARNING) << "No PPS id in IDR nalu."; |
philipel | a75d12d | 2016-11-07 13:11:28 | [diff] [blame] | 65 | return kRequestKeyframe; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 66 | } |
| 67 | |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 68 | pps = pps_data_.find(nalu.pps_id); |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 69 | if (pps == pps_data_.end()) { |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 70 | RTC_LOG(LS_WARNING) |
| 71 | << "No PPS with id << " << nalu.pps_id << " received"; |
philipel | a75d12d | 2016-11-07 13:11:28 | [diff] [blame] | 72 | return kRequestKeyframe; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 73 | } |
| 74 | |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 75 | sps = sps_data_.find(pps->second.sps_id); |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 76 | if (sps == sps_data_.end()) { |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 77 | RTC_LOG(LS_WARNING) |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 78 | << "No SPS with id << " << pps->second.sps_id << " received"; |
philipel | a75d12d | 2016-11-07 13:11:28 | [diff] [blame] | 79 | return kRequestKeyframe; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 80 | } |
| 81 | |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 82 | // Since the first packet of every keyframe should have its width and |
| 83 | // height set we set it here in the case of it being supplied out of |
| 84 | // band. |
| 85 | packet->width = sps->second.width; |
| 86 | packet->height = sps->second.height; |
| 87 | |
| 88 | // If the SPS/PPS was supplied out of band then we will have saved |
| 89 | // the actual bitstream in |data|. |
| 90 | if (sps->second.data && pps->second.data) { |
| 91 | RTC_DCHECK_GT(sps->second.size, 0); |
| 92 | RTC_DCHECK_GT(pps->second.size, 0); |
| 93 | append_sps_pps = true; |
| 94 | } |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 95 | } |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 96 | break; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 97 | } |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 98 | default: |
| 99 | break; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 100 | } |
| 101 | } |
| 102 | |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 103 | RTC_CHECK(!append_sps_pps || |
| 104 | (sps != sps_data_.end() && pps != pps_data_.end())); |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 105 | |
| 106 | // Calculate how much space we need for the rest of the bitstream. |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 107 | size_t required_size = 0; |
| 108 | |
| 109 | if (append_sps_pps) { |
| 110 | required_size += sps->second.size + sizeof(start_code_h264); |
| 111 | required_size += pps->second.size + sizeof(start_code_h264); |
| 112 | } |
| 113 | |
philipel | 7d745e5 | 2018-08-02 12:03:53 | [diff] [blame^] | 114 | if (h264_header.packetization_type == kH264StapA) { |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 115 | const uint8_t* nalu_ptr = data + 1; |
| 116 | while (nalu_ptr < data + data_size) { |
johan | 0d1b2b6 | 2017-01-10 12:21:35 | [diff] [blame] | 117 | RTC_DCHECK(video_header.is_first_packet_in_frame); |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 118 | required_size += sizeof(start_code_h264); |
| 119 | |
| 120 | // The first two bytes describe the length of a segment. |
| 121 | uint16_t segment_length = nalu_ptr[0] << 8 | nalu_ptr[1]; |
| 122 | nalu_ptr += 2; |
| 123 | |
| 124 | required_size += segment_length; |
| 125 | nalu_ptr += segment_length; |
| 126 | } |
| 127 | } else { |
johan | 0d1b2b6 | 2017-01-10 12:21:35 | [diff] [blame] | 128 | if (video_header.is_first_packet_in_frame) |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 129 | required_size += sizeof(start_code_h264); |
| 130 | required_size += data_size; |
| 131 | } |
| 132 | |
| 133 | // Then we copy to the new buffer. |
| 134 | uint8_t* buffer = new uint8_t[required_size]; |
| 135 | uint8_t* insert_at = buffer; |
| 136 | |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 137 | if (append_sps_pps) { |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 138 | // Insert SPS. |
| 139 | memcpy(insert_at, start_code_h264, sizeof(start_code_h264)); |
| 140 | insert_at += sizeof(start_code_h264); |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 141 | memcpy(insert_at, sps->second.data.get(), sps->second.size); |
| 142 | insert_at += sps->second.size; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 143 | |
| 144 | // Insert PPS. |
| 145 | memcpy(insert_at, start_code_h264, sizeof(start_code_h264)); |
| 146 | insert_at += sizeof(start_code_h264); |
philipel | 83c97da | 2017-06-21 14:22:40 | [diff] [blame] | 147 | memcpy(insert_at, pps->second.data.get(), pps->second.size); |
| 148 | insert_at += pps->second.size; |
Rasmus Brandt | 88f080a | 2017-11-02 13:28:06 | [diff] [blame] | 149 | |
| 150 | // Update codec header to reflect the newly added SPS and PPS. |
| 151 | NaluInfo sps_info; |
| 152 | sps_info.type = H264::NaluType::kSps; |
| 153 | sps_info.sps_id = sps->first; |
| 154 | sps_info.pps_id = -1; |
| 155 | NaluInfo pps_info; |
| 156 | pps_info.type = H264::NaluType::kPps; |
| 157 | pps_info.sps_id = sps->first; |
| 158 | pps_info.pps_id = pps->first; |
philipel | 7d745e5 | 2018-08-02 12:03:53 | [diff] [blame^] | 159 | if (h264_header.nalus_length + 2 <= kMaxNalusPerPacket) { |
| 160 | h264_header.nalus[h264_header.nalus_length++] = sps_info; |
| 161 | h264_header.nalus[h264_header.nalus_length++] = pps_info; |
Rasmus Brandt | 88f080a | 2017-11-02 13:28:06 | [diff] [blame] | 162 | } else { |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 163 | RTC_LOG(LS_WARNING) << "Not enough space in H.264 codec header to insert " |
| 164 | "SPS/PPS provided out-of-band."; |
Rasmus Brandt | 88f080a | 2017-11-02 13:28:06 | [diff] [blame] | 165 | } |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | // Copy the rest of the bitstream and insert start codes. |
philipel | 7d745e5 | 2018-08-02 12:03:53 | [diff] [blame^] | 169 | if (h264_header.packetization_type == kH264StapA) { |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 170 | const uint8_t* nalu_ptr = data + 1; |
| 171 | while (nalu_ptr < data + data_size) { |
| 172 | memcpy(insert_at, start_code_h264, sizeof(start_code_h264)); |
| 173 | insert_at += sizeof(start_code_h264); |
| 174 | |
| 175 | // The first two bytes describe the length of a segment. |
| 176 | uint16_t segment_length = nalu_ptr[0] << 8 | nalu_ptr[1]; |
| 177 | nalu_ptr += 2; |
| 178 | |
| 179 | size_t copy_end = nalu_ptr - data + segment_length; |
| 180 | if (copy_end > data_size) { |
| 181 | delete[] buffer; |
philipel | a75d12d | 2016-11-07 13:11:28 | [diff] [blame] | 182 | return kDrop; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | memcpy(insert_at, nalu_ptr, segment_length); |
| 186 | insert_at += segment_length; |
| 187 | nalu_ptr += segment_length; |
| 188 | } |
| 189 | } else { |
johan | 0d1b2b6 | 2017-01-10 12:21:35 | [diff] [blame] | 190 | if (video_header.is_first_packet_in_frame) { |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 191 | memcpy(insert_at, start_code_h264, sizeof(start_code_h264)); |
| 192 | insert_at += sizeof(start_code_h264); |
| 193 | } |
| 194 | memcpy(insert_at, data, data_size); |
| 195 | } |
| 196 | |
| 197 | packet->dataPtr = buffer; |
| 198 | packet->sizeBytes = required_size; |
philipel | a75d12d | 2016-11-07 13:11:28 | [diff] [blame] | 199 | return kInsert; |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 200 | } |
| 201 | |
johan | d2b092f | 2017-01-24 10:38:17 | [diff] [blame] | 202 | void H264SpsPpsTracker::InsertSpsPpsNalus(const std::vector<uint8_t>& sps, |
| 203 | const std::vector<uint8_t>& pps) { |
| 204 | constexpr size_t kNaluHeaderOffset = 1; |
| 205 | if (sps.size() < kNaluHeaderOffset) { |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 206 | RTC_LOG(LS_WARNING) << "SPS size " << sps.size() << " is smaller than " |
| 207 | << kNaluHeaderOffset; |
johan | d2b092f | 2017-01-24 10:38:17 | [diff] [blame] | 208 | return; |
| 209 | } |
| 210 | if ((sps[0] & 0x1f) != H264::NaluType::kSps) { |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 211 | RTC_LOG(LS_WARNING) << "SPS Nalu header missing"; |
johan | d2b092f | 2017-01-24 10:38:17 | [diff] [blame] | 212 | return; |
| 213 | } |
| 214 | if (pps.size() < kNaluHeaderOffset) { |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 215 | RTC_LOG(LS_WARNING) << "PPS size " << pps.size() << " is smaller than " |
| 216 | << kNaluHeaderOffset; |
johan | d2b092f | 2017-01-24 10:38:17 | [diff] [blame] | 217 | return; |
| 218 | } |
| 219 | if ((pps[0] & 0x1f) != H264::NaluType::kPps) { |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 220 | RTC_LOG(LS_WARNING) << "SPS Nalu header missing"; |
johan | d2b092f | 2017-01-24 10:38:17 | [diff] [blame] | 221 | return; |
| 222 | } |
Danil Chapovalov | 0040b66 | 2018-06-18 08:48:16 | [diff] [blame] | 223 | absl::optional<SpsParser::SpsState> parsed_sps = SpsParser::ParseSps( |
johan | d2b092f | 2017-01-24 10:38:17 | [diff] [blame] | 224 | sps.data() + kNaluHeaderOffset, sps.size() - kNaluHeaderOffset); |
Danil Chapovalov | 0040b66 | 2018-06-18 08:48:16 | [diff] [blame] | 225 | absl::optional<PpsParser::PpsState> parsed_pps = PpsParser::ParsePps( |
johan | d2b092f | 2017-01-24 10:38:17 | [diff] [blame] | 226 | pps.data() + kNaluHeaderOffset, pps.size() - kNaluHeaderOffset); |
| 227 | |
| 228 | if (!parsed_sps) { |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 229 | RTC_LOG(LS_WARNING) << "Failed to parse SPS."; |
johan | d2b092f | 2017-01-24 10:38:17 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | if (!parsed_pps) { |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 233 | RTC_LOG(LS_WARNING) << "Failed to parse PPS."; |
johan | d2b092f | 2017-01-24 10:38:17 | [diff] [blame] | 234 | } |
philipel | 022b54e | 2016-12-20 12:15:59 | [diff] [blame] | 235 | |
| 236 | if (!parsed_pps || !parsed_sps) { |
philipel | 022b54e | 2016-12-20 12:15:59 | [diff] [blame] | 237 | return; |
| 238 | } |
| 239 | |
| 240 | SpsInfo sps_info; |
| 241 | sps_info.size = sps.size(); |
philipel | 6585f70 | 2017-03-17 13:12:33 | [diff] [blame] | 242 | sps_info.width = parsed_sps->width; |
| 243 | sps_info.height = parsed_sps->height; |
philipel | 022b54e | 2016-12-20 12:15:59 | [diff] [blame] | 244 | uint8_t* sps_data = new uint8_t[sps_info.size]; |
| 245 | memcpy(sps_data, sps.data(), sps_info.size); |
| 246 | sps_info.data.reset(sps_data); |
| 247 | sps_data_[parsed_sps->id] = std::move(sps_info); |
| 248 | |
| 249 | PpsInfo pps_info; |
| 250 | pps_info.size = pps.size(); |
| 251 | pps_info.sps_id = parsed_pps->sps_id; |
| 252 | uint8_t* pps_data = new uint8_t[pps_info.size]; |
| 253 | memcpy(pps_data, pps.data(), pps_info.size); |
| 254 | pps_info.data.reset(pps_data); |
| 255 | pps_data_[parsed_pps->id] = std::move(pps_info); |
johan | d2b092f | 2017-01-24 10:38:17 | [diff] [blame] | 256 | |
Mirko Bonadei | 675513b | 2017-11-09 10:09:25 | [diff] [blame] | 257 | RTC_LOG(LS_INFO) << "Inserted SPS id " << parsed_sps->id << " and PPS id " |
| 258 | << parsed_pps->id << " (referencing SPS " |
| 259 | << parsed_pps->sps_id << ")"; |
philipel | 022b54e | 2016-12-20 12:15:59 | [diff] [blame] | 260 | } |
| 261 | |
philipel | 34852cf | 2016-11-03 11:03:01 | [diff] [blame] | 262 | } // namespace video_coding |
| 263 | } // namespace webrtc |