gl: Remove some empty ::finalize() implementations
This commit is contained in:
parent
63c776adee
commit
78a1841c86
@ -41,7 +41,6 @@ static void gst_gl_base_mixer_pad_get_property (GObject * object, guint prop_id,
|
|||||||
GValue * value, GParamSpec * pspec);
|
GValue * value, GParamSpec * pspec);
|
||||||
static void gst_gl_base_mixer_pad_set_property (GObject * object, guint prop_id,
|
static void gst_gl_base_mixer_pad_set_property (GObject * object, guint prop_id,
|
||||||
const GValue * value, GParamSpec * pspec);
|
const GValue * value, GParamSpec * pspec);
|
||||||
static void gst_gl_base_mixer_pad_finalize (GObject * object);
|
|
||||||
|
|
||||||
static void gst_gl_base_mixer_set_context (GstElement * element,
|
static void gst_gl_base_mixer_set_context (GstElement * element,
|
||||||
GstContext * context);
|
GstContext * context);
|
||||||
@ -81,19 +80,11 @@ gst_gl_base_mixer_pad_class_init (GstGLBaseMixerPadClass * klass)
|
|||||||
gobject_class->set_property = gst_gl_base_mixer_pad_set_property;
|
gobject_class->set_property = gst_gl_base_mixer_pad_set_property;
|
||||||
gobject_class->get_property = gst_gl_base_mixer_pad_get_property;
|
gobject_class->get_property = gst_gl_base_mixer_pad_get_property;
|
||||||
|
|
||||||
gobject_class->finalize = gst_gl_base_mixer_pad_finalize;
|
|
||||||
|
|
||||||
vaggpad_class->set_info = NULL;
|
vaggpad_class->set_info = NULL;
|
||||||
vaggpad_class->prepare_frame = NULL;
|
vaggpad_class->prepare_frame = NULL;
|
||||||
vaggpad_class->clean_frame = NULL;
|
vaggpad_class->clean_frame = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
gst_gl_base_mixer_pad_finalize (GObject * object)
|
|
||||||
{
|
|
||||||
G_OBJECT_CLASS (gst_gl_base_mixer_pad_parent_class)->finalize (object);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_gl_base_mixer_pad_get_property (GObject * object, guint prop_id,
|
gst_gl_base_mixer_pad_get_property (GObject * object, guint prop_id,
|
||||||
GValue * value, GParamSpec * pspec)
|
GValue * value, GParamSpec * pspec)
|
||||||
|
@ -42,7 +42,6 @@ static void gst_gl_mixer_pad_get_property (GObject * object, guint prop_id,
|
|||||||
GValue * value, GParamSpec * pspec);
|
GValue * value, GParamSpec * pspec);
|
||||||
static void gst_gl_mixer_pad_set_property (GObject * object, guint prop_id,
|
static void gst_gl_mixer_pad_set_property (GObject * object, guint prop_id,
|
||||||
const GValue * value, GParamSpec * pspec);
|
const GValue * value, GParamSpec * pspec);
|
||||||
static void gst_gl_mixer_pad_finalize (GObject * object);
|
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
@ -73,19 +72,11 @@ gst_gl_mixer_pad_class_init (GstGLMixerPadClass * klass)
|
|||||||
gobject_class->set_property = gst_gl_mixer_pad_set_property;
|
gobject_class->set_property = gst_gl_mixer_pad_set_property;
|
||||||
gobject_class->get_property = gst_gl_mixer_pad_get_property;
|
gobject_class->get_property = gst_gl_mixer_pad_get_property;
|
||||||
|
|
||||||
gobject_class->finalize = gst_gl_mixer_pad_finalize;
|
|
||||||
|
|
||||||
vaggpad_class->set_info = NULL;
|
vaggpad_class->set_info = NULL;
|
||||||
vaggpad_class->prepare_frame = NULL;
|
vaggpad_class->prepare_frame = NULL;
|
||||||
vaggpad_class->clean_frame = NULL;
|
vaggpad_class->clean_frame = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
gst_gl_mixer_pad_finalize (GObject * object)
|
|
||||||
{
|
|
||||||
G_OBJECT_CLASS (gst_gl_mixer_pad_parent_class)->finalize (object);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_gl_mixer_pad_get_property (GObject * object, guint prop_id,
|
gst_gl_mixer_pad_get_property (GObject * object, guint prop_id,
|
||||||
GValue * value, GParamSpec * pspec)
|
GValue * value, GParamSpec * pspec)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user