public final enum

LBAirLinkPIPDisplay

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

Class Overview

Defines the combination of video sources to form the secondary output video. The secondary output can display video streams from one or two input sources. When the encode mode is single:
Source 1 represents video from one of the Source1Only input ports (HDMI or AV).
Source 2 represents video from EXT input port (HD Gimbal Camera).
When the encode mode is dual:
Source 1 represents video from HDMI input port.
Source 2 represents video from AV input port.

Summary

Enum Values
LBAirLinkPIPDisplay  Source1Main  Displays the video from the Source 1 as the main subject, and the video from Source 1 in a mini window (Picture in picture, or PIP). 
LBAirLinkPIPDisplay  Source1Only  Displays video from Source 1 only. 
LBAirLinkPIPDisplay  Source2Main  Displays the video from the Source 2 as the main subject, and the video from Source 1 in a mini window (Picture in picture, or PIP). 
LBAirLinkPIPDisplay  Source2Only  Displays video from Source 2 only. 
LBAirLinkPIPDisplay  Unknown  Unknown  
Public Methods
boolean _equals(int b)
Compares the specified integer value with the real value of an enum constant.
static LBAirLinkPIPDisplay 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 LBAirLinkPIPDisplay valueOf(String name)
final static LBAirLinkPIPDisplay[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final LBAirLinkPIPDisplay Source1Main

Displays the video from the Source 1 as the main subject, and the video from Source 1 in a mini window (Picture in picture, or PIP).

public static final LBAirLinkPIPDisplay Source1Only

Displays video from Source 1 only.
When the current encode mode is single, the secondary output will display video from HDMI or AV input.
When the current encode mode is dual, the secondary output will display video from HDMI input.

public static final LBAirLinkPIPDisplay Source2Main

Displays the video from the Source 2 as the main subject, and the video from Source 1 in a mini window (Picture in picture, or PIP).

public static final LBAirLinkPIPDisplay Source2Only

Displays video from Source 2 only. When the current encode mode is single, the secondary output will display video from HD Gimbal camera. When the current encode mode is dual, the secondary output will display video from HDMI input.

public static final LBAirLinkPIPDisplay 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 integer value to be compared.
Returns
  • true if the values are equal, false otherwise.

public static LBAirLinkPIPDisplay 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 LBAirLinkPIPDisplay valueOf (String name)

public static final LBAirLinkPIPDisplay[] values ()