Struct ExtraPreviewStreamInfo

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.Camera.dll
API Level:
10

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

C#
Copy
public struct ExtraPreviewStreamInfo

Constructors

View Source

ExtraPreviewStreamInfo(Int32, CameraPixelFormat, Size, Int32)

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
Int32 streamId

The stream ID.

CameraPixelFormat format

The preview format.

Size size

The preview resolution.

Int32 fps

The FPS.

API Level: 10

Properties

View Source

Format

Gets the extra preview format.

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

The camera pixel format.

API Level: 10
View Source

Fps

Gets the FPS.

Declaration
C#
Copy
public int Fps { get; }
Property Value
Type Description
Int32
API Level: 10
View Source

Size

Gets the extra preview resolution.

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

A resolution of extra preview.

API Level: 10
View Source

StreamId

Gets the stream ID.

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

The stream ID.

API Level: 10

Methods

View Source

ToString()

Returns a string that represents the current object.

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

A string that represents the current object.

Overrides
System.ValueType.ToString()
API Level: 10