Class RawOutgoingVideoStreamOptions
- Object
-
- RawOutgoingVideoStreamOptions
-
public final class RawOutgoingVideoStreamOptions extends Object
Defines the options required for creating a virtual video device. Changes to RawOutgoingVideoStreamOptions do not affect previously created virtual video devices.
-
-
Constructor Summary
Constructors Constructor Description RawOutgoingVideoStreamOptions()
Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.List<VideoStreamFormat>
getFormats()
Returns an array of the video formats supported by the virtual video streamvoid
setFormats(List<VideoStreamFormat> videoStreamFormatList)
Sets an array of the video formats supported by the virtual video device.
-
-
-
Method Detail
-
finalize
protected void finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.- Overrides:
finalize
in classObject
-
getFormats
public List<VideoStreamFormat> getFormats()
Returns an array of the video formats supported by the virtual video stream
-
setFormats
public void setFormats(List<VideoStreamFormat> videoStreamFormatList)
Sets an array of the video formats supported by the virtual video device. Latter changes to this property do not propagate to already created VirtualVideoDevices. The order of the provided formats do not influence which format is selected. Other factors, like network conditions, are used for selecting the format.- Parameters:
videoStreamFormatList
- Iterator pointing to a collection of video formats supported by the app.
-
-