diff --git a/api/rtpparameters.h b/api/rtpparameters.h index ba02fd24d6..96df9ce885 100644 --- a/api/rtpparameters.h +++ b/api/rtpparameters.h @@ -83,10 +83,6 @@ enum class DegradationPreference { MAINTAIN_RESOLUTION, // Try to strike a "pleasing" balance between frame rate or resolution. BALANCED, - // TODO(deadbeef): Remove once downstream code referencing - // "webrtc::VideoSendStream::DegradationPreference::kMaintainResolution" is - // updated. - kMaintainResolution = MAINTAIN_RESOLUTION }; extern const double kDefaultBitratePriority; diff --git a/call/video_send_stream.h b/call/video_send_stream.h index 620719efbb..848902fc2e 100644 --- a/call/video_send_stream.h +++ b/call/video_send_stream.h @@ -264,11 +264,6 @@ class VideoSendStream { // When a stream is stopped, it can't receive, process or deliver packets. virtual void Stop() = 0; - // TODO(deadbeef): Remove once downstream code referencing - // "webrtc::VideoSendStream::DegradationPreference::kMaintainResolution" is - // updated. - using DegradationPreference = webrtc::DegradationPreference; - virtual void SetSource( rtc::VideoSourceInterface* source, const DegradationPreference& degradation_preference) = 0;