public final enum

VideoDataChannel

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.VideoDataChannel

Class Overview

Video Data Channel for Lightbridge.

Summary

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

Enum Values

public static final VideoDataChannel AV

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.

public static final VideoDataChannel FPVCamera

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.

public static final VideoDataChannel HDGimbal

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.

public static final VideoDataChannel HDMI

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.

public static final VideoDataChannel Unknown

Unknown

Public Methods

public boolean _equals (int b)

Compares the specified integer value with the real value of an enum constant.

Parameters
b The specified integer value
Returns
  • true if the values are equal, false otherwise.

public static VideoDataChannel find (int value)

Returns the enum constant of the type for the specified integer value.

Parameters
value The specified integer value.
Returns
  • The enum constant of this type.

public int value ()

Returns the real value of an enum constant.

Returns
  • The real value.

public static VideoDataChannel valueOf (String name)

public static final VideoDataChannel[] values ()