blob: c5451030b3e03637680af46c1c8672ca652f1a38 [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
11#include "webrtc/modules/video_coding/h264_sprop_parameter_sets.h"
12
13#include <string>
14#include <vector>
15
Edward Lemurc20978e2017-07-06 19:44:34 +020016#include "webrtc/rtc_base/base64.h"
17#include "webrtc/rtc_base/basictypes.h"
18#include "webrtc/rtc_base/logging.h"
johanb0a11112016-12-08 03:57:17 -080019
20namespace {
21
22bool DecodeAndConvert(const std::string& base64, std::vector<uint8_t>* binary) {
johane2ec7c22016-12-14 06:08:33 -080023 return rtc::Base64::DecodeFromArray(base64.data(), base64.size(),
24 rtc::Base64::DO_STRICT, binary, nullptr);
johanb0a11112016-12-08 03:57:17 -080025}
26} // namespace
27
28namespace webrtc {
29
30bool H264SpropParameterSets::DecodeSprop(const std::string& sprop) {
31 size_t separator_pos = sprop.find(',');
johan62d02c32017-01-24 04:38:27 -080032 LOG(LS_INFO) << "Parsing sprop \"" << sprop << "\"";
johanb0a11112016-12-08 03:57:17 -080033 if ((separator_pos <= 0) || (separator_pos >= sprop.length() - 1)) {
34 LOG(LS_WARNING) << "Invalid seperator position " << separator_pos << " *"
35 << sprop << "*";
36 return false;
37 }
38 std::string sps_str = sprop.substr(0, separator_pos);
39 std::string pps_str = sprop.substr(separator_pos + 1, std::string::npos);
40 if (!DecodeAndConvert(sps_str, &sps_)) {
41 LOG(LS_WARNING) << "Failed to decode sprop/sps *" << sprop << "*";
42 return false;
43 }
44 if (!DecodeAndConvert(pps_str, &pps_)) {
45 LOG(LS_WARNING) << "Failed to decode sprop/pps *" << sprop << "*";
46 return false;
47 }
48 return true;
49}
50
51} // namespace webrtc