mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-19 00:27:51 +01:00

- Defines stereo codec case, similar to RTX, that adds stereo codec to the SDP negotiation. The underlying codec's payload type is similarly defined by "apt". - If this negotiation is successful, codec name is included in sdp line via "acn". - Adds codec setting initializers for these specific stereo cases. - Introduces new Stereo*Factory classes as optional convenience wrappers that inserts stereo codec to the existing set of supported codecs on demand. This CL is the step 5 for adding alpha channel support over the wire in webrtc. Design Doc: https://goo.gl/sFeSUT Bug: webrtc:7671 Change-Id: Ie12c56c8fcf7934e216135d73af33adec5248f76 Reviewed-on: https://webrtc-review.googlesource.com/22901 Commit-Queue: Niklas Enbom <niklas.enbom@webrtc.org> Reviewed-by: Niklas Enbom <niklas.enbom@webrtc.org> Reviewed-by: Magnus Jedvert <magjed@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21210}
215 lines
8.2 KiB
C++
215 lines
8.2 KiB
C++
/*
|
|
* Copyright (c) 2017 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 "modules/video_coding/codecs/stereo/include/stereo_decoder_adapter.h"
|
|
|
|
#include "api/video/i420_buffer.h"
|
|
#include "api/video/video_frame_buffer.h"
|
|
#include "common_video/include/video_frame.h"
|
|
#include "common_video/include/video_frame_buffer.h"
|
|
#include "common_video/libyuv/include/webrtc_libyuv.h"
|
|
#include "rtc_base/keep_ref_until_done.h"
|
|
#include "rtc_base/logging.h"
|
|
|
|
namespace {
|
|
void KeepBufferRefs(rtc::scoped_refptr<webrtc::VideoFrameBuffer>,
|
|
rtc::scoped_refptr<webrtc::VideoFrameBuffer>) {}
|
|
} // anonymous namespace
|
|
|
|
namespace webrtc {
|
|
|
|
class StereoDecoderAdapter::AdapterDecodedImageCallback
|
|
: public webrtc::DecodedImageCallback {
|
|
public:
|
|
AdapterDecodedImageCallback(webrtc::StereoDecoderAdapter* adapter,
|
|
AlphaCodecStream stream_idx)
|
|
: adapter_(adapter), stream_idx_(stream_idx) {}
|
|
|
|
void Decoded(VideoFrame& decoded_image,
|
|
rtc::Optional<int32_t> decode_time_ms,
|
|
rtc::Optional<uint8_t> qp) override {
|
|
if (!adapter_)
|
|
return;
|
|
adapter_->Decoded(stream_idx_, &decoded_image, decode_time_ms, qp);
|
|
}
|
|
int32_t Decoded(VideoFrame& decoded_image) override {
|
|
RTC_NOTREACHED();
|
|
return WEBRTC_VIDEO_CODEC_OK;
|
|
}
|
|
int32_t Decoded(VideoFrame& decoded_image, int64_t decode_time_ms) override {
|
|
RTC_NOTREACHED();
|
|
return WEBRTC_VIDEO_CODEC_OK;
|
|
}
|
|
|
|
private:
|
|
StereoDecoderAdapter* adapter_;
|
|
const AlphaCodecStream stream_idx_;
|
|
};
|
|
|
|
struct StereoDecoderAdapter::DecodedImageData {
|
|
explicit DecodedImageData(AlphaCodecStream stream_idx)
|
|
: stream_idx_(stream_idx),
|
|
decoded_image_(I420Buffer::Create(1 /* width */, 1 /* height */),
|
|
0,
|
|
0,
|
|
kVideoRotation_0) {
|
|
RTC_DCHECK_EQ(kAXXStream, stream_idx);
|
|
}
|
|
DecodedImageData(AlphaCodecStream stream_idx,
|
|
const VideoFrame& decoded_image,
|
|
const rtc::Optional<int32_t>& decode_time_ms,
|
|
const rtc::Optional<uint8_t>& qp)
|
|
: stream_idx_(stream_idx),
|
|
decoded_image_(decoded_image),
|
|
decode_time_ms_(decode_time_ms),
|
|
qp_(qp) {}
|
|
const AlphaCodecStream stream_idx_;
|
|
VideoFrame decoded_image_;
|
|
const rtc::Optional<int32_t> decode_time_ms_;
|
|
const rtc::Optional<uint8_t> qp_;
|
|
|
|
private:
|
|
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(DecodedImageData);
|
|
};
|
|
|
|
StereoDecoderAdapter::StereoDecoderAdapter(
|
|
VideoDecoderFactory* factory,
|
|
const SdpVideoFormat& associated_format)
|
|
: factory_(factory), associated_format_(associated_format) {}
|
|
|
|
StereoDecoderAdapter::~StereoDecoderAdapter() {
|
|
Release();
|
|
}
|
|
|
|
int32_t StereoDecoderAdapter::InitDecode(const VideoCodec* codec_settings,
|
|
int32_t number_of_cores) {
|
|
RTC_DCHECK_EQ(kVideoCodecStereo, codec_settings->codecType);
|
|
VideoCodec settings = *codec_settings;
|
|
settings.codecType = PayloadStringToCodecType(associated_format_.name);
|
|
for (size_t i = 0; i < kAlphaCodecStreams; ++i) {
|
|
std::unique_ptr<VideoDecoder> decoder =
|
|
factory_->CreateVideoDecoder(associated_format_);
|
|
const int32_t rv = decoder->InitDecode(&settings, number_of_cores);
|
|
if (rv)
|
|
return rv;
|
|
adapter_callbacks_.emplace_back(
|
|
new StereoDecoderAdapter::AdapterDecodedImageCallback(
|
|
this, static_cast<AlphaCodecStream>(i)));
|
|
decoder->RegisterDecodeCompleteCallback(adapter_callbacks_.back().get());
|
|
decoders_.emplace_back(std::move(decoder));
|
|
}
|
|
return WEBRTC_VIDEO_CODEC_OK;
|
|
}
|
|
|
|
int32_t StereoDecoderAdapter::Decode(
|
|
const EncodedImage& input_image,
|
|
bool missing_frames,
|
|
const RTPFragmentationHeader* /*fragmentation*/,
|
|
const CodecSpecificInfo* codec_specific_info,
|
|
int64_t render_time_ms) {
|
|
const CodecSpecificInfoStereo& stereo_info =
|
|
codec_specific_info->codecSpecific.stereo;
|
|
RTC_DCHECK_LT(static_cast<size_t>(stereo_info.indices.frame_index),
|
|
decoders_.size());
|
|
if (stereo_info.indices.frame_count == 1) {
|
|
RTC_DCHECK_EQ(static_cast<int>(stereo_info.indices.frame_index), 0);
|
|
RTC_DCHECK(decoded_data_.find(input_image._timeStamp) ==
|
|
decoded_data_.end());
|
|
decoded_data_.emplace(std::piecewise_construct,
|
|
std::forward_as_tuple(input_image._timeStamp),
|
|
std::forward_as_tuple(kAXXStream));
|
|
}
|
|
|
|
int32_t rv = decoders_[stereo_info.indices.frame_index]->Decode(
|
|
input_image, missing_frames, nullptr, nullptr, render_time_ms);
|
|
return rv;
|
|
}
|
|
|
|
int32_t StereoDecoderAdapter::RegisterDecodeCompleteCallback(
|
|
DecodedImageCallback* callback) {
|
|
decoded_complete_callback_ = callback;
|
|
return WEBRTC_VIDEO_CODEC_OK;
|
|
}
|
|
|
|
int32_t StereoDecoderAdapter::Release() {
|
|
for (auto& decoder : decoders_) {
|
|
const int32_t rv = decoder->Release();
|
|
if (rv)
|
|
return rv;
|
|
}
|
|
decoders_.clear();
|
|
adapter_callbacks_.clear();
|
|
return WEBRTC_VIDEO_CODEC_OK;
|
|
}
|
|
|
|
void StereoDecoderAdapter::Decoded(AlphaCodecStream stream_idx,
|
|
VideoFrame* decoded_image,
|
|
rtc::Optional<int32_t> decode_time_ms,
|
|
rtc::Optional<uint8_t> qp) {
|
|
const auto& other_decoded_data_it =
|
|
decoded_data_.find(decoded_image->timestamp());
|
|
if (other_decoded_data_it != decoded_data_.end()) {
|
|
auto& other_image_data = other_decoded_data_it->second;
|
|
if (stream_idx == kYUVStream) {
|
|
RTC_DCHECK_EQ(kAXXStream, other_image_data.stream_idx_);
|
|
MergeAlphaImages(decoded_image, decode_time_ms, qp,
|
|
&other_image_data.decoded_image_,
|
|
other_image_data.decode_time_ms_, other_image_data.qp_);
|
|
} else {
|
|
RTC_DCHECK_EQ(kYUVStream, other_image_data.stream_idx_);
|
|
RTC_DCHECK_EQ(kAXXStream, stream_idx);
|
|
MergeAlphaImages(&other_image_data.decoded_image_,
|
|
other_image_data.decode_time_ms_, other_image_data.qp_,
|
|
decoded_image, decode_time_ms, qp);
|
|
}
|
|
decoded_data_.erase(decoded_data_.begin(), other_decoded_data_it);
|
|
return;
|
|
}
|
|
RTC_DCHECK(decoded_data_.find(decoded_image->timestamp()) ==
|
|
decoded_data_.end());
|
|
// decoded_data_[decoded_image->timestamp()] =
|
|
// DecodedImageData(stream_idx, *decoded_image, decode_time_ms, qp);
|
|
decoded_data_.emplace(
|
|
std::piecewise_construct,
|
|
std::forward_as_tuple(decoded_image->timestamp()),
|
|
std::forward_as_tuple(stream_idx, *decoded_image, decode_time_ms, qp));
|
|
}
|
|
|
|
void StereoDecoderAdapter::MergeAlphaImages(
|
|
VideoFrame* decoded_image,
|
|
const rtc::Optional<int32_t>& decode_time_ms,
|
|
const rtc::Optional<uint8_t>& qp,
|
|
VideoFrame* alpha_decoded_image,
|
|
const rtc::Optional<int32_t>& alpha_decode_time_ms,
|
|
const rtc::Optional<uint8_t>& alpha_qp) {
|
|
if (!alpha_decoded_image->timestamp()) {
|
|
decoded_complete_callback_->Decoded(*decoded_image, decode_time_ms, qp);
|
|
return;
|
|
}
|
|
|
|
rtc::scoped_refptr<webrtc::I420BufferInterface> yuv_buffer =
|
|
decoded_image->video_frame_buffer()->ToI420();
|
|
rtc::scoped_refptr<webrtc::I420BufferInterface> alpha_buffer =
|
|
alpha_decoded_image->video_frame_buffer()->ToI420();
|
|
RTC_DCHECK_EQ(yuv_buffer->width(), alpha_buffer->width());
|
|
RTC_DCHECK_EQ(yuv_buffer->height(), alpha_buffer->height());
|
|
rtc::scoped_refptr<I420ABufferInterface> merged_buffer = WrapI420ABuffer(
|
|
yuv_buffer->width(), yuv_buffer->height(), yuv_buffer->DataY(),
|
|
yuv_buffer->StrideY(), yuv_buffer->DataU(), yuv_buffer->StrideU(),
|
|
yuv_buffer->DataV(), yuv_buffer->StrideV(), alpha_buffer->DataY(),
|
|
alpha_buffer->StrideY(),
|
|
rtc::Bind(&KeepBufferRefs, yuv_buffer, alpha_buffer));
|
|
|
|
VideoFrame merged_image(merged_buffer, decoded_image->timestamp(),
|
|
0 /* render_time_ms */, decoded_image->rotation());
|
|
decoded_complete_callback_->Decoded(merged_image, decode_time_ms, qp);
|
|
}
|
|
|
|
} // namespace webrtc
|