Struct ExtraPreviewStreamInfo

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.Camera.dll

Provides the ability to get the information of extra preview stream.

C#
Copy
public struct ExtraPreviewStreamInfo

Constructors

View Source

ExtraPreviewStreamInfo(int, CameraPixelFormat, Size, int)

Initializes a new instance of the ExtraPreviewStreamInfo class.

Declaration
C#
Copy
public ExtraPreviewStreamInfo(int streamId, CameraPixelFormat format, Size size, int fps)
Parameters
Type Name Description
int streamId

The stream ID.

CameraPixelFormat format

The preview format.

Size size

The preview resolution.

int fps

The FPS.

Properties

View Source

Format

Gets the extra preview format.

Declaration
C#
Copy
public readonly CameraPixelFormat Format { get; }
Property Value
Type Description
CameraPixelFormat

The camera pixel format.

View Source

Fps

Gets the FPS.

Declaration
C#
Copy
public readonly int Fps { get; }
Property Value
Type Description
int
View Source

Size

Gets the extra preview resolution.

Declaration
C#
Copy
public readonly Size Size { get; }
Property Value
Type Description
Size

A resolution of extra preview.

View Source

StreamId

Gets the stream ID.

Declaration
C#
Copy
public readonly int StreamId { get; }
Property Value
Type Description
int

The stream ID.

Methods

View Source

ToString()

Returns a string that represents the current object.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
string

A string that represents the current object.

Overrides
System.ValueType.ToString()