Remove deprecated VideoEncoder.Settings constructor.

Bug: webrtc:9646
Change-Id: Iac14930653969eed4f7b2207149512bb3fb87cee
Reviewed-on: https://webrtc-review.googlesource.com/96242
Reviewed-by: Sami Kalliomäki <sakal@webrtc.org>
Commit-Queue: Rasmus Brandt <brandtr@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#24582}
This commit is contained in:
Rasmus Brandt
2018-08-28 09:59:20 +02:00
committed by Commit Bot
parent 4a02b67ac3
commit 01b8e5d0f8
4 changed files with 3 additions and 8 deletions

View File

@ -40,12 +40,6 @@ public interface VideoEncoder {
this.numberOfSimulcastStreams = numberOfSimulcastStreams;
this.automaticResizeOn = automaticResizeOn;
}
// TODO(http://bugs.webrtc.org/9646): Remove when downstream clients have been updated.
public Settings(int numberOfCores, int width, int height, int startBitrate, int maxFramerate,
boolean automaticResizeOn) {
this(numberOfCores, width, height, startBitrate, maxFramerate, 1, automaticResizeOn);
}
}
/** Additional info for encoding. */