OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/modules/video_coding/h264_sprop_parameter_sets.h" | 11 #include "webrtc/modules/video_coding/h264_sprop_parameter_sets.h" |
12 | 12 |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "webrtc/base/base64.h" | 16 #include "webrtc/base/base64.h" |
17 #include "webrtc/base/basictypes.h" | 17 #include "webrtc/base/basictypes.h" |
18 #include "webrtc/base/logging.h" | 18 #include "webrtc/base/logging.h" |
19 | 19 |
20 namespace { | 20 namespace { |
21 | 21 |
22 bool DecodeAndConvert(const std::string& base64, std::vector<uint8_t>* binary) { | 22 bool DecodeAndConvert(const std::string& base64, std::vector<uint8_t>* binary) { |
23 // TODO(johan): Directly decode to std::vector<uint8_t> when available. | 23 return rtc::Base64::DecodeFromArray(base64.data(), base64.size(), |
24 std::vector<char> tmp; | 24 rtc::Base64::DO_STRICT, binary, nullptr); |
25 if (!rtc::Base64::DecodeFromArray(base64.data(), base64.size(), | |
26 rtc::Base64::DO_STRICT, &tmp, nullptr)) { | |
27 return false; | |
28 } | |
29 const uint8_t* data = reinterpret_cast<uint8_t*>(tmp.data()); | |
30 binary->assign(data, data + tmp.size()); | |
31 return true; | |
32 } | 25 } |
33 } // namespace | 26 } // namespace |
34 | 27 |
35 namespace webrtc { | 28 namespace webrtc { |
36 | 29 |
37 bool H264SpropParameterSets::DecodeSprop(const std::string& sprop) { | 30 bool H264SpropParameterSets::DecodeSprop(const std::string& sprop) { |
38 size_t separator_pos = sprop.find(','); | 31 size_t separator_pos = sprop.find(','); |
39 if ((separator_pos <= 0) || (separator_pos >= sprop.length() - 1)) { | 32 if ((separator_pos <= 0) || (separator_pos >= sprop.length() - 1)) { |
40 LOG(LS_WARNING) << "Invalid seperator position " << separator_pos << " *" | 33 LOG(LS_WARNING) << "Invalid seperator position " << separator_pos << " *" |
41 << sprop << "*"; | 34 << sprop << "*"; |
42 return false; | 35 return false; |
43 } | 36 } |
44 std::string sps_str = sprop.substr(0, separator_pos); | 37 std::string sps_str = sprop.substr(0, separator_pos); |
45 std::string pps_str = sprop.substr(separator_pos + 1, std::string::npos); | 38 std::string pps_str = sprop.substr(separator_pos + 1, std::string::npos); |
46 if (!DecodeAndConvert(sps_str, &sps_)) { | 39 if (!DecodeAndConvert(sps_str, &sps_)) { |
47 LOG(LS_WARNING) << "Failed to decode sprop/sps *" << sprop << "*"; | 40 LOG(LS_WARNING) << "Failed to decode sprop/sps *" << sprop << "*"; |
48 return false; | 41 return false; |
49 } | 42 } |
50 if (!DecodeAndConvert(pps_str, &pps_)) { | 43 if (!DecodeAndConvert(pps_str, &pps_)) { |
51 LOG(LS_WARNING) << "Failed to decode sprop/pps *" << sprop << "*"; | 44 LOG(LS_WARNING) << "Failed to decode sprop/pps *" << sprop << "*"; |
52 return false; | 45 return false; |
53 } | 46 } |
54 return true; | 47 return true; |
55 } | 48 } |
56 | 49 |
57 } // namespace webrtc | 50 } // namespace webrtc |
OLD | NEW |