Commit fdda2bb8 by olly Committed by Oliver Woodman

Make setConstantBitrateSeekingEnabled consistent with other method

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=210093143
parent 3196bc40
......@@ -95,9 +95,12 @@ public final class DefaultExtractorsFactory implements ExtractorsFactory {
*
* @param constantBitrateSeekingEnabled Whether approximate seeking using a constant bitrate
* assumption should be enabled for all extractors that support it.
* @return The factory, for convenience.
*/
public void setConstantBitrateSeekingEnabled(boolean constantBitrateSeekingEnabled) {
public synchronized DefaultExtractorsFactory setConstantBitrateSeekingEnabled(
boolean constantBitrateSeekingEnabled) {
this.constantBitrateSeekingEnabled = constantBitrateSeekingEnabled;
return this;
}
/**
......
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