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