blob: a64f8885dac4e3334e65d38593be4fb4f92ef0cd [file] [log] [blame]
johanb0a11112016-12-08 03:57:17 -08001/*
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 06:47:31 +020011#include "modules/video_coding/h264_sprop_parameter_sets.h"
johanb0a11112016-12-08 03:57:17 -080012
Yves Gerey3e707812018-11-28 16:47:49 +010013#include <stddef.h>
14#include <stdint.h>
Jonas Olssona4d87372019-07-05 19:08:33 +020015
johanb0a11112016-12-08 03:57:17 -080016#include <string>
17#include <vector>
18
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "rtc_base/logging.h"
Artem Titova76af0c2018-07-23 17:38:12 +020020#include "rtc_base/third_party/base64/base64.h"
johanb0a11112016-12-08 03:57:17 -080021
22namespace {
23
24bool DecodeAndConvert(const std::string& base64, std::vector<uint8_t>* binary) {
johane2ec7c22016-12-14 06:08:33 -080025 return rtc::Base64::DecodeFromArray(base64.data(), base64.size(),
26 rtc::Base64::DO_STRICT, binary, nullptr);
johanb0a11112016-12-08 03:57:17 -080027}
28} // namespace
29
30namespace webrtc {
31
32bool H264SpropParameterSets::DecodeSprop(const std::string& sprop) {
33 size_t separator_pos = sprop.find(',');
Mirko Bonadei675513b2017-11-09 11:09:25 +010034 RTC_LOG(LS_INFO) << "Parsing sprop \"" << sprop << "\"";
johanb0a11112016-12-08 03:57:17 -080035 if ((separator_pos <= 0) || (separator_pos >= sprop.length() - 1)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010036 RTC_LOG(LS_WARNING) << "Invalid seperator position " << separator_pos
37 << " *" << sprop << "*";
johanb0a11112016-12-08 03:57:17 -080038 return false;
39 }
40 std::string sps_str = sprop.substr(0, separator_pos);
41 std::string pps_str = sprop.substr(separator_pos + 1, std::string::npos);
42 if (!DecodeAndConvert(sps_str, &sps_)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010043 RTC_LOG(LS_WARNING) << "Failed to decode sprop/sps *" << sprop << "*";
johanb0a11112016-12-08 03:57:17 -080044 return false;
45 }
46 if (!DecodeAndConvert(pps_str, &pps_)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010047 RTC_LOG(LS_WARNING) << "Failed to decode sprop/pps *" << sprop << "*";
johanb0a11112016-12-08 03:57:17 -080048 return false;
49 }
50 return true;
51}
52
53} // namespace webrtc