Package tvi.webrtc
Interface CameraVideoCapturer.CameraEventsHandler
-
- Enclosing interface:
- CameraVideoCapturer
public static interface CameraVideoCapturer.CameraEventsHandler
Camera 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 void
onCameraClosed()
void
onCameraDisconnected()
void
onCameraError(java.lang.String errorDescription)
void
onCameraFreezed(java.lang.String errorDescription)
void
onCameraOpening(java.lang.String cameraName)
void
onFirstFrameAvailable()
-
-
-
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()
-
-