blob: d67d827b081d5cc38e8abd44c977da3ab462f556 [file] [log] [blame]
philipel34852cf2016-11-03 11:03:011/*
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 Bonadei92ea95e2017-09-15 04:47:3111#include "modules/video_coding/h264_sps_pps_tracker.h"
philipel34852cf2016-11-03 11:03:0112
13#include <string>
philipel022b54e2016-12-20 12:15:5914#include <utility>
philipel34852cf2016-11-03 11:03:0115
Mirko Bonadei92ea95e2017-09-15 04:47:3116#include "common_video/h264/h264_common.h"
17#include "common_video/h264/pps_parser.h"
18#include "common_video/h264/sps_parser.h"
Rasmus Brandt88f080a2017-11-02 13:28:0619#include "modules/video_coding/codecs/h264/include/h264_globals.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3120#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"
philipel34852cf2016-11-03 11:03:0124
25namespace webrtc {
26namespace video_coding {
27
28namespace {
29const uint8_t start_code_h264[] = {0, 0, 0, 1};
30} // namespace
31
philipela75d12d2016-11-07 13:11:2832H264SpsPpsTracker::PacketAction H264SpsPpsTracker::CopyAndFixBitstream(
33 VCMPacket* packet) {
philipel34852cf2016-11-03 11:03:0134 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;
philipel7d745e52018-08-02 12:03:5339 auto& h264_header =
40 absl::get<RTPVideoHeaderH264>(packet->video_header.video_type_header);
philipel34852cf2016-11-03 11:03:0141
philipel83c97da2017-06-21 14:22:4042 bool append_sps_pps = false;
43 auto sps = sps_data_.end();
44 auto pps = pps_data_.end();
45
philipel7d745e52018-08-02 12:03:5346 for (size_t i = 0; i < h264_header.nalus_length; ++i) {
47 const NaluInfo& nalu = h264_header.nalus[i];
philipel34852cf2016-11-03 11:03:0148 switch (nalu.type) {
49 case H264::NaluType::kSps: {
philipel6585f702017-03-17 13:12:3350 sps_data_[nalu.sps_id].width = packet->width;
51 sps_data_[nalu.sps_id].height = packet->height;
philipel34852cf2016-11-03 11:03:0152 break;
53 }
54 case H264::NaluType::kPps: {
philipel34852cf2016-11-03 11:03:0155 pps_data_[nalu.pps_id].sps_id = nalu.sps_id;
philipel34852cf2016-11-03 11:03:0156 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.
johan0d1b2b62017-01-10 12:21:3562 if (video_header.is_first_packet_in_frame) {
philipel34852cf2016-11-03 11:03:0163 if (nalu.pps_id == -1) {
Mirko Bonadei675513b2017-11-09 10:09:2564 RTC_LOG(LS_WARNING) << "No PPS id in IDR nalu.";
philipela75d12d2016-11-07 13:11:2865 return kRequestKeyframe;
philipel34852cf2016-11-03 11:03:0166 }
67
philipel83c97da2017-06-21 14:22:4068 pps = pps_data_.find(nalu.pps_id);
philipel34852cf2016-11-03 11:03:0169 if (pps == pps_data_.end()) {
Mirko Bonadei675513b2017-11-09 10:09:2570 RTC_LOG(LS_WARNING)
71 << "No PPS with id << " << nalu.pps_id << " received";
philipela75d12d2016-11-07 13:11:2872 return kRequestKeyframe;
philipel34852cf2016-11-03 11:03:0173 }
74
philipel83c97da2017-06-21 14:22:4075 sps = sps_data_.find(pps->second.sps_id);
philipel34852cf2016-11-03 11:03:0176 if (sps == sps_data_.end()) {
Mirko Bonadei675513b2017-11-09 10:09:2577 RTC_LOG(LS_WARNING)
philipel83c97da2017-06-21 14:22:4078 << "No SPS with id << " << pps->second.sps_id << " received";
philipela75d12d2016-11-07 13:11:2879 return kRequestKeyframe;
philipel34852cf2016-11-03 11:03:0180 }
81
philipel83c97da2017-06-21 14:22:4082 // 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 }
philipel34852cf2016-11-03 11:03:0195 }
philipel83c97da2017-06-21 14:22:4096 break;
philipel34852cf2016-11-03 11:03:0197 }
philipel83c97da2017-06-21 14:22:4098 default:
99 break;
philipel34852cf2016-11-03 11:03:01100 }
101 }
102
philipel83c97da2017-06-21 14:22:40103 RTC_CHECK(!append_sps_pps ||
104 (sps != sps_data_.end() && pps != pps_data_.end()));
philipel34852cf2016-11-03 11:03:01105
106 // Calculate how much space we need for the rest of the bitstream.
philipel83c97da2017-06-21 14:22:40107 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
philipel7d745e52018-08-02 12:03:53114 if (h264_header.packetization_type == kH264StapA) {
philipel34852cf2016-11-03 11:03:01115 const uint8_t* nalu_ptr = data + 1;
116 while (nalu_ptr < data + data_size) {
johan0d1b2b62017-01-10 12:21:35117 RTC_DCHECK(video_header.is_first_packet_in_frame);
philipel34852cf2016-11-03 11:03:01118 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 {
johan0d1b2b62017-01-10 12:21:35128 if (video_header.is_first_packet_in_frame)
philipel34852cf2016-11-03 11:03:01129 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
philipel83c97da2017-06-21 14:22:40137 if (append_sps_pps) {
philipel34852cf2016-11-03 11:03:01138 // Insert SPS.
139 memcpy(insert_at, start_code_h264, sizeof(start_code_h264));
140 insert_at += sizeof(start_code_h264);
philipel83c97da2017-06-21 14:22:40141 memcpy(insert_at, sps->second.data.get(), sps->second.size);
142 insert_at += sps->second.size;
philipel34852cf2016-11-03 11:03:01143
144 // Insert PPS.
145 memcpy(insert_at, start_code_h264, sizeof(start_code_h264));
146 insert_at += sizeof(start_code_h264);
philipel83c97da2017-06-21 14:22:40147 memcpy(insert_at, pps->second.data.get(), pps->second.size);
148 insert_at += pps->second.size;
Rasmus Brandt88f080a2017-11-02 13:28:06149
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;
philipel7d745e52018-08-02 12:03:53159 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 Brandt88f080a2017-11-02 13:28:06162 } else {
Mirko Bonadei675513b2017-11-09 10:09:25163 RTC_LOG(LS_WARNING) << "Not enough space in H.264 codec header to insert "
164 "SPS/PPS provided out-of-band.";
Rasmus Brandt88f080a2017-11-02 13:28:06165 }
philipel34852cf2016-11-03 11:03:01166 }
167
168 // Copy the rest of the bitstream and insert start codes.
philipel7d745e52018-08-02 12:03:53169 if (h264_header.packetization_type == kH264StapA) {
philipel34852cf2016-11-03 11:03:01170 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;
philipela75d12d2016-11-07 13:11:28182 return kDrop;
philipel34852cf2016-11-03 11:03:01183 }
184
185 memcpy(insert_at, nalu_ptr, segment_length);
186 insert_at += segment_length;
187 nalu_ptr += segment_length;
188 }
189 } else {
johan0d1b2b62017-01-10 12:21:35190 if (video_header.is_first_packet_in_frame) {
philipel34852cf2016-11-03 11:03:01191 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;
philipela75d12d2016-11-07 13:11:28199 return kInsert;
philipel34852cf2016-11-03 11:03:01200}
201
johand2b092f2017-01-24 10:38:17202void 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 Bonadei675513b2017-11-09 10:09:25206 RTC_LOG(LS_WARNING) << "SPS size " << sps.size() << " is smaller than "
207 << kNaluHeaderOffset;
johand2b092f2017-01-24 10:38:17208 return;
209 }
210 if ((sps[0] & 0x1f) != H264::NaluType::kSps) {
Mirko Bonadei675513b2017-11-09 10:09:25211 RTC_LOG(LS_WARNING) << "SPS Nalu header missing";
johand2b092f2017-01-24 10:38:17212 return;
213 }
214 if (pps.size() < kNaluHeaderOffset) {
Mirko Bonadei675513b2017-11-09 10:09:25215 RTC_LOG(LS_WARNING) << "PPS size " << pps.size() << " is smaller than "
216 << kNaluHeaderOffset;
johand2b092f2017-01-24 10:38:17217 return;
218 }
219 if ((pps[0] & 0x1f) != H264::NaluType::kPps) {
Mirko Bonadei675513b2017-11-09 10:09:25220 RTC_LOG(LS_WARNING) << "SPS Nalu header missing";
johand2b092f2017-01-24 10:38:17221 return;
222 }
Danil Chapovalov0040b662018-06-18 08:48:16223 absl::optional<SpsParser::SpsState> parsed_sps = SpsParser::ParseSps(
johand2b092f2017-01-24 10:38:17224 sps.data() + kNaluHeaderOffset, sps.size() - kNaluHeaderOffset);
Danil Chapovalov0040b662018-06-18 08:48:16225 absl::optional<PpsParser::PpsState> parsed_pps = PpsParser::ParsePps(
johand2b092f2017-01-24 10:38:17226 pps.data() + kNaluHeaderOffset, pps.size() - kNaluHeaderOffset);
227
228 if (!parsed_sps) {
Mirko Bonadei675513b2017-11-09 10:09:25229 RTC_LOG(LS_WARNING) << "Failed to parse SPS.";
johand2b092f2017-01-24 10:38:17230 }
231
232 if (!parsed_pps) {
Mirko Bonadei675513b2017-11-09 10:09:25233 RTC_LOG(LS_WARNING) << "Failed to parse PPS.";
johand2b092f2017-01-24 10:38:17234 }
philipel022b54e2016-12-20 12:15:59235
236 if (!parsed_pps || !parsed_sps) {
philipel022b54e2016-12-20 12:15:59237 return;
238 }
239
240 SpsInfo sps_info;
241 sps_info.size = sps.size();
philipel6585f702017-03-17 13:12:33242 sps_info.width = parsed_sps->width;
243 sps_info.height = parsed_sps->height;
philipel022b54e2016-12-20 12:15:59244 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);
johand2b092f2017-01-24 10:38:17256
Mirko Bonadei675513b2017-11-09 10:09:25257 RTC_LOG(LS_INFO) << "Inserted SPS id " << parsed_sps->id << " and PPS id "
258 << parsed_pps->id << " (referencing SPS "
259 << parsed_pps->sps_id << ")";
philipel022b54e2016-12-20 12:15:59260}
261
philipel34852cf2016-11-03 11:03:01262} // namespace video_coding
263} // namespace webrtc