diff options
Diffstat (limited to 'gst/rtp/gstrtpgsmenc.h')
-rw-r--r-- | gst/rtp/gstrtpgsmenc.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/gst/rtp/gstrtpgsmenc.h b/gst/rtp/gstrtpgsmenc.h index e44e5dae2..1220d4029 100644 --- a/gst/rtp/gstrtpgsmenc.h +++ b/gst/rtp/gstrtpgsmenc.h @@ -31,31 +31,31 @@ extern "C" #endif /* __cplusplus */ /* Definition of structure storing data for this element. */ - typedef struct _GstRtpGSMEnc GstRtpGSMEnc; - struct _GstRtpGSMEnc - { - GstElement element; - - GstPad *sinkpad; - GstPad *srcpad; +typedef struct _GstRtpGSMEnc GstRtpGSMEnc; +struct _GstRtpGSMEnc +{ + GstElement element; - guint frequency; + GstPad *sinkpad; + GstPad *srcpad; - /* the timestamp of the next frame */ - guint64 next_time; - /* the interval between frames */ - guint64 time_interval; + guint frequency; - guint32 ssrc; - guint16 seq; - }; + /* the timestamp of the next frame */ + guint64 next_time; + /* the interval between frames */ + guint64 time_interval; + + guint32 ssrc; + guint16 seq; +}; /* Standard definition defining a class for this element. */ - typedef struct _GstRtpGSMEncClass GstRtpGSMEncClass; - struct _GstRtpGSMEncClass - { - GstElementClass parent_class; - }; +typedef struct _GstRtpGSMEncClass GstRtpGSMEncClass; +struct _GstRtpGSMEncClass +{ + GstElementClass parent_class; +}; /* Standard macros for defining types for this element. */ #define GST_TYPE_RTP_GSM_ENC \ @@ -69,7 +69,7 @@ extern "C" #define GST_IS_RTP_GSM_ENC_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_GSM_ENC)) - gboolean gst_rtpgsmenc_plugin_init (GstPlugin * plugin); +gboolean gst_rtpgsmenc_plugin_init (GstPlugin * plugin); #ifdef __cplusplus } |