discord-jadx/app/src/main/java/org/webrtc/VideoCapturer.java

17 lines
408 B
Java
Raw Normal View History

2021-07-24 02:37:17 +00:00
package org.webrtc;
import android.content.Context;
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;
}