Commit d3b46f1c by claincly Committed by Ian Baker

Use constructor in default constructor.

PiperOrigin-RevId: 425871885
parent fe684b22
...@@ -50,7 +50,7 @@ public final class DefaultEncoderFactory implements Codec.EncoderFactory { ...@@ -50,7 +50,7 @@ public final class DefaultEncoderFactory implements Codec.EncoderFactory {
/** Creates a new instance using the {@link EncoderSelector#DEFAULT default encoder selector}. */ /** Creates a new instance using the {@link EncoderSelector#DEFAULT default encoder selector}. */
public DefaultEncoderFactory() { public DefaultEncoderFactory() {
this.videoEncoderSelector = EncoderSelector.DEFAULT; this(EncoderSelector.DEFAULT);
} }
/** Creates a new instance. */ /** Creates a new instance. */
......
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