discord-jadx/app/src/main/java/h0/c/q0.java

27 lines
851 B
Java

package h0.c;
import androidx.annotation.Nullable;
import org.webrtc.CalledByNative;
import org.webrtc.VideoCodecInfo;
import org.webrtc.VideoDecoder;
import org.webrtc.VideoDecoderFactory;
/* compiled from: VideoDecoderFactory */
public final /* synthetic */ class q0 {
@Nullable
@Deprecated
public static VideoDecoder a(VideoDecoderFactory videoDecoderFactory, String str) {
throw new UnsupportedOperationException("Deprecated and not implemented.");
}
@Nullable
@CalledByNative
public static VideoDecoder b(VideoDecoderFactory videoDecoderFactory, VideoCodecInfo videoCodecInfo) {
return videoDecoderFactory.createDecoder(videoCodecInfo.getName());
}
@CalledByNative
public static VideoCodecInfo[] c(VideoDecoderFactory videoDecoderFactory) {
return new VideoCodecInfo[0];
}
}