@UnstableApi
public interface VideoGraph

Known direct subclasses
MultipleInputVideoGraph

A VideoGraph that handles multiple input streams.

PreviewingVideoGraph

A VideoGraph specific to previewing.

SingleInputVideoGraph

A VideoGraph that handles one input stream.

Known indirect subclasses
PreviewingSingleInputVideoGraph

A Previewing specific implementation of .


Represents a graph for processing decoded video frames.

Summary

Nested types

Listener for video frame processing events.

Public methods

abstract VideoFrameProcessor
getProcessor(int inputId)

Returns the VideoFrameProcessor that handles the processing for an input registered via registerInput.

abstract boolean

Returns whether the VideoGraph has produced a frame with zero presentation timestamp.

abstract void

Initialize the VideoGraph.

abstract int

Registers a new input to the VideoGraph.

abstract void

Releases the associated resources.

abstract void

Sets the output surface and supporting information.

Public methods

getProcessor

abstract VideoFrameProcessor getProcessor(int inputId)

Returns the VideoFrameProcessor that handles the processing for an input registered via registerInput. If the inputId is not registered before, this method will throw an IllegalStateException.

hasProducedFrameWithTimestampZero

abstract boolean hasProducedFrameWithTimestampZero()

Returns whether the VideoGraph has produced a frame with zero presentation timestamp.

initialize

abstract void initialize()

Initialize the VideoGraph.

This method must be called before calling other methods.

If the method throws, the caller must call release.

registerInput

abstract int registerInput()

Registers a new input to the VideoGraph.

A underlying processing VideoFrameProcessor is created every time this method is called.

If the method throws, the caller must call release.

Returns
int

The id of the registered input, which can be used to get the underlying via getProcessor.

release

abstract void release()

Releases the associated resources.

This VideoGraph instance must not be used after this method is called.

setOutputSurfaceInfo

abstract void setOutputSurfaceInfo(@Nullable SurfaceInfo outputSurfaceInfo)

Sets the output surface and supporting information.

The new output SurfaceInfo is applied from the next output frame rendered onwards. If the output SurfaceInfo is null, the VideoGraph will stop rendering pending frames and resume rendering once a non-null SurfaceInfo is set.

If the dimensions given in SurfaceInfo do not match the output size after applying the final effect the frames are resized before rendering to the surface and letter/pillar-boxing is applied.

The caller is responsible for tracking the lifecycle of the surface including calling this method with a new surface if it is destroyed. When this method returns, the previous output surface is no longer being used and can safely be released by the caller.