package org.webrtc; import org.webrtc.VideoEncoder; /* loaded from: classes3.dex */ public abstract class WrappedNativeVideoEncoder implements VideoEncoder { @Override // org.webrtc.VideoEncoder public abstract long createNativeVideoEncoder(); @Override // org.webrtc.VideoEncoder public abstract boolean isHardwareEncoder(); @Override // org.webrtc.VideoEncoder public final VideoCodecStatus initEncode(VideoEncoder.Settings settings, VideoEncoder.Callback callback) { throw new UnsupportedOperationException("Not implemented."); } @Override // org.webrtc.VideoEncoder public final VideoCodecStatus release() { throw new UnsupportedOperationException("Not implemented."); } @Override // org.webrtc.VideoEncoder public final VideoCodecStatus encode(VideoFrame videoFrame, VideoEncoder.EncodeInfo encodeInfo) { throw new UnsupportedOperationException("Not implemented."); } @Override // org.webrtc.VideoEncoder public final VideoCodecStatus setRateAllocation(VideoEncoder.BitrateAllocation bitrateAllocation, int i) { throw new UnsupportedOperationException("Not implemented."); } @Override // org.webrtc.VideoEncoder public final VideoEncoder.ScalingSettings getScalingSettings() { throw new UnsupportedOperationException("Not implemented."); } @Override // org.webrtc.VideoEncoder public final String getImplementationName() { throw new UnsupportedOperationException("Not implemented."); } }