~ubuntu-branches/ubuntu/precise/gst-plugins-base0.10/precise-updates

« back to all changes in this revision

Viewing changes to gst-libs/gst/rtp/gstrtcpbuffer.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2011-12-12 12:40:13 UTC
  • mfrom: (36.1.15 experimental)
  • Revision ID: package-import@ubuntu.com-20111212124013-onyadfb150d8c5dk
Tags: 0.10.35.2-2
* debian/libgstreamer-plugins-base.install:
  + Add license translations file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
 * GstRTCPFBType:
64
64
 * @GST_RTCP_FB_TYPE_INVALID: Invalid type
65
65
 * @GST_RTCP_RTPFB_TYPE_NACK: Generic NACK
 
66
 * @GST_RTCP_RTPFB_TYPE_TMMBR: Temporary Maximum Media Stream Bit Rate Request
 
67
 * @GST_RTCP_RTPFB_TYPE_TMMBN: Temporary Maximum Media Stream Bit Rate
 
68
 *    Notification
66
69
 * @GST_RTCP_PSFB_TYPE_PLI: Picture Loss Indication
67
70
 * @GST_RTCP_PSFB_TYPE_SLI: Slice Loss Indication
68
71
 * @GST_RTCP_PSFB_TYPE_RPSI: Reference Picture Selection Indication
69
72
 * @GST_RTCP_PSFB_TYPE_AFB: Application layer Feedback
 
73
 * @GST_RTCP_PSFB_TYPE_FIR: Full Intra Request Command
 
74
 * @GST_RTCP_PSFB_TYPE_TSTR: Temporal-Spatial Trade-off Request
 
75
 * @GST_RTCP_PSFB_TYPE_TSTN: Temporal-Spatial Trade-off Notification
 
76
 * @GST_RTCP_PSFB_TYPE_VBCN: Video Back Channel Message
70
77
 *
71
78
 * Different types of feedback messages.
72
79
 *
78
85
  GST_RTCP_FB_TYPE_INVALID    = 0,
79
86
  /* RTPFB types */
80
87
  GST_RTCP_RTPFB_TYPE_NACK    = 1,
 
88
  /* RTPFB types assigned in RFC 5104 */
 
89
  GST_RTCP_RTPFB_TYPE_TMMBR   = 3,
 
90
  GST_RTCP_RTPFB_TYPE_TMMBN   = 4,
81
91
  /* PSFB types */
82
92
  GST_RTCP_PSFB_TYPE_PLI      = 1,
83
93
  GST_RTCP_PSFB_TYPE_SLI      = 2,
84
94
  GST_RTCP_PSFB_TYPE_RPSI     = 3,
85
 
  GST_RTCP_PSFB_TYPE_AFB      = 15
 
95
  GST_RTCP_PSFB_TYPE_AFB      = 15,
 
96
  /* PSFB types assigned in RFC 5104 */
 
97
  GST_RTCP_PSFB_TYPE_FIR      = 4,
 
98
  GST_RTCP_PSFB_TYPE_TSTR     = 5,
 
99
  GST_RTCP_PSFB_TYPE_TSTN     = 6,
 
100
  GST_RTCP_PSFB_TYPE_VBCN     = 7,
86
101
} GstRTCPFBType;
87
102
 
88
103
/**