mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
rtpmux: Remove empty finalize
This commit is contained in:
parent
5e90a4e86b
commit
d93295ff9d
1 changed files with 0 additions and 13 deletions
|
@ -83,8 +83,6 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink_%d",
|
|||
GST_STATIC_CAPS ("application/x-rtp")
|
||||
);
|
||||
|
||||
static void gst_rtp_mux_finalize (GObject * object);
|
||||
|
||||
static GstPad *gst_rtp_mux_request_new_pad (GstElement * element,
|
||||
GstPadTemplate * templ, const gchar * name);
|
||||
static void gst_rtp_mux_release_pad (GstElement * element, GstPad * pad);
|
||||
|
@ -125,7 +123,6 @@ gst_rtp_mux_class_init (GstRTPMuxClass * klass)
|
|||
gobject_class = (GObjectClass *) klass;
|
||||
gstelement_class = (GstElementClass *) klass;
|
||||
|
||||
gobject_class->finalize = gst_rtp_mux_finalize;
|
||||
gobject_class->get_property = gst_rtp_mux_get_property;
|
||||
gobject_class->set_property = gst_rtp_mux_set_property;
|
||||
|
||||
|
@ -211,16 +208,6 @@ gst_rtp_mux_init (GstRTPMux * object, GstRTPMuxClass * g_class)
|
|||
object->seqnum_offset = DEFAULT_SEQNUM_OFFSET;
|
||||
}
|
||||
|
||||
static void
|
||||
gst_rtp_mux_finalize (GObject * object)
|
||||
{
|
||||
GstRTPMux *rtp_mux;
|
||||
|
||||
rtp_mux = GST_RTP_MUX (object);
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static GstPad *
|
||||
gst_rtp_mux_create_sinkpad (GstRTPMux * rtp_mux, GstPadTemplate * templ)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue