mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 15:38:53 +00:00
glimagesink: Remove unused stop function
This commit is contained in:
parent
05109be4a0
commit
4ca63b01ab
1 changed files with 0 additions and 11 deletions
|
@ -325,8 +325,6 @@ static void gst_glimage_sink_set_property (GObject * object, guint prop_id,
|
||||||
static void gst_glimage_sink_get_property (GObject * object, guint prop_id,
|
static void gst_glimage_sink_get_property (GObject * object, guint prop_id,
|
||||||
GValue * value, GParamSpec * param_spec);
|
GValue * value, GParamSpec * param_spec);
|
||||||
|
|
||||||
static gboolean gst_glimage_sink_stop (GstBaseSink * bsink);
|
|
||||||
|
|
||||||
static gboolean gst_glimage_sink_query (GstBaseSink * bsink, GstQuery * query);
|
static gboolean gst_glimage_sink_query (GstBaseSink * bsink, GstQuery * query);
|
||||||
static void gst_glimage_sink_set_context (GstElement * element,
|
static void gst_glimage_sink_set_context (GstElement * element,
|
||||||
GstContext * context);
|
GstContext * context);
|
||||||
|
@ -547,7 +545,6 @@ gst_glimage_sink_class_init (GstGLImageSinkClass * klass)
|
||||||
gstbasesink_class->get_times = gst_glimage_sink_get_times;
|
gstbasesink_class->get_times = gst_glimage_sink_get_times;
|
||||||
gstbasesink_class->prepare = gst_glimage_sink_prepare;
|
gstbasesink_class->prepare = gst_glimage_sink_prepare;
|
||||||
gstbasesink_class->propose_allocation = gst_glimage_sink_propose_allocation;
|
gstbasesink_class->propose_allocation = gst_glimage_sink_propose_allocation;
|
||||||
gstbasesink_class->stop = gst_glimage_sink_stop;
|
|
||||||
|
|
||||||
gstvideosink_class->show_frame =
|
gstvideosink_class->show_frame =
|
||||||
GST_DEBUG_FUNCPTR (gst_glimage_sink_show_frame);
|
GST_DEBUG_FUNCPTR (gst_glimage_sink_show_frame);
|
||||||
|
@ -859,14 +856,6 @@ gst_glimage_sink_query (GstBaseSink * bsink, GstQuery * query)
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
|
||||||
gst_glimage_sink_stop (GstBaseSink * bsink)
|
|
||||||
{
|
|
||||||
GstGLImageSink *glimage_sink = GST_GLIMAGE_SINK (bsink);
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_glimage_sink_set_context (GstElement * element, GstContext * context)
|
gst_glimage_sink_set_context (GstElement * element, GstContext * context)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue