Package org.jitsi.service.neomedia.event
Class RTCPFeedbackMessageEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.jitsi.service.neomedia.event.RTCPFeedbackMessageEvent
-
- All Implemented Interfaces:
Serializable
public class RTCPFeedbackMessageEvent extends EventObject
Represents an event coming from RTCP that meant to tell codec to do something (i.e send a keyframe, ...).- Author:
- Sebastien Vincent
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intFMT_FIRFull Intra Request (FIR) RTCP feedback message type.static intFMT_PLIPicture Loss Indication (PLI) feedback message type.static intPT_PSThe payload type (PT) of payload-specific RTCP feedback messages.static intPT_TLThe payload type (PT) of transport layer RTCP feedback messages.-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description RTCPFeedbackMessageEvent(Object source, int feedbackMessageType, int payloadType)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetFeedbackMessageType()Get feedback message type (FMT).intgetPayloadType()Get payload type (PT) of RTCP packet.-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Field Detail
-
FMT_FIR
public static final int FMT_FIR
Full Intra Request (FIR) RTCP feedback message type.- See Also:
- Constant Field Values
-
FMT_PLI
public static final int FMT_PLI
Picture Loss Indication (PLI) feedback message type.- See Also:
- Constant Field Values
-
PT_PS
public static final int PT_PS
The payload type (PT) of payload-specific RTCP feedback messages.- See Also:
- Constant Field Values
-
PT_TL
public static final int PT_TL
The payload type (PT) of transport layer RTCP feedback messages.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RTCPFeedbackMessageEvent
public RTCPFeedbackMessageEvent(Object source, int feedbackMessageType, int payloadType)
Constructor.- Parameters:
source- sourcefeedbackMessageType- feedback message type (FMT)payloadType- payload type (PT)
-
-