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