docs: make GstRTCPSync enum show up in rtpbin docs
authorTim-Philipp Müller <tim@centricular.com>
Sun, 5 Apr 2015 19:06:09 +0000 (20:06 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 5 Apr 2015 19:07:19 +0000 (20:07 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=747358

docs/plugins/gst-plugins-good-plugins-sections.txt
gst/rtpmanager/gstrtpbin.c
gst/rtpmanager/gstrtpbin.h

index 40c1d9b..7a9dcc8 100644 (file)
@@ -905,6 +905,7 @@ GST_IS_GOOM_CLASS
 <TITLE>rtpbin</TITLE>
 GstRtpBin
 RTPJitterBufferMode
+GstRTCPSync
 <SUBSECTION Standard>
 GstRtpBinPrivate
 GstRtpBinClass
index 6ba8f7a..c0d15e3 100644 (file)
@@ -308,13 +308,6 @@ enum
   PROP_LAST
 };
 
-enum
-{
-  GST_RTP_BIN_RTCP_SYNC_ALWAYS,
-  GST_RTP_BIN_RTCP_SYNC_INITIAL,
-  GST_RTP_BIN_RTCP_SYNC_RTP
-};
-
 #define GST_RTP_BIN_RTCP_SYNC_TYPE (gst_rtp_bin_rtcp_sync_get_type())
 static GType
 gst_rtp_bin_rtcp_sync_get_type (void)
index 4366535..fcad2a5 100644 (file)
 #define GST_IS_RTP_BIN_CLASS(klass) \
   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_BIN))
 
+typedef enum
+{
+  GST_RTP_BIN_RTCP_SYNC_ALWAYS,
+  GST_RTP_BIN_RTCP_SYNC_INITIAL,
+  GST_RTP_BIN_RTCP_SYNC_RTP
+} GstRTCPSync;
+
 typedef struct _GstRtpBin GstRtpBin;
 typedef struct _GstRtpBinClass GstRtpBinClass;
 typedef struct _GstRtpBinPrivate GstRtpBinPrivate;