blob: 2346120116dfe04d804cb1cd0784c1e9a4ac7ce6 [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"
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"
philipel34852cf2016-11-03 11:03:0123
24namespace webrtc {
25namespace video_coding {
26
27namespace {
28const uint8_t start_code_h264[] = {0, 0, 0, 1};
29} // namespace
30
philipela75d12d2016-11-07 13:11:2831H264SpsPpsTracker::PacketAction H264SpsPpsTracker::CopyAndFixBitstream(
32 VCMPacket* packet) {
philipel34852cf2016-11-03 11:03:0133 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
philipel83c97da2017-06-21 14:22:4040 bool append_sps_pps = false;
41 auto sps = sps_data_.end();
42 auto pps = pps_data_.end();
43
philipel34852cf2016-11-03 11:03:0144 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: {
philipel6585f702017-03-17 13:12:3348 sps_data_[nalu.sps_id].width = packet->width;
49 sps_data_[nalu.sps_id].height = packet->height;
philipel34852cf2016-11-03 11:03:0150 break;
51 }
52 case H264::NaluType::kPps: {
philipel34852cf2016-11-03 11:03:0153 pps_data_[nalu.pps_id].sps_id = nalu.sps_id;
philipel34852cf2016-11-03 11:03:0154 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.
johan0d1b2b62017-01-10 12:21:3560 if (video_header.is_first_packet_in_frame) {
philipel34852cf2016-11-03 11:03:0161 if (nalu.pps_id == -1) {
62 LOG(LS_WARNING) << "No PPS id in IDR nalu.";
philipela75d12d2016-11-07 13:11:2863 return kRequestKeyframe;
philipel34852cf2016-11-03 11:03:0164 }
65
philipel83c97da2017-06-21 14:22:4066 pps = pps_data_.find(nalu.pps_id);
philipel34852cf2016-11-03 11:03:0167 if (pps == pps_data_.end()) {
68 LOG(LS_WARNING) << "No PPS with id << " << nalu.pps_id
69 << " received";
philipela75d12d2016-11-07 13:11:2870 return kRequestKeyframe;
philipel34852cf2016-11-03 11:03:0171 }
72
philipel83c97da2017-06-21 14:22:4073 sps = sps_data_.find(pps->second.sps_id);
philipel34852cf2016-11-03 11:03:0174 if (sps == sps_data_.end()) {
philipel83c97da2017-06-21 14:22:4075 LOG(LS_WARNING)
76 << "No SPS with id << " << pps->second.sps_id << " received";
philipela75d12d2016-11-07 13:11:2877 return kRequestKeyframe;
philipel34852cf2016-11-03 11:03:0178 }
79
philipel83c97da2017-06-21 14:22:4080 // 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 }
philipel34852cf2016-11-03 11:03:0193 }
philipel83c97da2017-06-21 14:22:4094 break;
philipel34852cf2016-11-03 11:03:0195 }
philipel83c97da2017-06-21 14:22:4096 default:
97 break;
philipel34852cf2016-11-03 11:03:0198 }
99 }
100
philipel83c97da2017-06-21 14:22:40101 RTC_CHECK(!append_sps_pps ||
102 (sps != sps_data_.end() && pps != pps_data_.end()));
philipel34852cf2016-11-03 11:03:01103
104 // Calculate how much space we need for the rest of the bitstream.
philipel83c97da2017-06-21 14:22:40105 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
philipel34852cf2016-11-03 11:03:01112 if (codec_header.packetization_type == kH264StapA) {
113 const uint8_t* nalu_ptr = data + 1;
114 while (nalu_ptr < data + data_size) {
johan0d1b2b62017-01-10 12:21:35115 RTC_DCHECK(video_header.is_first_packet_in_frame);
philipel34852cf2016-11-03 11:03:01116 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 {
johan0d1b2b62017-01-10 12:21:35126 if (video_header.is_first_packet_in_frame)
philipel34852cf2016-11-03 11:03:01127 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
philipel83c97da2017-06-21 14:22:40135 if (append_sps_pps) {
philipel34852cf2016-11-03 11:03:01136 // Insert SPS.
137 memcpy(insert_at, start_code_h264, sizeof(start_code_h264));
138 insert_at += sizeof(start_code_h264);
philipel83c97da2017-06-21 14:22:40139 memcpy(insert_at, sps->second.data.get(), sps->second.size);
140 insert_at += sps->second.size;
philipel34852cf2016-11-03 11:03:01141
142 // Insert PPS.
143 memcpy(insert_at, start_code_h264, sizeof(start_code_h264));
144 insert_at += sizeof(start_code_h264);
philipel83c97da2017-06-21 14:22:40145 memcpy(insert_at, pps->second.data.get(), pps->second.size);
146 insert_at += pps->second.size;
philipel34852cf2016-11-03 11:03:01147 }
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;
philipela75d12d2016-11-07 13:11:28163 return kDrop;
philipel34852cf2016-11-03 11:03:01164 }
165
166 memcpy(insert_at, nalu_ptr, segment_length);
167 insert_at += segment_length;
168 nalu_ptr += segment_length;
169 }
170 } else {
johan0d1b2b62017-01-10 12:21:35171 if (video_header.is_first_packet_in_frame) {
philipel34852cf2016-11-03 11:03:01172 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;
philipela75d12d2016-11-07 13:11:28180 return kInsert;
philipel34852cf2016-11-03 11:03:01181}
182
johand2b092f2017-01-24 10:38:17183void 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 }
philipel022b54e2016-12-20 12:15:59216
217 if (!parsed_pps || !parsed_sps) {
philipel022b54e2016-12-20 12:15:59218 return;
219 }
220
221 SpsInfo sps_info;
222 sps_info.size = sps.size();
philipel6585f702017-03-17 13:12:33223 sps_info.width = parsed_sps->width;
224 sps_info.height = parsed_sps->height;
philipel022b54e2016-12-20 12:15:59225 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);
johand2b092f2017-01-24 10:38:17237
238 LOG(LS_INFO) << "Inserted SPS id " << parsed_sps->id << " and PPS id "
239 << parsed_pps->id << " (referencing SPS " << parsed_pps->sps_id
240 << ")";
philipel022b54e2016-12-20 12:15:59241}
242
philipel34852cf2016-11-03 11:03:01243} // namespace video_coding
244} // namespace webrtc