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]; } }