mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
42 lines
1.5 KiB
Java
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.");
|
|
}
|
|
}
|