mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 20:25:25 +00:00
rtpsbcpay: Fix some tabs that crept in somehow
This commit is contained in:
parent
71104f452e
commit
301e8d558e
1 changed files with 14 additions and 14 deletions
|
@ -27,35 +27,35 @@
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GST_TYPE_RTP_SBC_PAY \
|
#define GST_TYPE_RTP_SBC_PAY \
|
||||||
(gst_rtp_sbc_pay_get_type())
|
(gst_rtp_sbc_pay_get_type())
|
||||||
#define GST_RTP_SBC_PAY(obj) \
|
#define GST_RTP_SBC_PAY(obj) \
|
||||||
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_SBC_PAY,\
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_SBC_PAY,\
|
||||||
GstRtpSBCPay))
|
GstRtpSBCPay))
|
||||||
#define GST_RTP_SBC_PAY_CLASS(klass) \
|
#define GST_RTP_SBC_PAY_CLASS(klass) \
|
||||||
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_SBC_PAY,\
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_SBC_PAY,\
|
||||||
GstRtpSBCPayClass))
|
GstRtpSBCPayClass))
|
||||||
#define GST_IS_RTP_SBC_PAY(obj) \
|
#define GST_IS_RTP_SBC_PAY(obj) \
|
||||||
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_SBC_PAY))
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_SBC_PAY))
|
||||||
#define GST_IS_RTP_SBC_PAY_CLASS(obj) \
|
#define GST_IS_RTP_SBC_PAY_CLASS(obj) \
|
||||||
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_SBC_PAY))
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_SBC_PAY))
|
||||||
|
|
||||||
typedef struct _GstRtpSBCPay GstRtpSBCPay;
|
typedef struct _GstRtpSBCPay GstRtpSBCPay;
|
||||||
typedef struct _GstRtpSBCPayClass GstRtpSBCPayClass;
|
typedef struct _GstRtpSBCPayClass GstRtpSBCPayClass;
|
||||||
|
|
||||||
struct _GstRtpSBCPay {
|
struct _GstRtpSBCPay {
|
||||||
GstRTPBasePayload base;
|
GstRTPBasePayload base;
|
||||||
|
|
||||||
GstAdapter *adapter;
|
GstAdapter *adapter;
|
||||||
GstClockTime last_timestamp;
|
GstClockTime last_timestamp;
|
||||||
|
|
||||||
guint frame_length;
|
guint frame_length;
|
||||||
GstClockTime frame_duration;
|
GstClockTime frame_duration;
|
||||||
|
|
||||||
guint min_frames;
|
guint min_frames;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GstRtpSBCPayClass {
|
struct _GstRtpSBCPayClass {
|
||||||
GstRTPBasePayloadClass parent_class;
|
GstRTPBasePayloadClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
GType gst_rtp_sbc_pay_get_type(void);
|
GType gst_rtp_sbc_pay_get_type(void);
|
||||||
|
|
Loading…
Reference in a new issue