VideoModulePosition enum

The frame position of the video observer.

Inheritance
Annotations
  • @JsonEnum(alwaysCreate: true)

Constructors

VideoModulePosition()
const

Values

positionPostCapturer → const VideoModulePosition

1: The location of the locally collected video data after preprocessing corresponds to the onCaptureVideoFrame callback. The observed video here has the effect of video pre-processing, which can be verified by enabling image enhancement, virtual background, or watermark.

positionPreRenderer → const VideoModulePosition

2: The pre-renderer position, which corresponds to the video data in the onRenderVideoFrame callback.

positionPreEncoder → const VideoModulePosition

4: The pre-encoder position, which corresponds to the video data in the onPreEncodeVideoFrame callback. The observed video here has the effects of video pre-processing and encoding pre-processing. To verify the pre-processing effects of the video, you can enable image enhancement, virtual background, or watermark. To verify the pre-encoding processing effect, you can set a lower frame rate (for example, 5 fps).

positionPostCapturerOrigin → const VideoModulePosition

8: The position after local video capture and before pre-processing. The observed video here does not have pre-processing effects, which can be verified by enabling image enhancement, virtual background, or watermarks.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<VideoModulePosition>
A constant List of the values in this enum, in order of their declaration.