2016-11-16 16:41:30 +01:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/video_coding/include/video_codec_initializer.h"
|
2016-11-16 16:41:30 +01:00
|
|
|
|
2018-01-30 10:32:13 +01:00
|
|
|
#include "api/video_codecs/video_encoder.h"
|
2017-09-15 13:58:09 +02:00
|
|
|
#include "common_types.h" // NOLINT(build/include)
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "common_video/include/video_bitrate_allocator.h"
|
|
|
|
|
#include "modules/video_coding/codecs/vp8/screenshare_layers.h"
|
|
|
|
|
#include "modules/video_coding/codecs/vp8/simulcast_rate_allocator.h"
|
|
|
|
|
#include "modules/video_coding/codecs/vp8/temporal_layers.h"
|
2018-03-28 19:32:37 +02:00
|
|
|
#include "modules/video_coding/codecs/vp9/svc_config.h"
|
|
|
|
|
#include "modules/video_coding/codecs/vp9/svc_rate_allocator.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/video_coding/include/video_coding_defines.h"
|
|
|
|
|
#include "modules/video_coding/utility/default_video_bitrate_allocator.h"
|
|
|
|
|
#include "rtc_base/basictypes.h"
|
|
|
|
|
#include "rtc_base/logging.h"
|
|
|
|
|
#include "system_wrappers/include/clock.h"
|
2016-11-16 16:41:30 +01:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
bool VideoCodecInitializer::SetupCodec(
|
|
|
|
|
const VideoEncoderConfig& config,
|
|
|
|
|
const std::vector<VideoStream>& streams,
|
|
|
|
|
VideoCodec* codec,
|
|
|
|
|
std::unique_ptr<VideoBitrateAllocator>* bitrate_allocator) {
|
Reland "Reland "Move rtp-specific config out of EncoderSettings.""
This reverts commit 6c2c13af06b32778b86950681758a7970d1c5d9e.
Reason for revert: Intend to investigate and fix perf problems.
Original change's description:
> Revert "Reland "Move rtp-specific config out of EncoderSettings.""
>
> This reverts commit 04dd1768625eb2241d1fb97fd0137897e703e266.
>
> Reason for revert: Regression in ramp up perf tests.
>
> Original change's description:
> > Reland "Move rtp-specific config out of EncoderSettings."
> >
> > This is a reland of bc900cb1d1810fcf678fe41cf1e3966daa39c88c
> >
> > Original change's description:
> > > Move rtp-specific config out of EncoderSettings.
> > >
> > > In VideoSendStream::Config, move payload_name and payload_type from
> > > EncoderSettings to Rtp.
> > >
> > > EncoderSettings now contains configuration for VideoStreamEncoder only,
> > > and should perhaps be renamed in a follow up cl. It's no longer
> > > passed as an argument to VideoCodecInitializer::SetupCodec.
> > >
> > > The latter then needs a different way to know the codec type,
> > > which is provided by a new codec_type member in VideoEncoderConfig.
> > >
> > > Bug: webrtc:8830
> > > Change-Id: Ifcc691aef1ee6a95e43c0452c5e630d92a511cd6
> > > Reviewed-on: https://webrtc-review.googlesource.com/62062
> > > Commit-Queue: Niels Moller <nisse@webrtc.org>
> > > Reviewed-by: Magnus Jedvert <magjed@webrtc.org>
> > > Reviewed-by: Stefan Holmer <stefan@webrtc.org>
> > > Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
> > > Cr-Commit-Position: refs/heads/master@{#22532}
> >
> > Bug: webrtc:8830
> > Change-Id: If88ef7d57cdaa4fae3c7b2a97ea5a6e1b833e019
> > Reviewed-on: https://webrtc-review.googlesource.com/63721
> > Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
> > Reviewed-by: Stefan Holmer <stefan@webrtc.org>
> > Commit-Queue: Niels Moller <nisse@webrtc.org>
> > Cr-Commit-Position: refs/heads/master@{#22595}
>
> TBR=brandtr@webrtc.org,magjed@webrtc.org,nisse@webrtc.org,stefan@webrtc.org
>
> Bug: webrtc:8830,chromium:827080
> Change-Id: Iaaf146de91ec5c0d741b8efdf143f7e173084fef
> Reviewed-on: https://webrtc-review.googlesource.com/65520
> Commit-Queue: Niels Moller <nisse@webrtc.org>
> Reviewed-by: Niels Moller <nisse@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#22677}
TBR=brandtr@webrtc.org,magjed@webrtc.org,nisse@webrtc.org,stefan@webrtc.org
# Not skipping CQ checks because original CL landed > 1 day ago.
Bug: webrtc:8830, chromium:827080
Change-Id: I9b62987bf5daced90dfeb3ebb6739c80117c487f
Reviewed-on: https://webrtc-review.googlesource.com/66862
Commit-Queue: Niels Moller <nisse@webrtc.org>
Reviewed-by: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22751}
2018-04-05 15:36:51 +02:00
|
|
|
if (config.codec_type == kVideoCodecMultiplex) {
|
2018-03-22 08:52:50 +01:00
|
|
|
VideoEncoderConfig associated_config = config.Copy();
|
|
|
|
|
associated_config.codec_type = kVideoCodecVP9;
|
2018-04-26 09:51:47 +02:00
|
|
|
if (!SetupCodec(associated_config, streams, codec,
|
Reland "Reland "Move rtp-specific config out of EncoderSettings.""
This reverts commit 6c2c13af06b32778b86950681758a7970d1c5d9e.
Reason for revert: Intend to investigate and fix perf problems.
Original change's description:
> Revert "Reland "Move rtp-specific config out of EncoderSettings.""
>
> This reverts commit 04dd1768625eb2241d1fb97fd0137897e703e266.
>
> Reason for revert: Regression in ramp up perf tests.
>
> Original change's description:
> > Reland "Move rtp-specific config out of EncoderSettings."
> >
> > This is a reland of bc900cb1d1810fcf678fe41cf1e3966daa39c88c
> >
> > Original change's description:
> > > Move rtp-specific config out of EncoderSettings.
> > >
> > > In VideoSendStream::Config, move payload_name and payload_type from
> > > EncoderSettings to Rtp.
> > >
> > > EncoderSettings now contains configuration for VideoStreamEncoder only,
> > > and should perhaps be renamed in a follow up cl. It's no longer
> > > passed as an argument to VideoCodecInitializer::SetupCodec.
> > >
> > > The latter then needs a different way to know the codec type,
> > > which is provided by a new codec_type member in VideoEncoderConfig.
> > >
> > > Bug: webrtc:8830
> > > Change-Id: Ifcc691aef1ee6a95e43c0452c5e630d92a511cd6
> > > Reviewed-on: https://webrtc-review.googlesource.com/62062
> > > Commit-Queue: Niels Moller <nisse@webrtc.org>
> > > Reviewed-by: Magnus Jedvert <magjed@webrtc.org>
> > > Reviewed-by: Stefan Holmer <stefan@webrtc.org>
> > > Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
> > > Cr-Commit-Position: refs/heads/master@{#22532}
> >
> > Bug: webrtc:8830
> > Change-Id: If88ef7d57cdaa4fae3c7b2a97ea5a6e1b833e019
> > Reviewed-on: https://webrtc-review.googlesource.com/63721
> > Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
> > Reviewed-by: Stefan Holmer <stefan@webrtc.org>
> > Commit-Queue: Niels Moller <nisse@webrtc.org>
> > Cr-Commit-Position: refs/heads/master@{#22595}
>
> TBR=brandtr@webrtc.org,magjed@webrtc.org,nisse@webrtc.org,stefan@webrtc.org
>
> Bug: webrtc:8830,chromium:827080
> Change-Id: Iaaf146de91ec5c0d741b8efdf143f7e173084fef
> Reviewed-on: https://webrtc-review.googlesource.com/65520
> Commit-Queue: Niels Moller <nisse@webrtc.org>
> Reviewed-by: Niels Moller <nisse@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#22677}
TBR=brandtr@webrtc.org,magjed@webrtc.org,nisse@webrtc.org,stefan@webrtc.org
# Not skipping CQ checks because original CL landed > 1 day ago.
Bug: webrtc:8830, chromium:827080
Change-Id: I9b62987bf5daced90dfeb3ebb6739c80117c487f
Reviewed-on: https://webrtc-review.googlesource.com/66862
Commit-Queue: Niels Moller <nisse@webrtc.org>
Reviewed-by: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22751}
2018-04-05 15:36:51 +02:00
|
|
|
bitrate_allocator)) {
|
2017-12-11 12:21:02 +05:30
|
|
|
RTC_LOG(LS_ERROR) << "Failed to create stereo encoder configuration.";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-01-25 13:01:09 -08:00
|
|
|
codec->codecType = kVideoCodecMultiplex;
|
2017-12-11 12:21:02 +05:30
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-25 04:37:00 -08:00
|
|
|
*codec =
|
2018-04-26 09:51:47 +02:00
|
|
|
VideoEncoderConfigToVideoCodec(config, streams);
|
2018-03-21 09:57:23 +01:00
|
|
|
*bitrate_allocator = CreateBitrateAllocator(*codec);
|
2016-11-16 16:41:30 +01:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::unique_ptr<VideoBitrateAllocator>
|
2018-03-21 09:57:23 +01:00
|
|
|
VideoCodecInitializer::CreateBitrateAllocator(const VideoCodec& codec) {
|
2016-11-16 16:41:30 +01:00
|
|
|
std::unique_ptr<VideoBitrateAllocator> rate_allocator;
|
|
|
|
|
|
|
|
|
|
switch (codec.codecType) {
|
2018-03-28 19:32:37 +02:00
|
|
|
case kVideoCodecVP8:
|
2016-11-16 16:41:30 +01:00
|
|
|
// Set up default VP8 temporal layer factory, if not provided.
|
2018-03-21 09:57:23 +01:00
|
|
|
rate_allocator.reset(new SimulcastRateAllocator(codec));
|
2018-03-28 19:32:37 +02:00
|
|
|
break;
|
|
|
|
|
case kVideoCodecVP9:
|
|
|
|
|
rate_allocator.reset(new SvcRateAllocator(codec));
|
|
|
|
|
break;
|
2016-11-16 16:41:30 +01:00
|
|
|
default:
|
|
|
|
|
rate_allocator.reset(new DefaultVideoBitrateAllocator(codec));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rate_allocator;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO(sprang): Split this up and separate the codec specific parts.
|
|
|
|
|
VideoCodec VideoCodecInitializer::VideoEncoderConfigToVideoCodec(
|
|
|
|
|
const VideoEncoderConfig& config,
|
2018-04-26 09:51:47 +02:00
|
|
|
const std::vector<VideoStream>& streams) {
|
2016-11-16 16:41:30 +01:00
|
|
|
static const int kEncoderMinBitrateKbps = 30;
|
|
|
|
|
RTC_DCHECK(!streams.empty());
|
|
|
|
|
RTC_DCHECK_GE(config.min_transmit_bitrate_bps, 0);
|
|
|
|
|
|
|
|
|
|
VideoCodec video_codec;
|
|
|
|
|
memset(&video_codec, 0, sizeof(video_codec));
|
Reland "Reland "Move rtp-specific config out of EncoderSettings.""
This reverts commit 6c2c13af06b32778b86950681758a7970d1c5d9e.
Reason for revert: Intend to investigate and fix perf problems.
Original change's description:
> Revert "Reland "Move rtp-specific config out of EncoderSettings.""
>
> This reverts commit 04dd1768625eb2241d1fb97fd0137897e703e266.
>
> Reason for revert: Regression in ramp up perf tests.
>
> Original change's description:
> > Reland "Move rtp-specific config out of EncoderSettings."
> >
> > This is a reland of bc900cb1d1810fcf678fe41cf1e3966daa39c88c
> >
> > Original change's description:
> > > Move rtp-specific config out of EncoderSettings.
> > >
> > > In VideoSendStream::Config, move payload_name and payload_type from
> > > EncoderSettings to Rtp.
> > >
> > > EncoderSettings now contains configuration for VideoStreamEncoder only,
> > > and should perhaps be renamed in a follow up cl. It's no longer
> > > passed as an argument to VideoCodecInitializer::SetupCodec.
> > >
> > > The latter then needs a different way to know the codec type,
> > > which is provided by a new codec_type member in VideoEncoderConfig.
> > >
> > > Bug: webrtc:8830
> > > Change-Id: Ifcc691aef1ee6a95e43c0452c5e630d92a511cd6
> > > Reviewed-on: https://webrtc-review.googlesource.com/62062
> > > Commit-Queue: Niels Moller <nisse@webrtc.org>
> > > Reviewed-by: Magnus Jedvert <magjed@webrtc.org>
> > > Reviewed-by: Stefan Holmer <stefan@webrtc.org>
> > > Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
> > > Cr-Commit-Position: refs/heads/master@{#22532}
> >
> > Bug: webrtc:8830
> > Change-Id: If88ef7d57cdaa4fae3c7b2a97ea5a6e1b833e019
> > Reviewed-on: https://webrtc-review.googlesource.com/63721
> > Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
> > Reviewed-by: Stefan Holmer <stefan@webrtc.org>
> > Commit-Queue: Niels Moller <nisse@webrtc.org>
> > Cr-Commit-Position: refs/heads/master@{#22595}
>
> TBR=brandtr@webrtc.org,magjed@webrtc.org,nisse@webrtc.org,stefan@webrtc.org
>
> Bug: webrtc:8830,chromium:827080
> Change-Id: Iaaf146de91ec5c0d741b8efdf143f7e173084fef
> Reviewed-on: https://webrtc-review.googlesource.com/65520
> Commit-Queue: Niels Moller <nisse@webrtc.org>
> Reviewed-by: Niels Moller <nisse@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#22677}
TBR=brandtr@webrtc.org,magjed@webrtc.org,nisse@webrtc.org,stefan@webrtc.org
# Not skipping CQ checks because original CL landed > 1 day ago.
Bug: webrtc:8830, chromium:827080
Change-Id: I9b62987bf5daced90dfeb3ebb6739c80117c487f
Reviewed-on: https://webrtc-review.googlesource.com/66862
Commit-Queue: Niels Moller <nisse@webrtc.org>
Reviewed-by: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22751}
2018-04-05 15:36:51 +02:00
|
|
|
video_codec.codecType = config.codec_type;
|
2016-11-16 16:41:30 +01:00
|
|
|
|
|
|
|
|
switch (config.content_type) {
|
|
|
|
|
case VideoEncoderConfig::ContentType::kRealtimeVideo:
|
|
|
|
|
video_codec.mode = kRealtimeVideo;
|
|
|
|
|
break;
|
|
|
|
|
case VideoEncoderConfig::ContentType::kScreen:
|
|
|
|
|
video_codec.mode = kScreensharing;
|
2018-04-06 18:03:46 +02:00
|
|
|
if (!streams.empty() && streams[0].num_temporal_layers == 2u) {
|
2018-03-01 15:11:29 +01:00
|
|
|
video_codec.targetBitrate = streams[0].target_bitrate_bps / 1000;
|
2016-11-16 16:41:30 +01:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-22 08:52:50 +01:00
|
|
|
// TODO(nisse): The plType field should be deleted. Luckily, our
|
|
|
|
|
// callers don't need it.
|
|
|
|
|
video_codec.plType = 0;
|
2016-11-16 16:41:30 +01:00
|
|
|
video_codec.numberOfSimulcastStreams =
|
|
|
|
|
static_cast<unsigned char>(streams.size());
|
|
|
|
|
video_codec.minBitrate = streams[0].min_bitrate_bps / 1000;
|
2018-01-18 10:39:54 -08:00
|
|
|
bool codec_active = false;
|
|
|
|
|
for (const VideoStream& stream : streams) {
|
|
|
|
|
if (stream.active) {
|
|
|
|
|
codec_active = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Set active for the entire video codec for the non simulcast case.
|
|
|
|
|
video_codec.active = codec_active;
|
2016-11-16 16:41:30 +01:00
|
|
|
if (video_codec.minBitrate < kEncoderMinBitrateKbps)
|
|
|
|
|
video_codec.minBitrate = kEncoderMinBitrateKbps;
|
2017-06-19 07:18:55 -07:00
|
|
|
video_codec.timing_frame_thresholds = {kDefaultTimingFramesDelayMs,
|
|
|
|
|
kDefaultOutlierFrameSizePercent};
|
2016-11-28 15:58:53 -08:00
|
|
|
RTC_DCHECK_LE(streams.size(), kMaxSimulcastStreams);
|
2018-03-28 19:32:37 +02:00
|
|
|
|
2016-11-16 16:41:30 +01:00
|
|
|
for (size_t i = 0; i < streams.size(); ++i) {
|
|
|
|
|
SimulcastStream* sim_stream = &video_codec.simulcastStream[i];
|
2016-11-28 15:21:39 -08:00
|
|
|
RTC_DCHECK_GT(streams[i].width, 0);
|
|
|
|
|
RTC_DCHECK_GT(streams[i].height, 0);
|
2016-11-16 16:41:30 +01:00
|
|
|
RTC_DCHECK_GT(streams[i].max_framerate, 0);
|
2017-01-26 06:12:26 -08:00
|
|
|
// Different framerates not supported per stream at the moment, unless it's
|
|
|
|
|
// screenshare where there is an exception and a simulcast encoder adapter,
|
|
|
|
|
// which supports different framerates, is used instead.
|
|
|
|
|
if (config.content_type != VideoEncoderConfig::ContentType::kScreen) {
|
|
|
|
|
RTC_DCHECK_EQ(streams[i].max_framerate, streams[0].max_framerate);
|
|
|
|
|
}
|
2016-11-16 16:41:30 +01:00
|
|
|
RTC_DCHECK_GE(streams[i].min_bitrate_bps, 0);
|
|
|
|
|
RTC_DCHECK_GE(streams[i].target_bitrate_bps, streams[i].min_bitrate_bps);
|
|
|
|
|
RTC_DCHECK_GE(streams[i].max_bitrate_bps, streams[i].target_bitrate_bps);
|
|
|
|
|
RTC_DCHECK_GE(streams[i].max_qp, 0);
|
|
|
|
|
|
|
|
|
|
sim_stream->width = static_cast<uint16_t>(streams[i].width);
|
|
|
|
|
sim_stream->height = static_cast<uint16_t>(streams[i].height);
|
|
|
|
|
sim_stream->minBitrate = streams[i].min_bitrate_bps / 1000;
|
|
|
|
|
sim_stream->targetBitrate = streams[i].target_bitrate_bps / 1000;
|
|
|
|
|
sim_stream->maxBitrate = streams[i].max_bitrate_bps / 1000;
|
|
|
|
|
sim_stream->qpMax = streams[i].max_qp;
|
2018-03-01 15:11:29 +01:00
|
|
|
sim_stream->numberOfTemporalLayers =
|
|
|
|
|
static_cast<unsigned char>(streams[i].num_temporal_layers.value_or(1));
|
2018-01-18 10:39:54 -08:00
|
|
|
sim_stream->active = streams[i].active;
|
2016-11-16 16:41:30 +01:00
|
|
|
|
|
|
|
|
video_codec.width =
|
|
|
|
|
std::max(video_codec.width, static_cast<uint16_t>(streams[i].width));
|
|
|
|
|
video_codec.height =
|
|
|
|
|
std::max(video_codec.height, static_cast<uint16_t>(streams[i].height));
|
|
|
|
|
video_codec.minBitrate =
|
|
|
|
|
std::min(static_cast<uint16_t>(video_codec.minBitrate),
|
|
|
|
|
static_cast<uint16_t>(streams[i].min_bitrate_bps / 1000));
|
|
|
|
|
video_codec.maxBitrate += streams[i].max_bitrate_bps / 1000;
|
|
|
|
|
video_codec.qpMax = std::max(video_codec.qpMax,
|
|
|
|
|
static_cast<unsigned int>(streams[i].max_qp));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (video_codec.maxBitrate == 0) {
|
|
|
|
|
// Unset max bitrate -> cap to one bit per pixel.
|
|
|
|
|
video_codec.maxBitrate =
|
|
|
|
|
(video_codec.width * video_codec.height * video_codec.maxFramerate) /
|
|
|
|
|
1000;
|
|
|
|
|
}
|
|
|
|
|
if (video_codec.maxBitrate < kEncoderMinBitrateKbps)
|
|
|
|
|
video_codec.maxBitrate = kEncoderMinBitrateKbps;
|
|
|
|
|
|
|
|
|
|
RTC_DCHECK_GT(streams[0].max_framerate, 0);
|
|
|
|
|
video_codec.maxFramerate = streams[0].max_framerate;
|
2018-03-28 19:32:37 +02:00
|
|
|
|
|
|
|
|
// Set codec specific options
|
|
|
|
|
if (config.encoder_specific_settings)
|
|
|
|
|
config.encoder_specific_settings->FillEncoderSpecificSettings(&video_codec);
|
|
|
|
|
|
|
|
|
|
switch (video_codec.codecType) {
|
|
|
|
|
case kVideoCodecVP8: {
|
|
|
|
|
if (!config.encoder_specific_settings) {
|
|
|
|
|
*video_codec.VP8() = VideoEncoder::GetDefaultVp8Settings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
video_codec.VP8()->numberOfTemporalLayers = static_cast<unsigned char>(
|
|
|
|
|
streams.back().num_temporal_layers.value_or(
|
|
|
|
|
video_codec.VP8()->numberOfTemporalLayers));
|
|
|
|
|
RTC_DCHECK_GE(video_codec.VP8()->numberOfTemporalLayers, 1);
|
|
|
|
|
RTC_DCHECK_LE(video_codec.VP8()->numberOfTemporalLayers,
|
|
|
|
|
kMaxTemporalStreams);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case kVideoCodecVP9: {
|
|
|
|
|
if (!config.encoder_specific_settings) {
|
|
|
|
|
*video_codec.VP9() = VideoEncoder::GetDefaultVp9Settings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
video_codec.VP9()->numberOfTemporalLayers = static_cast<unsigned char>(
|
|
|
|
|
streams.back().num_temporal_layers.value_or(
|
|
|
|
|
video_codec.VP9()->numberOfTemporalLayers));
|
|
|
|
|
RTC_DCHECK_GE(video_codec.VP9()->numberOfTemporalLayers, 1);
|
|
|
|
|
RTC_DCHECK_LE(video_codec.VP9()->numberOfTemporalLayers,
|
|
|
|
|
kMaxTemporalStreams);
|
|
|
|
|
|
|
|
|
|
if (video_codec.mode == kScreensharing &&
|
|
|
|
|
config.encoder_specific_settings) {
|
|
|
|
|
video_codec.VP9()->flexibleMode = true;
|
|
|
|
|
// For now VP9 screensharing use 1 temporal and 2 spatial layers.
|
|
|
|
|
RTC_DCHECK_EQ(1, video_codec.VP9()->numberOfTemporalLayers);
|
|
|
|
|
RTC_DCHECK_EQ(2, video_codec.VP9()->numberOfSpatialLayers);
|
|
|
|
|
} else {
|
|
|
|
|
RTC_DCHECK(config.spatial_layers.empty() ||
|
|
|
|
|
config.spatial_layers.size() ==
|
|
|
|
|
video_codec.VP9()->numberOfSpatialLayers);
|
|
|
|
|
|
|
|
|
|
std::vector<SpatialLayer> spatial_layers;
|
|
|
|
|
if (!config.spatial_layers.empty()) {
|
|
|
|
|
// Layering is set explicitly.
|
|
|
|
|
spatial_layers = config.spatial_layers;
|
|
|
|
|
} else {
|
|
|
|
|
spatial_layers =
|
|
|
|
|
GetSvcConfig(video_codec.width, video_codec.height,
|
|
|
|
|
video_codec.VP9()->numberOfSpatialLayers,
|
|
|
|
|
video_codec.VP9()->numberOfTemporalLayers);
|
2018-04-13 16:36:39 +02:00
|
|
|
|
|
|
|
|
const bool no_spatial_layering = (spatial_layers.size() == 1);
|
|
|
|
|
if (no_spatial_layering) {
|
|
|
|
|
// Use codec's bitrate limits.
|
|
|
|
|
spatial_layers.back().minBitrate = video_codec.minBitrate;
|
|
|
|
|
spatial_layers.back().maxBitrate = video_codec.maxBitrate;
|
|
|
|
|
}
|
2018-03-28 19:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RTC_DCHECK(!spatial_layers.empty());
|
|
|
|
|
for (size_t i = 0; i < spatial_layers.size(); ++i) {
|
|
|
|
|
video_codec.spatialLayers[i] = spatial_layers[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update layering settings.
|
|
|
|
|
video_codec.VP9()->numberOfSpatialLayers =
|
|
|
|
|
static_cast<unsigned char>(spatial_layers.size());
|
|
|
|
|
RTC_DCHECK_GE(video_codec.VP9()->numberOfSpatialLayers, 1);
|
|
|
|
|
RTC_DCHECK_LE(video_codec.VP9()->numberOfSpatialLayers,
|
|
|
|
|
kMaxSpatialLayers);
|
|
|
|
|
|
|
|
|
|
video_codec.VP9()->numberOfTemporalLayers = static_cast<unsigned char>(
|
|
|
|
|
spatial_layers.back().numberOfTemporalLayers);
|
|
|
|
|
RTC_DCHECK_GE(video_codec.VP9()->numberOfTemporalLayers, 1);
|
|
|
|
|
RTC_DCHECK_LE(video_codec.VP9()->numberOfTemporalLayers,
|
|
|
|
|
kMaxTemporalStreams);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case kVideoCodecH264: {
|
|
|
|
|
if (!config.encoder_specific_settings)
|
|
|
|
|
*video_codec.H264() = VideoEncoder::GetDefaultH264Settings();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
// TODO(pbos): Support encoder_settings codec-agnostically.
|
|
|
|
|
RTC_DCHECK(!config.encoder_specific_settings)
|
|
|
|
|
<< "Encoder-specific settings for codec type not wired up.";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-16 16:41:30 +01:00
|
|
|
return video_codec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|