java.lang.Object | ||
↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
↳ | dji.common.VideoDataChannel |
Video Data Channel for Lightbridge.
Enum Values | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
VideoDataChannel | AV | Video from AV is received by the delegate method. | |||||||||
VideoDataChannel | FPVCamera | Video from AV or HDMI is received by the delegate method. | |||||||||
VideoDataChannel | HDGimbal | Video from HD Gimbal is received by the delegate method. | |||||||||
VideoDataChannel | HDMI | Video from HDMI is received by the delegate method. | |||||||||
VideoDataChannel | Unknown | Unknown |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
boolean |
_equals(int b)
Compares the specified integer value with the real value of an enum constant.
| ||||||||||
static VideoDataChannel |
find(int value)
Returns the enum constant of the type for the specified integer value.
| ||||||||||
int |
value()
Returns the real value of an enum constant.
| ||||||||||
static VideoDataChannel | valueOf(String name) | ||||||||||
final static VideoDataChannel[] | values() |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Enum
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.lang.Comparable
|
Video from AV is received by the delegate method. It can only be set when the encode mode is `Dual` and the dual encode mode percent is not 100%. When the encode mode is `Dual` and the dual encode mode percent is 0%, the video data channel will be set to `AV` automatically.
Video from AV or HDMI is received by the delegate method. It can only be set when the encode mode is `Single` and the FPV video bandwidth percent is non-zero. When the encode mode is `Single` and the FPV video bandwidth percent is 100%, the video data channel will be set to `FPVCamera` automatically.
Video from HD Gimbal is received by the delegate method. It can only be set when the encode mode is `Single` and the FPV video bandwidth percent is not 100%. When the encode mode is `Single` and the FPV video bandwidth percent is 0%, the video data channel will be set to `HDGimbal` automatically.
Video from HDMI is received by the delegate method. It can only be set when the encode mode is `Dual` and the dual encode mode percent is not 0%. When the encode mode is `Dual` and the dual encode mode percent is 100%, the video data channel will be set to `HDMI` automatically.
Compares the specified integer value with the real value of an enum constant.
b | The specified integer value |
---|
true
if the values are equal, false
otherwise.
Returns the enum constant of the type for the specified integer value.
value | The specified integer value. |
---|
Returns the real value of an enum constant.