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

9 lines
179 B
Java

package org.webrtc;
public interface CapturerObserver {
void onCapturerStarted(boolean z2);
void onCapturerStopped();
void onFrameCaptured(VideoFrame videoFrame);
}