Stay organized with collections Save and categorize content based on your preferences.

public final class ExtensionSessionConfiguration
extends Object

java.lang.Object
   ↳ android.hardware.camera2.params.ExtensionSessionConfiguration


A class that aggregates all supported arguments for CameraExtensionSession initialization.

Summary

Public constructors

ExtensionSessionConfiguration(int extension, List<OutputConfiguration> outputs, Executor executor, CameraExtensionSession.StateCallback listener)

Create a new ExtensionSessionConfiguration

Public methods

Executor getExecutor()

Retrieve the Executor for the CameraExtensionSession instance.

int getExtension()

Retrieve the extension type.

List<OutputConfiguration> getOutputConfigurations()

Retrieve the OutputConfiguration list for the capture session.

OutputConfiguration getPostviewOutputConfiguration()

Get the postview for still capture output configuration.

CameraExtensionSession.StateCallback getStateCallback()

Retrieve the CameraCaptureSession.StateCallback listener.

void setPostviewOutputConfiguration(OutputConfiguration postviewOutput)

Set the postview for still capture output configuration.

Inherited methods

From class java.lang.Object

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

ExtensionSessionConfiguration

public ExtensionSessionConfiguration (int extension, 
                List<OutputConfiguration> outputs, 
                Executor executor, 
                CameraExtensionSession.StateCallback listener)

Create a new ExtensionSessionConfiguration

Parameters
extension int: to be used for processing Value is either 0 or a combination of CameraExtensionCharacteristics.EXTENSION_AUTOMATIC, CameraExtensionCharacteristics.EXTENSION_FACE_RETOUCH, CameraExtensionCharacteristics.EXTENSION_BOKEH, CameraExtensionCharacteristics.EXTENSION_HDR, and CameraExtensionCharacteristics.EXTENSION_NIGHT
outputs List: a list of output configurations for the capture session This value cannot be null.
executor Executor: the executor which will be used for invoking the callbacks This value cannot be null.
listener CameraExtensionSession.StateCallback: callbacks to be invoked when the state of the CameraExtensionSession changes This value cannot be null.

Public methods

getExecutor

public Executor getExecutor ()

Retrieve the Executor for the CameraExtensionSession instance.

Returns
Executor The Executor on which the callback will be invoked. This value cannot be null.

getOutputConfigurations

public List<OutputConfiguration> getOutputConfigurations ()

Retrieve the OutputConfiguration list for the capture session.

Returns
List<OutputConfiguration> A list of output configurations for the capture session. This value cannot be null.

getPostviewOutputConfiguration

public OutputConfiguration getPostviewOutputConfiguration ()

Get the postview for still capture output configuration.

Returns
OutputConfiguration output configuration for postview This value may be null.

getStateCallback

public CameraExtensionSession.StateCallback getStateCallback ()

Retrieve the CameraCaptureSession.StateCallback listener.

Returns
CameraExtensionSession.StateCallback A state callback interface implementation. This value cannot be null.

setPostviewOutputConfiguration

public void setPostviewOutputConfiguration (OutputConfiguration postviewOutput)

Set the postview for still capture output configuration.

Parameters
postviewOutput OutputConfiguration: output configuration for postview This value may be null.

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2023-02-08 UTC.