mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 01:22:33 -06:00
19 lines
441 B
Java
19 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;
|
||
|
}
|