Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: webrtc/modules/rtp_rtcp/source/rtp_sender_video.h

Issue 1702043002: Remove video-codec max bitrate from TMMBN. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_sender.cc ('k') | webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/rtp_rtcp/source/rtp_sender_video.h
diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h b/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h
index 74c3b058ca10a4e8b3a060a3e6285b5e70dab89f..e3487f655b66998e2d59018f1abb7f041448132b 100644
--- a/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h
+++ b/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h
@@ -41,8 +41,7 @@ class RTPSenderVideo {
static RtpUtility::Payload* CreateVideoPayload(
const char payloadName[RTP_PAYLOAD_NAME_SIZE],
- const int8_t payloadType,
- const uint32_t maxBitRate);
+ const int8_t payloadType);
int32_t SendVideo(const RtpVideoCodecTypes videoType,
const FrameType frameType,
@@ -58,10 +57,6 @@ class RTPSenderVideo {
void SetVideoCodecType(RtpVideoCodecTypes type);
- void SetMaxConfiguredBitrateVideo(const uint32_t maxBitrate);
-
- uint32_t MaxConfiguredBitrateVideo() const;
-
// FEC
void SetGenericFECStatus(const bool enable,
const uint8_t payloadTypeRED,
@@ -106,7 +101,6 @@ class RTPSenderVideo {
const rtc::scoped_ptr<CriticalSectionWrapper> crit_;
RtpVideoCodecTypes _videoType;
- uint32_t _maxBitrate;
int32_t _retransmissionSettings GUARDED_BY(crit_);
// FEC
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_sender.cc ('k') | webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698