mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
rtcpbuffer: Add feedback message types from RFC 5104
These are Codec Control messages (CCM) https://bugzilla.gnome.org/show_bug.cgi?id=658419
This commit is contained in:
parent
38615abdd8
commit
82827df405
1 changed files with 16 additions and 1 deletions
|
@ -63,10 +63,17 @@ typedef enum
|
|||
* GstRTCPFBType:
|
||||
* @GST_RTCP_FB_TYPE_INVALID: Invalid type
|
||||
* @GST_RTCP_RTPFB_TYPE_NACK: Generic NACK
|
||||
* @GST_RTCP_RTPFB_TYPE_TMMBR: Temporary Maximum Media Stream Bit Rate Request
|
||||
* @GST_RTCP_RTPFB_TYPE_TMMBN: Temporary Maximum Media Stream Bit Rate
|
||||
* Notification
|
||||
* @GST_RTCP_PSFB_TYPE_PLI: Picture Loss Indication
|
||||
* @GST_RTCP_PSFB_TYPE_SLI: Slice Loss Indication
|
||||
* @GST_RTCP_PSFB_TYPE_RPSI: Reference Picture Selection Indication
|
||||
* @GST_RTCP_PSFB_TYPE_AFB: Application layer Feedback
|
||||
* @GST_RTCP_PSFB_TYPE_FIR: Full Intra Request Command
|
||||
* @GST_RTCP_PSFB_TYPE_TSTR: Temporal-Spatial Trade-off Request
|
||||
* @GST_RTCP_PSFB_TYPE_TSTN: Temporal-Spatial Trade-off Notification
|
||||
* @GST_RTCP_PSFB_TYPE_VBCN: Video Back Channel Message
|
||||
*
|
||||
* Different types of feedback messages.
|
||||
*
|
||||
|
@ -78,11 +85,19 @@ typedef enum
|
|||
GST_RTCP_FB_TYPE_INVALID = 0,
|
||||
/* RTPFB types */
|
||||
GST_RTCP_RTPFB_TYPE_NACK = 1,
|
||||
/* RTPFB types assigned in RFC 5104 */
|
||||
GST_RTCP_RTPFB_TYPE_TMMBR = 3,
|
||||
GST_RTCP_RTPFB_TYPE_TMMBN = 4,
|
||||
/* PSFB types */
|
||||
GST_RTCP_PSFB_TYPE_PLI = 1,
|
||||
GST_RTCP_PSFB_TYPE_SLI = 2,
|
||||
GST_RTCP_PSFB_TYPE_RPSI = 3,
|
||||
GST_RTCP_PSFB_TYPE_AFB = 15
|
||||
GST_RTCP_PSFB_TYPE_AFB = 15,
|
||||
/* PSFB types assigned in RFC 5104 */
|
||||
GST_RTCP_PSFB_TYPE_FIR = 4,
|
||||
GST_RTCP_PSFB_TYPE_TSTR = 5,
|
||||
GST_RTCP_PSFB_TYPE_TSTN = 6,
|
||||
GST_RTCP_PSFB_TYPE_VBCN = 7,
|
||||
} GstRTCPFBType;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue