Commit 14f7b611 by Nicklas Lundin

Added setMaxFrameRate to ParametersBuilder

parent 4c0041f9
...@@ -524,6 +524,16 @@ public class DefaultTrackSelector extends MappingTrackSelector { ...@@ -524,6 +524,16 @@ public class DefaultTrackSelector extends MappingTrackSelector {
} }
/** /**
* See {@link Parameters#maxFrameRate}.
*
* @return This builder.
*/
public ParametersBuilder setMaxFrameRate(int maxFrameRate) {
this.maxFrameRate = maxFrameRate;
return this;
}
/**
* Builds a {@link Parameters} instance with the selected values. * Builds a {@link Parameters} instance with the selected values.
*/ */
public Parameters build() { public Parameters build() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment