Package tvi.webrtc
Interface CameraVideoCapturer.CameraEventsHandler
-
- Enclosing interface:
- CameraVideoCapturer
public static interface CameraVideoCapturer.CameraEventsHandlerCamera events handler - can be used to be notifed about camera events. The callbacks are executed from an arbitrary thread.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonCameraClosed()voidonCameraDisconnected()voidonCameraError(java.lang.String errorDescription)voidonCameraFreezed(java.lang.String errorDescription)voidonCameraOpening(java.lang.String cameraName)voidonFirstFrameAvailable()
-
-
-
Method Detail
-
onCameraError
void onCameraError(java.lang.String errorDescription)
-
onCameraDisconnected
void onCameraDisconnected()
-
onCameraFreezed
void onCameraFreezed(java.lang.String errorDescription)
-
onCameraOpening
void onCameraOpening(java.lang.String cameraName)
-
onFirstFrameAvailable
void onFirstFrameAvailable()
-
onCameraClosed
void onCameraClosed()
-
-