pjsua_call_vid_strm_op class abstract

This enumeration represents video stream operation on a call. See also #pjsua_call_vid_strm_op_param for further info.

Constructors

pjsua_call_vid_strm_op()

Properties

hashCode int
The hash code for this object.
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

PJSUA_CALL_VID_STRM_ADD → const int
Add a new video stream. This will add a new m=video line to the media, regardless of whether existing video is/are present or not. This will cause re-INVITE or UPDATE to be sent to remote party.
PJSUA_CALL_VID_STRM_CHANGE_CAP_DEV → const int
Change capture device of a video stream. This will not send re-INVITE or UPDATE to remote party.
PJSUA_CALL_VID_STRM_CHANGE_DIR → const int
Change direction of a video stream. This operation can be used to activate or deactivate an existing video media. This will cause re-INVITE or UPDATE to be sent to remote party.
PJSUA_CALL_VID_STRM_NO_OP → const int
No operation
PJSUA_CALL_VID_STRM_REMOVE → const int
Remove/disable an existing video stream. This will cause re-INVITE or UPDATE to be sent to remote party.
PJSUA_CALL_VID_STRM_SEND_KEYFRAME → const int
Send keyframe in the video stream. This will force the stream to generate and send video keyframe as soon as possible. No re-INVITE/UPDATE is to be transmitted to remote with this operation.
PJSUA_CALL_VID_STRM_START_TRANSMIT → const int
Start transmitting video stream. This will cause previously stopped stream to start transmitting again. Note that no re-INVITE/UPDATE is to be transmitted to remote since this operation only operates on local stream.
PJSUA_CALL_VID_STRM_STOP_TRANSMIT → const int
Stop transmitting video stream. This will cause the stream to be paused in TX direction, causing it to stop sending any video packets. No re-INVITE/UPDATE is to be transmitted to remote with this operation.