public class

SkylinkCaptureFormat

extends Object
java.lang.Object
   ↳ sg.com.temasys.skylink.sdk.rtc.SkylinkCaptureFormat

Class Overview

A Skylink class that represents a video CaptureFormat, including the parameters that define the CaptureFormat, such as video width, heigth, frame rate range.

Summary

Public Constructors
SkylinkCaptureFormat()
SkylinkCaptureFormat(int width, int height, int fpksMin, int fpksMax)
Create a SkylinkCaptureFormat by supplying the parameters that define the format.
Public Methods
int getFpksMax()
Get the maximum video frame rate in number of frames per 1000 seconds.
int getFpksMin()
Get the minimum video frame rate in number of frames per 1000 seconds.
int getFpsMax()
Get the approximate maximum video frame rate in number of frames per second.
int getFpsMin()
Get the approximate minimum video frame rate in number of frames per second.
int getHeight()
Get the video height in number of pixels.
int getWidth()
Get the video width in number of pixels.
boolean isEqual(SkylinkCaptureFormat format)
Asserts if the SkylinkCaptureFormat parameters specified in this instance are equal to the instance being compared to.
void setFpksMax(int fpksMax)
Set the maximum video frame rate in number of frames per 1000 seconds.
void setFpksMin(int fpksMin)
Set the minimum video frame rate in number of frames per 1000 seconds.
void setFpsMax(int fpsMax)
Set the maximum video frame rate in number of frames per second.
void setFpsMin(int fpksMin)
Set the minimum video frame rate in number of frames per second.
void setHeight(int height)
Set the video height in number of pixels.
void setWidth(int width)
Set the video width in number of pixels.
String toString()
String toStringCompact()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public SkylinkCaptureFormat ()

public SkylinkCaptureFormat (int width, int height, int fpksMin, int fpksMax)

Create a SkylinkCaptureFormat by supplying the parameters that define the format.

Parameters
width Width in number of pixels.
height Height in number of pixels.
fpksMin Minimum frame rate in number of frames per 1000 seconds.
fpksMax Maximum frame rate in number of frames per 1000 seconds.

Public Methods

public int getFpksMax ()

Get the maximum video frame rate in number of frames per 1000 seconds.

public int getFpksMin ()

Get the minimum video frame rate in number of frames per 1000 seconds.

public int getFpsMax ()

Get the approximate maximum video frame rate in number of frames per second.

public int getFpsMin ()

Get the approximate minimum video frame rate in number of frames per second.

public int getHeight ()

Get the video height in number of pixels.

public int getWidth ()

Get the video width in number of pixels.

public boolean isEqual (SkylinkCaptureFormat format)

Asserts if the SkylinkCaptureFormat parameters specified in this instance are equal to the instance being compared to.

Parameters
format The SkylinkCaptureFormat instance being compared to.

public void setFpksMax (int fpksMax)

Set the maximum video frame rate in number of frames per 1000 seconds.

public void setFpksMin (int fpksMin)

Set the minimum video frame rate in number of frames per 1000 seconds.

public void setFpsMax (int fpsMax)

Set the maximum video frame rate in number of frames per second.

public void setFpsMin (int fpksMin)

Set the minimum video frame rate in number of frames per second.

public void setHeight (int height)

Set the video height in number of pixels.

public void setWidth (int width)

Set the video width in number of pixels.

public String toString ()

public String toStringCompact ()