Decode h264 fmtp sprop-parameter-sets to binary.

BUG=webrtc:5948

Review-Url: https://codereview.webrtc.org/2544493005
Cr-Commit-Position: refs/heads/master@{#15474}
This commit is contained in:
johan 2016-12-08 03:57:17 -08:00 committed by Commit bot
parent c95d810417
commit b0a111108b
5 changed files with 141 additions and 0 deletions

View File

@ -495,6 +495,7 @@ if (rtc_include_tests) {
"video_coding/codecs/vp8/simulcast_unittest.h",
"video_coding/decoding_state_unittest.cc",
"video_coding/frame_buffer2_unittest.cc",
"video_coding/h264_sprop_parameter_sets_unittest.cc",
"video_coding/h264_sps_pps_tracker_unittest.cc",
"video_coding/histogram_unittest.cc",
"video_coding/include/mock/mock_vcm_callbacks.h",

View File

@ -29,6 +29,8 @@ rtc_static_library("video_coding") {
"generic_decoder.h",
"generic_encoder.cc",
"generic_encoder.h",
"h264_sprop_parameter_sets.cc",
"h264_sprop_parameter_sets.h",
"h264_sps_pps_tracker.cc",
"h264_sps_pps_tracker.h",
"histogram.cc",

View File

@ -0,0 +1,57 @@
/*
* Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "webrtc/modules/video_coding/h264_sprop_parameter_sets.h"
#include <string>
#include <vector>
#include "webrtc/base/base64.h"
#include "webrtc/base/basictypes.h"
#include "webrtc/base/logging.h"
namespace {
bool DecodeAndConvert(const std::string& base64, std::vector<uint8_t>* binary) {
// TODO(johan): Directly decode to std::vector<uint8_t> when available.
std::vector<char> tmp;
if (!rtc::Base64::DecodeFromArray(base64.data(), base64.size(),
rtc::Base64::DO_STRICT, &tmp, nullptr)) {
return false;
}
const uint8_t* data = reinterpret_cast<uint8_t*>(tmp.data());
binary->assign(data, data + tmp.size());
return true;
}
} // namespace
namespace webrtc {
bool H264SpropParameterSets::DecodeSprop(const std::string& sprop) {
size_t separator_pos = sprop.find(',');
if ((separator_pos <= 0) || (separator_pos >= sprop.length() - 1)) {
LOG(LS_WARNING) << "Invalid seperator position " << separator_pos << " *"
<< sprop << "*";
return false;
}
std::string sps_str = sprop.substr(0, separator_pos);
std::string pps_str = sprop.substr(separator_pos + 1, std::string::npos);
if (!DecodeAndConvert(sps_str, &sps_)) {
LOG(LS_WARNING) << "Failed to decode sprop/sps *" << sprop << "*";
return false;
}
if (!DecodeAndConvert(pps_str, &pps_)) {
LOG(LS_WARNING) << "Failed to decode sprop/pps *" << sprop << "*";
return false;
}
return true;
}
} // namespace webrtc

View File

@ -0,0 +1,36 @@
/*
* Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef WEBRTC_MODULES_VIDEO_CODING_H264_SPROP_PARAMETER_SETS_H_
#define WEBRTC_MODULES_VIDEO_CODING_H264_SPROP_PARAMETER_SETS_H_
#include <string>
#include <vector>
#include "webrtc/base/common.h"
namespace webrtc {
class H264SpropParameterSets {
public:
H264SpropParameterSets() {}
bool DecodeSprop(const std::string& sprop);
const std::vector<uint8_t>& sps_nalu() { return sps_; }
const std::vector<uint8_t>& pps_nalu() { return pps_; }
private:
std::vector<uint8_t> sps_;
std::vector<uint8_t> pps_;
RTC_DISALLOW_COPY_AND_ASSIGN(H264SpropParameterSets);
};
} // namespace webrtc
#endif // WEBRTC_MODULES_VIDEO_CODING_H264_SPROP_PARAMETER_SETS_H_

View File

@ -0,0 +1,45 @@
/*
* Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "webrtc/modules/video_coding/h264_sprop_parameter_sets.h"
#include <vector>
#include "webrtc/base/basictypes.h"
#include "webrtc/test/gtest.h"
namespace webrtc {
class H264SpropParameterSetsTest : public testing::Test {
public:
H264SpropParameterSets h264_sprop;
};
TEST_F(H264SpropParameterSetsTest, Base64DecodeSprop) {
// Example sprop string from https://tools.ietf.org/html/rfc3984 .
EXPECT_TRUE(h264_sprop.DecodeSprop("Z0IACpZTBYmI,aMljiA=="));
static const std::vector<uint8_t> raw_sps{0x67, 0x42, 0x00, 0x0A, 0x96,
0x53, 0x05, 0x89, 0x88};
static const std::vector<uint8_t> raw_pps{0x68, 0xC9, 0x63, 0x88};
EXPECT_EQ(raw_sps, h264_sprop.sps_nalu());
EXPECT_EQ(raw_pps, h264_sprop.pps_nalu());
}
TEST_F(H264SpropParameterSetsTest, InvalidData) {
EXPECT_FALSE(h264_sprop.DecodeSprop(","));
EXPECT_FALSE(h264_sprop.DecodeSprop(""));
EXPECT_FALSE(h264_sprop.DecodeSprop(",iA=="));
EXPECT_FALSE(h264_sprop.DecodeSprop("iA==,"));
EXPECT_TRUE(h264_sprop.DecodeSprop("iA==,iA=="));
EXPECT_FALSE(h264_sprop.DecodeSprop("--,--"));
EXPECT_FALSE(h264_sprop.DecodeSprop(",,"));
EXPECT_FALSE(h264_sprop.DecodeSprop("iA=="));
}
} // namespace webrtc