Rabbit-R1/android (non root)/java/sources/org/webrtc/WrappedNativeVideoEncoder.java
2024-05-21 17:08:36 -04:00

42 lines
1.5 KiB
Java

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.");
}
}