Delete unused constant kVideoCodecI420

Followup to cl https://webrtc-review.googlesource.com/c/112596.

Bug: webrtc:5791
Change-Id: Ie0375fa9e47dddd9e78d26fd63b8a349bacf5903
Reviewed-on: https://webrtc-review.googlesource.com/c/114983
Reviewed-by: Sebastian Jansson <srte@webrtc.org>
Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26211}
This commit is contained in:
Niels Möller 2018-12-19 11:42:25 +01:00 committed by Commit Bot
parent 1daa7e8729
commit 87da937789
3 changed files with 0 additions and 12 deletions

View File

@ -21,7 +21,6 @@ enum VideoCodecType {
kVideoCodecVP8,
kVideoCodecVP9,
kVideoCodecH264,
kVideoCodecI420,
kVideoCodecMultiplex,
};

View File

@ -109,7 +109,6 @@ const VideoCodecH264& VideoCodec::H264() const {
static const char* kPayloadNameVp8 = "VP8";
static const char* kPayloadNameVp9 = "VP9";
static const char* kPayloadNameH264 = "H264";
static const char* kPayloadNameI420 = "I420";
static const char* kPayloadNameGeneric = "Generic";
static const char* kPayloadNameMultiplex = "Multiplex";
@ -121,8 +120,6 @@ const char* CodecTypeToPayloadString(VideoCodecType type) {
return kPayloadNameVp9;
case kVideoCodecH264:
return kPayloadNameH264;
case kVideoCodecI420:
return kPayloadNameI420;
// Other codecs default to generic.
default:
return kPayloadNameGeneric;
@ -136,8 +133,6 @@ VideoCodecType PayloadStringToCodecType(const std::string& name) {
return kVideoCodecVP9;
if (absl::EqualsIgnoreCase(name, kPayloadNameH264))
return kVideoCodecH264;
if (absl::EqualsIgnoreCase(name, kPayloadNameI420))
return kVideoCodecI420;
if (absl::EqualsIgnoreCase(name, kPayloadNameMultiplex))
return kVideoCodecMultiplex;
return kVideoCodecGeneric;

View File

@ -59,12 +59,6 @@ static void CodecSettings(VideoCodecType codec_type, VideoCodec* settings) {
// TODO(brandtr): Set |qpMax| here, when the OpenH264 wrapper supports it.
*(settings->H264()) = VideoEncoder::GetDefaultH264Settings();
return;
case kVideoCodecI420:
// Bitrate needed for this size and framerate.
settings->startBitrate =
3 * kTestWidth * kTestHeight * 8 * kTestFrameRate / 1000 / 2;
settings->maxBitrate = settings->startBitrate;
return;
default:
return;
}