AgoraFocalLengthInfo

Focal length information supported by the camera, including the camera direction and focal length type.

public class AgoraFocalLengthInfo {

  public int cameraDirection;

  public int focalLengthType;

  @CalledByNative
  public AgoraFocalLengthInfo(int cameraDirection, int focalLengthType) {
    this.cameraDirection = cameraDirection;
    this.focalLengthType = focalLengthType;
  }

  @Override
  public String toString() {
    return "AgoraFocalLengthInfo{" +
        "cameraDirection=" + cameraDirection +
        ", focalLengthType=" + focalLengthType +
        '}';
  }
}
Since
v4.3.1

Parameters

cameraDirection
The camera direction. See CAMERA_DIRECTION.
focalLengthType
The focal length type. See CAMERA_FOCAL_LENGTH_TYPE.