mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
basertppayload: cleanup header
This commit is contained in:
parent
0d44940076
commit
7538dffaa0
1 changed files with 4 additions and 2 deletions
|
@ -134,17 +134,19 @@ struct _GstBaseRTPPayloadClass
|
||||||
{
|
{
|
||||||
GstElementClass parent_class;
|
GstElementClass parent_class;
|
||||||
|
|
||||||
|
/* query accepted caps */
|
||||||
|
GstCaps * (*get_caps) (GstBaseRTPPayload *payload, GstPad * pad, GstCaps * filter);
|
||||||
/* receive caps on the sink pad, configure the payloader. */
|
/* receive caps on the sink pad, configure the payloader. */
|
||||||
gboolean (*set_caps) (GstBaseRTPPayload *payload, GstCaps *caps);
|
gboolean (*set_caps) (GstBaseRTPPayload *payload, GstCaps *caps);
|
||||||
|
|
||||||
/* handle a buffer, perform 0 or more gst_basertppayload_push() on
|
/* handle a buffer, perform 0 or more gst_basertppayload_push() on
|
||||||
* the RTP buffers. This function takes ownership of the buffer. */
|
* the RTP buffers. This function takes ownership of the buffer. */
|
||||||
GstFlowReturn (*handle_buffer) (GstBaseRTPPayload *payload,
|
GstFlowReturn (*handle_buffer) (GstBaseRTPPayload *payload,
|
||||||
GstBuffer *buffer);
|
GstBuffer *buffer);
|
||||||
gboolean (*handle_event) (GstBaseRTPPayload *payload, GstEvent * event);
|
gboolean (*handle_event) (GstBaseRTPPayload *payload, GstEvent * event);
|
||||||
GstCaps * (*get_caps) (GstBaseRTPPayload *payload, GstPad * pad, GstCaps * filter);
|
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
gpointer _gst_reserved[GST_PADDING-2];
|
gpointer _gst_reserved[GST_PADDING];
|
||||||
};
|
};
|
||||||
|
|
||||||
GType gst_basertppayload_get_type (void);
|
GType gst_basertppayload_get_type (void);
|
||||||
|
|
Loading…
Reference in a new issue