mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
29 lines
1 KiB
Java
29 lines
1 KiB
Java
package org.webrtc;
|
|
|
|
import org.webrtc.VideoDecoder;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public abstract class WrappedNativeVideoDecoder implements VideoDecoder {
|
|
@Override // org.webrtc.VideoDecoder
|
|
public abstract long createNativeVideoDecoder();
|
|
|
|
@Override // org.webrtc.VideoDecoder
|
|
public final VideoCodecStatus initDecode(VideoDecoder.Settings settings, VideoDecoder.Callback callback) {
|
|
throw new UnsupportedOperationException("Not implemented.");
|
|
}
|
|
|
|
@Override // org.webrtc.VideoDecoder
|
|
public final VideoCodecStatus release() {
|
|
throw new UnsupportedOperationException("Not implemented.");
|
|
}
|
|
|
|
@Override // org.webrtc.VideoDecoder
|
|
public final VideoCodecStatus decode(EncodedImage encodedImage, VideoDecoder.DecodeInfo decodeInfo) {
|
|
throw new UnsupportedOperationException("Not implemented.");
|
|
}
|
|
|
|
@Override // org.webrtc.VideoDecoder
|
|
public final String getImplementationName() {
|
|
throw new UnsupportedOperationException("Not implemented.");
|
|
}
|
|
}
|