mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
49 lines
2.2 KiB
Java
49 lines
2.2 KiB
Java
package org.webrtc;
|
|
|
|
import org.webrtc.VideoFrame;
|
|
import org.webrtc.VideoProcessor;
|
|
import org.webrtc.VideoSource;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
/* loaded from: classes3.dex */
|
|
public class NativeAndroidVideoTrackSource {
|
|
private final long nativeAndroidVideoTrackSource;
|
|
|
|
private static native VideoProcessor.FrameAdaptationParameters nativeAdaptFrame(long j, int i, int i2, int i3, long j2);
|
|
|
|
private static native void nativeAdaptOutputFormat(long j, int i, int i2, Integer num, int i3, int i4, Integer num2, Integer num3);
|
|
|
|
private static native void nativeOnFrameCaptured(long j, int i, long j2, VideoFrame.Buffer buffer);
|
|
|
|
private static native void nativeSetIsScreencast(long j, boolean z);
|
|
|
|
private static native void nativeSetState(long j, boolean z);
|
|
|
|
public NativeAndroidVideoTrackSource(long j) {
|
|
this.nativeAndroidVideoTrackSource = j;
|
|
}
|
|
|
|
public void setState(boolean z) {
|
|
nativeSetState(this.nativeAndroidVideoTrackSource, z);
|
|
}
|
|
|
|
public VideoProcessor.FrameAdaptationParameters adaptFrame(VideoFrame videoFrame) {
|
|
return nativeAdaptFrame(this.nativeAndroidVideoTrackSource, videoFrame.getBuffer().getWidth(), videoFrame.getBuffer().getHeight(), videoFrame.getRotation(), videoFrame.getTimestampNs());
|
|
}
|
|
|
|
public void onFrameCaptured(VideoFrame videoFrame) {
|
|
nativeOnFrameCaptured(this.nativeAndroidVideoTrackSource, videoFrame.getRotation(), videoFrame.getTimestampNs(), videoFrame.getBuffer());
|
|
}
|
|
|
|
public void adaptOutputFormat(VideoSource.AspectRatio aspectRatio, Integer num, VideoSource.AspectRatio aspectRatio2, Integer num2, Integer num3) {
|
|
nativeAdaptOutputFormat(this.nativeAndroidVideoTrackSource, aspectRatio.width, aspectRatio.height, num, aspectRatio2.width, aspectRatio2.height, num2, num3);
|
|
}
|
|
|
|
public void setIsScreencast(boolean z) {
|
|
nativeSetIsScreencast(this.nativeAndroidVideoTrackSource, z);
|
|
}
|
|
|
|
static VideoProcessor.FrameAdaptationParameters createFrameAdaptationParameters(int i, int i2, int i3, int i4, int i5, int i6, long j, boolean z) {
|
|
return new VideoProcessor.FrameAdaptationParameters(i, i2, i3, i4, i5, i6, j, z);
|
|
}
|
|
}
|