This reverts commit 20b701f3d79c499b0981f03fbf3a9b0fe531ac5d. Reason for reland: Reverting did not affect the test regression. Original change's description: > Revert "sdp: parse and serialize b=TIAS" > > This reverts commit c6801d4522ab94f965e258e68259fde312023654. > > Reason for revert: Speculatively reverting since it possibly breaks downstream performance test. > > One issue I noticed is that the correct SDP won't be produced if set_bandwidth_type hasn't been called. Probably should default to b=AS in that case. > > Original change's description: > > sdp: parse and serialize b=TIAS > > > > BUG=webrtc:5788 > > > > Change-Id: I063c756004e4c224fffa36d2800603c7b7e50dce > > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/179223 > > Commit-Queue: Philipp Hancke <philipp.hancke@googlemail.com> > > Reviewed-by: Taylor <deadbeef@webrtc.org> > > Cr-Commit-Position: refs/heads/master@{#31729} > > TBR=deadbeef@webrtc.org,hta@webrtc.org,minyue@webrtc.org,philipp.hancke@googlemail.com,jleconte@webrtc.org > > # Not skipping CQ checks because original CL landed > 1 day ago. > > Bug: webrtc:5788 > Change-Id: I2a3f676b4359834e511dffd5adedc9388e0ea0f8 > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/179620 > Reviewed-by: Taylor <deadbeef@webrtc.org> > Commit-Queue: Taylor <deadbeef@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#31762} TBR=nisse@webrtc.org Bug: webrtc:5788 Change-Id: I5c0ef29d275bb2264d9b706b085f7933d59e2801 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/179760 Commit-Queue: Taylor <deadbeef@webrtc.org> Reviewed-by: Taylor <deadbeef@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31816}
127 lines
4.5 KiB
C++
127 lines
4.5 KiB
C++
/*
|
|
* Copyright (c) 2012 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 "media/base/media_constants.h"
|
|
|
|
namespace cricket {
|
|
|
|
const int kVideoCodecClockrate = 90000;
|
|
const int kDataCodecClockrate = 90000;
|
|
const int kDataMaxBandwidth = 30720; // bps
|
|
|
|
const float kHighSystemCpuThreshold = 0.85f;
|
|
const float kLowSystemCpuThreshold = 0.65f;
|
|
const float kProcessCpuThreshold = 0.10f;
|
|
|
|
const char kRtxCodecName[] = "rtx";
|
|
const char kRedCodecName[] = "red";
|
|
const char kUlpfecCodecName[] = "ulpfec";
|
|
const char kMultiplexCodecName[] = "multiplex";
|
|
|
|
// TODO(brandtr): Change this to 'flexfec' when we are confident that the
|
|
// header format is not changing anymore.
|
|
const char kFlexfecCodecName[] = "flexfec-03";
|
|
|
|
// draft-ietf-payload-flexible-fec-scheme-02.txt
|
|
const char kFlexfecFmtpRepairWindow[] = "repair-window";
|
|
|
|
const char kCodecParamAssociatedPayloadType[] = "apt";
|
|
const char kCodecParamAssociatedCodecName[] = "acn";
|
|
|
|
const char kOpusCodecName[] = "opus";
|
|
const char kIsacCodecName[] = "ISAC";
|
|
const char kL16CodecName[] = "L16";
|
|
const char kG722CodecName[] = "G722";
|
|
const char kIlbcCodecName[] = "ILBC";
|
|
const char kPcmuCodecName[] = "PCMU";
|
|
const char kPcmaCodecName[] = "PCMA";
|
|
const char kCnCodecName[] = "CN";
|
|
const char kDtmfCodecName[] = "telephone-event";
|
|
|
|
// draft-spittka-payload-rtp-opus-03.txt
|
|
const char kCodecParamPTime[] = "ptime";
|
|
const char kCodecParamMaxPTime[] = "maxptime";
|
|
const char kCodecParamMinPTime[] = "minptime";
|
|
const char kCodecParamSPropStereo[] = "sprop-stereo";
|
|
const char kCodecParamStereo[] = "stereo";
|
|
const char kCodecParamUseInbandFec[] = "useinbandfec";
|
|
const char kCodecParamUseDtx[] = "usedtx";
|
|
const char kCodecParamMaxAverageBitrate[] = "maxaveragebitrate";
|
|
const char kCodecParamMaxPlaybackRate[] = "maxplaybackrate";
|
|
|
|
const char kCodecParamSctpProtocol[] = "protocol";
|
|
const char kCodecParamSctpStreams[] = "streams";
|
|
|
|
const char kParamValueTrue[] = "1";
|
|
const char kParamValueEmpty[] = "";
|
|
|
|
const int kOpusDefaultMaxPTime = 120;
|
|
const int kOpusDefaultPTime = 20;
|
|
const int kOpusDefaultMinPTime = 3;
|
|
const int kOpusDefaultSPropStereo = 0;
|
|
const int kOpusDefaultStereo = 0;
|
|
const int kOpusDefaultUseInbandFec = 0;
|
|
const int kOpusDefaultUseDtx = 0;
|
|
const int kOpusDefaultMaxPlaybackRate = 48000;
|
|
|
|
const int kPreferredMaxPTime = 120;
|
|
const int kPreferredMinPTime = 10;
|
|
const int kPreferredSPropStereo = 0;
|
|
const int kPreferredStereo = 0;
|
|
const int kPreferredUseInbandFec = 0;
|
|
|
|
const char kPacketizationParamRaw[] = "raw";
|
|
|
|
const char kRtcpFbParamLntf[] = "goog-lntf";
|
|
const char kRtcpFbParamNack[] = "nack";
|
|
const char kRtcpFbNackParamPli[] = "pli";
|
|
const char kRtcpFbParamRemb[] = "goog-remb";
|
|
const char kRtcpFbParamTransportCc[] = "transport-cc";
|
|
|
|
const char kRtcpFbParamCcm[] = "ccm";
|
|
const char kRtcpFbCcmParamFir[] = "fir";
|
|
const char kRtcpFbParamRrtr[] = "rrtr";
|
|
const char kCodecParamMaxBitrate[] = "x-google-max-bitrate";
|
|
const char kCodecParamMinBitrate[] = "x-google-min-bitrate";
|
|
const char kCodecParamStartBitrate[] = "x-google-start-bitrate";
|
|
const char kCodecParamMaxQuantization[] = "x-google-max-quantization";
|
|
const char kCodecParamPort[] = "x-google-port";
|
|
const char kCodecParamMaxMessageSize[] = "x-google-max-message-size";
|
|
|
|
const int kGoogleRtpDataCodecPlType = 109;
|
|
const char kGoogleRtpDataCodecName[] = "google-data";
|
|
|
|
const char kComfortNoiseCodecName[] = "CN";
|
|
|
|
const char kVp8CodecName[] = "VP8";
|
|
const char kVp9CodecName[] = "VP9";
|
|
const char kAv1CodecName[] = "AV1X";
|
|
const char kH264CodecName[] = "H264";
|
|
const char kHEVCCodecName[] = "H265X";
|
|
|
|
// RFC 6184 RTP Payload Format for H.264 video
|
|
const char kH264FmtpProfileLevelId[] = "profile-level-id";
|
|
const char kH264FmtpLevelAsymmetryAllowed[] = "level-asymmetry-allowed";
|
|
const char kH264FmtpPacketizationMode[] = "packetization-mode";
|
|
const char kH264FmtpSpropParameterSets[] = "sprop-parameter-sets";
|
|
const char kH264ProfileLevelConstrainedBaseline[] = "42e01f";
|
|
const char kH264ProfileLevelConstrainedHigh[] = "640c1f";
|
|
|
|
const int kDefaultVideoMaxFramerate = 60;
|
|
|
|
const size_t kConferenceMaxNumSpatialLayers = 3;
|
|
const size_t kConferenceMaxNumTemporalLayers = 3;
|
|
const size_t kConferenceDefaultNumTemporalLayers = 3;
|
|
|
|
// RFC 3556 and RFC 3890
|
|
const char kApplicationSpecificBandwidth[] = "AS";
|
|
const char kTransportSpecificBandwidth[] = "TIAS";
|
|
} // namespace cricket
|