Struct ExtraPreviewStreamInfo
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.Camera.dll
Provides the ability to get the information of extra preview stream.
public struct ExtraPreviewStreamInfo
Constructors
View SourceExtraPreviewStreamInfo(int, CameraPixelFormat, Size, int)
Initializes a new instance of the ExtraPreviewStreamInfo class.
Declaration
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 SourceFormat
Gets the extra preview format.
Declaration
public readonly CameraPixelFormat Format { get; }
Property Value
Type | Description |
---|---|
CameraPixelFormat | The camera pixel format. |
Fps
Gets the FPS.
Declaration
public readonly int Fps { get; }
Property Value
Type | Description |
---|---|
int |
Size
Gets the extra preview resolution.
Declaration
public readonly Size Size { get; }
Property Value
Type | Description |
---|---|
Size | A resolution of extra preview. |
StreamId
Gets the stream ID.
Declaration
public readonly int StreamId { get; }
Property Value
Type | Description |
---|---|
int | The stream ID. |
Methods
View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A string that represents the current object. |
Overrides
System.ValueType.ToString()