mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
11 lines
386 B
Java
11 lines
386 B
Java
package org.webrtc;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class BuiltinAudioDecoderFactoryFactory implements AudioDecoderFactoryFactory {
|
|
private static native long nativeCreateBuiltinAudioDecoderFactory();
|
|
|
|
@Override // org.webrtc.AudioDecoderFactoryFactory
|
|
public long createNativeAudioDecoderFactory() {
|
|
return nativeCreateBuiltinAudioDecoderFactory();
|
|
}
|
|
}
|