From: Tim-Philipp Müller Date: Sun, 5 Apr 2015 19:06:09 +0000 (+0100) Subject: docs: make GstRTCPSync enum show up in rtpbin docs X-Git-Tag: 1.19.3~509^2~3721 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2fde2011b281ef5b0aededd605bf354ba707223a;p=platform%2Fupstream%2Fgstreamer.git docs: make GstRTCPSync enum show up in rtpbin docs https://bugzilla.gnome.org/show_bug.cgi?id=747358 --- diff --git a/docs/plugins/gst-plugins-good-plugins-sections.txt b/docs/plugins/gst-plugins-good-plugins-sections.txt index 40c1d9b..7a9dcc8 100644 --- a/docs/plugins/gst-plugins-good-plugins-sections.txt +++ b/docs/plugins/gst-plugins-good-plugins-sections.txt @@ -905,6 +905,7 @@ GST_IS_GOOM_CLASS rtpbin GstRtpBin RTPJitterBufferMode +GstRTCPSync GstRtpBinPrivate GstRtpBinClass diff --git a/gst/rtpmanager/gstrtpbin.c b/gst/rtpmanager/gstrtpbin.c index 6ba8f7a..c0d15e3 100644 --- a/gst/rtpmanager/gstrtpbin.c +++ b/gst/rtpmanager/gstrtpbin.c @@ -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) diff --git a/gst/rtpmanager/gstrtpbin.h b/gst/rtpmanager/gstrtpbin.h index 4366535..fcad2a5 100644 --- a/gst/rtpmanager/gstrtpbin.h +++ b/gst/rtpmanager/gstrtpbin.h @@ -36,6 +36,13 @@ #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;