NERoomVideoProfileType

@objc
public enum NERoomVideoProfileType : UInt

视频 profile 类型

  • 普清(160×120/90 @15fps)

    Declaration

    Swift

    case lowest = 0
  • low

    标清(320x180/240 @15fps)

    Declaration

    Swift

    case low = 1
  • 高清(640x360/480 @30fps)

    Declaration

    Swift

    case standard = 2
  • 超清(1280x720 @30fps)

    Declaration

    Swift

    case HD720P = 3
  • 1080P(1920x1080 @30fps)

    Declaration

    Swift

    case HD1080P = 4
  • FakeVideo标识

    仅在回调中显示。请勿主动设置,否则SDK会按照kNERtcVideoProfileStandard处理。 当远端在纯音频状态发送 SEI 时,本端将会收到远端的onNERtcEngineUserVideoDidStartWithUserID 回调,其中 maxProfile 参数为FAKE_PROFILE, 表示对端发送 16*16 的FakeVideo,此时如果本端需要接收远端的SEI信息,只需要订阅一下远端的视频即可,无须设置远端画布

    Declaration

    Swift

    case fake = 5