Camera2Interop.Extender

@RequiresApi(value = 21)
class Camera2Interop.Extender<T>


Extends a ExtendableBuilder to add Camera2 options.

Parameters
<T>

the type being built by the extendable builder.

Summary

Public constructors

Extender(baseBuilder: ExtendableBuilder<T!>)

Creates an Extender that can be used to add Camera2 options to another Builder.

Public functions

Camera2Interop.Extender<T!>
<ValueT> setCaptureRequestOption(
    key: CaptureRequest.Key<ValueT!>,
    value: ValueT
)

Sets a CaptureRequest.Key and Value on the configuration.

Camera2Interop.Extender<T!>

Sets a CameraDevice.StateCallback.

Camera2Interop.Extender<T!>
@RequiresApi(value = 28)
setPhysicalCameraId(cameraId: String)

Set the ID of the physical camera to get output from.

Camera2Interop.Extender<T!>

Sets a CameraCaptureSession.CaptureCallback.

Camera2Interop.Extender<T!>

Sets a CameraCaptureSession.StateCallback.

Camera2Interop.Extender<T!>
@RequiresApi(value = 33)
setStreamUseCase(streamUseCase: Long)

Sets a stream use case flag on the given extendable builder.

Public constructors

Extender

Added in 1.0.0
Extender(baseBuilder: ExtendableBuilder<T!>)

Creates an Extender that can be used to add Camera2 options to another Builder.

Parameters
baseBuilder: ExtendableBuilder<T!>

The builder being extended.

Public functions

setCaptureRequestOption

Added in 1.0.0
fun <ValueT> setCaptureRequestOption(
    key: CaptureRequest.Key<ValueT!>,
    value: ValueT
): Camera2Interop.Extender<T!>

Sets a CaptureRequest.Key and Value on the configuration.

The value will override any value set by CameraX internally with the risk of interfering with some CameraX CameraControl APIs as well as 3A behavior.

Parameters
<ValueT>

The type of the value.

key: CaptureRequest.Key<ValueT!>

The CaptureRequest.Key which will be set.

value: ValueT

The value for the key.

Returns
Camera2Interop.Extender<T!>

The current Extender.

setDeviceStateCallback

Added in 1.0.0
fun setDeviceStateCallback(stateCallback: CameraDevice.StateCallback): Camera2Interop.Extender<T!>

Sets a CameraDevice.StateCallback.

The caller is expected to use the CameraDevice instance accessed through the callback methods responsibly. Generally safe usages include: (1) querying the device for its id, (2) using the callbacks to determine what state the device is currently in. Generally unsafe usages include: (1) creating a new CameraCaptureSession, (2) creating a new CaptureRequest, (3) closing the device. When the caller uses the device beyond the safe usage limits, the usage may still work in conjunction with CameraX, but any strong guarantees provided by CameraX about the validity of the camera state become void.

Parameters
stateCallback: CameraDevice.StateCallback

The CameraDevice.StateCallback.

Returns
Camera2Interop.Extender<T!>

The current Extender.

setPhysicalCameraId

Added in 1.1.0
@RequiresApi(value = 28)
fun setPhysicalCameraId(cameraId: String): Camera2Interop.Extender<T!>

Set the ID of the physical camera to get output from.

In the case one logical camera is made up of multiple physical cameras, this call forces the physical camera with the specified camera ID to produce image.

The valid physical camera IDs can be queried by CameraCharacteristics .getPhysicalCameraIds on API >= 28. Passing in an invalid physical camera ID will be ignored.

On API <= 27, the physical camera ID will be ignored since logical camera is not supported on these API levels.

Currently it doesn't support binding use cases with different physical camera IDs. If use cases with different physical camera IDs are bound at the same time, an IllegalArgumentException will be thrown.

Parameters
cameraId: String

The desired camera ID.

Returns
Camera2Interop.Extender<T!>

The current Extender.

setSessionCaptureCallback

Added in 1.0.0
fun setSessionCaptureCallback(
    captureCallback: CameraCaptureSession.CaptureCallback
): Camera2Interop.Extender<T!>

Sets a CameraCaptureSession.CaptureCallback.

The caller is expected to use the CameraCaptureSession instance accessed through the callback methods responsibly. Generally safe usages include: (1) querying the session for its properties. Generally unsafe usages include: (1) submitting a new , (2) stopping an existing CaptureRequest, (3) closing the session, (4) attaching a new android.view.Surface to the session. When the caller uses the session beyond the safe usage limits, the usage may still work in conjunction with CameraX, but any strong guarantees provided by CameraX about the validity of the camera state become void.

The caller is generally free to use the CaptureRequest and instances accessed through the callback methods.

Returns
Camera2Interop.Extender<T!>

The current Extender.

setSessionStateCallback

Added in 1.0.0
fun setSessionStateCallback(
    stateCallback: CameraCaptureSession.StateCallback
): Camera2Interop.Extender<T!>

Sets a CameraCaptureSession.StateCallback.

The caller is expected to use the CameraCaptureSession instance accessed through the callback methods responsibly. Generally safe usages include: (1) querying the session for its properties, (2) using the callbacks to determine what state the session is currently in. Generally unsafe usages include: (1) submitting a new , (2) stopping an existing CaptureRequest, (3) closing the session, (4) attaching a new android.view.Surface to the session. When the caller uses the session beyond the safe usage limits, the usage may still work in conjunction with CameraX, but any strong guarantees provided by CameraX about the validity of the camera state become void.

Returns
Camera2Interop.Extender<T!>

The current Extender.

setStreamUseCase

Added in 1.2.0
@RequiresApi(value = 33)
fun setStreamUseCase(streamUseCase: Long): Camera2Interop.Extender<T!>

Sets a stream use case flag on the given extendable builder.

Requires API 33 or above.

Calling this method will set the stream use case for all CameraX outputs for the same stream session. Valid use cases available on devices can be found in SCALER_AVAILABLE_STREAM_USE_CASES

No app should call this without double-checking the supported list first, or at least REQUEST_AVAILABLE_CAPABILITIES_STREAM_USE_CASE capability which guarantees quite a few use cases.

See setStreamUseCase to see how Camera2 framework uses this.

Parameters
streamUseCase: Long

The stream use case to set.

Returns
Camera2Interop.Extender<T!>

The current Extender.