Interface KeyFrameControl.KeyFrameRequester
-
- Enclosing interface:
- KeyFrameControl
public static interface KeyFrameControl.KeyFrameRequesterRepresents a way for a VideoMediaStream to request a key frame from its remote peer.- Author:
- Lyubomir Marinov
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_PREFERREDThe default value of thePREFERRED_PNAMEConfigurationService property.static StringPREFERRED_PNAMEThe name of the ConfigurationService property which specifies the preferred KeyFrameRequester to be used.static StringRTCPThe value of thePREFERRED_PNAMEConfigurationService property which indicates that the RTCP KeyFrameRequester is preferred.static StringSIGNALINGThe value of thePREFERRED_PNAMEConfigurationService property which indicates that the signaling/protocol KeyFrameRequester is preferred.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanrequestKeyFrame()Requests a key frame from the remote peer of the associated VideoMediaStream.
-
-
-
Field Detail
-
PREFERRED_PNAME
static final String PREFERRED_PNAME
The name of the ConfigurationService property which specifies the preferred KeyFrameRequester to be used.- See Also:
- Constant Field Values
-
RTCP
static final String RTCP
The value of thePREFERRED_PNAMEConfigurationService property which indicates that the RTCP KeyFrameRequester is preferred.- See Also:
- Constant Field Values
-
SIGNALING
static final String SIGNALING
The value of thePREFERRED_PNAMEConfigurationService property which indicates that the signaling/protocol KeyFrameRequester is preferred.- See Also:
- Constant Field Values
-
DEFAULT_PREFERRED
static final String DEFAULT_PREFERRED
The default value of thePREFERRED_PNAMEConfigurationService property.- See Also:
- Constant Field Values
-
-
Method Detail
-
requestKeyFrame
boolean requestKeyFrame()
Requests a key frame from the remote peer of the associated VideoMediaStream.- Returns:
- true if this KeyFrameRequester has indeed requested a key frame from the remote peer of the associated VideoMediaStream in response to the call; otherwise, false
-
-