Class OutgoingVideoConstraints
- Object
-
- OutgoingVideoConstraints
-
public final class OutgoingVideoConstraints extends Object
Hold properties that configure OutgoingVideoConstraints
-
-
Constructor Summary
Constructors Constructor Description OutgoingVideoConstraints()
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.Integer
getMaxBitrateInBps()
Set a constraint on bitrateInteger
getMaxFrameRate()
Set a constraint on frame rateInteger
getMaxHeight()
Set a constraint on heightInteger
getMaxWidth()
Set a constraint on widthOutgoingVideoConstraints
setMaxBitrateInBps(Integer value)
Set a constraint on bitrateOutgoingVideoConstraints
setMaxFrameRate(Integer value)
Set a constraint on frame rateOutgoingVideoConstraints
setMaxHeight(Integer value)
Set a constraint on heightOutgoingVideoConstraints
setMaxWidth(Integer value)
Set a constraint on width
-
-
-
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
-
getMaxHeight
public Integer getMaxHeight()
Set a constraint on height
-
setMaxHeight
public OutgoingVideoConstraints setMaxHeight(Integer value)
Set a constraint on height- Parameters:
value
- The new value.
-
getMaxWidth
public Integer getMaxWidth()
Set a constraint on width
-
setMaxWidth
public OutgoingVideoConstraints setMaxWidth(Integer value)
Set a constraint on width- Parameters:
value
- The new value.
-
getMaxFrameRate
public Integer getMaxFrameRate()
Set a constraint on frame rate
-
setMaxFrameRate
public OutgoingVideoConstraints setMaxFrameRate(Integer value)
Set a constraint on frame rate- Parameters:
value
- The new value.
-
getMaxBitrateInBps
public Integer getMaxBitrateInBps()
Set a constraint on bitrate
-
setMaxBitrateInBps
public OutgoingVideoConstraints setMaxBitrateInBps(Integer value)
Set a constraint on bitrate- Parameters:
value
- The new value.
-
-