docs: make GstRTCPSync enum show up in rtpbin docs

https://bugzilla.gnome.org/show_bug.cgi?id=747358
This commit is contained in:
Tim-Philipp Müller 2015-04-05 20:06:09 +01:00
parent d72fd97957
commit 2fde2011b2
3 changed files with 8 additions and 7 deletions

View file

@ -905,6 +905,7 @@ GST_IS_GOOM_CLASS
<TITLE>rtpbin</TITLE>
GstRtpBin
RTPJitterBufferMode
GstRTCPSync
<SUBSECTION Standard>
GstRtpBinPrivate
GstRtpBinClass

View 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)

View file

@ -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;