Rabbit-R1/switch port/java/sources/org/webrtc/VideoCapturer.java

19 lines
441 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package org.webrtc;
import android.content.Context;
/* loaded from: classes3.dex */
public interface VideoCapturer {
void changeCaptureFormat(int i, int i2, int i3);
void dispose();
void initialize(SurfaceTextureHelper surfaceTextureHelper, Context context, CapturerObserver capturerObserver);
boolean isScreencast();
void startCapture(int i, int i2, int i3);
void stopCapture() throws InterruptedException;
}