mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 13:32:29 +00:00
remove gst_video_sink_push_ui_event()
Original commit message from CVS: remove gst_video_sink_push_ui_event()
This commit is contained in:
parent
62d39027ae
commit
65941aa8d9
3 changed files with 0 additions and 27 deletions
|
@ -212,29 +212,6 @@ gst_video_sink_set_video_out (GstVideoSink *videosink, gpointer video_out)
|
||||||
class->set_video_out (videosink, video_out);
|
class->set_video_out (videosink, video_out);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* gst_video_sink_push_ui_event:
|
|
||||||
* @videosink: a #GstVideoSink to push the event to.
|
|
||||||
* @event: the #GstEvent to be pushed.
|
|
||||||
*
|
|
||||||
* This will push an event to the video sink. That event is supposed to be
|
|
||||||
* a user interface event and will be forwarded upstream to provide
|
|
||||||
* interactivity support.
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
gst_video_sink_push_ui_event (GstVideoSink *videosink, GstEvent *event)
|
|
||||||
{
|
|
||||||
GstVideoSinkClass *class;
|
|
||||||
|
|
||||||
g_return_if_fail (videosink != NULL);
|
|
||||||
g_return_if_fail (GST_IS_VIDEOSINK (videosink));
|
|
||||||
|
|
||||||
class = GST_VIDEOSINK_GET_CLASS (videosink);
|
|
||||||
|
|
||||||
if (class->push_ui_event)
|
|
||||||
class->push_ui_event (videosink, event);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_video_sink_set_geometry:
|
* gst_video_sink_set_geometry:
|
||||||
* @videosink: a #GstVideoSink which geometry will be set.
|
* @videosink: a #GstVideoSink which geometry will be set.
|
||||||
|
|
|
@ -70,7 +70,6 @@ struct _GstVideoSinkClass {
|
||||||
|
|
||||||
/* public virtual methods */
|
/* public virtual methods */
|
||||||
void (*set_video_out) (GstVideoSink *videosink, gpointer video_out);
|
void (*set_video_out) (GstVideoSink *videosink, gpointer video_out);
|
||||||
void (*push_ui_event) (GstVideoSink *videosink, GstEvent *event);
|
|
||||||
void (*set_geometry) (GstVideoSink *videosink, gint width, gint height);
|
void (*set_geometry) (GstVideoSink *videosink, gint width, gint height);
|
||||||
|
|
||||||
/* signals */
|
/* signals */
|
||||||
|
@ -85,7 +84,6 @@ GType gst_videosink_get_type (void);
|
||||||
|
|
||||||
/* public virtual methods */
|
/* public virtual methods */
|
||||||
void gst_video_sink_set_video_out (GstVideoSink *videosink, gpointer video_out);
|
void gst_video_sink_set_video_out (GstVideoSink *videosink, gpointer video_out);
|
||||||
void gst_video_sink_push_ui_event (GstVideoSink *videosink, GstEvent *event);
|
|
||||||
void gst_video_sink_set_geometry (GstVideoSink *videosink, gint width,
|
void gst_video_sink_set_geometry (GstVideoSink *videosink, gint width,
|
||||||
gint height);
|
gint height);
|
||||||
|
|
||||||
|
|
|
@ -70,7 +70,6 @@ struct _GstVideoSinkClass {
|
||||||
|
|
||||||
/* public virtual methods */
|
/* public virtual methods */
|
||||||
void (*set_video_out) (GstVideoSink *videosink, gpointer video_out);
|
void (*set_video_out) (GstVideoSink *videosink, gpointer video_out);
|
||||||
void (*push_ui_event) (GstVideoSink *videosink, GstEvent *event);
|
|
||||||
void (*set_geometry) (GstVideoSink *videosink, gint width, gint height);
|
void (*set_geometry) (GstVideoSink *videosink, gint width, gint height);
|
||||||
|
|
||||||
/* signals */
|
/* signals */
|
||||||
|
@ -85,7 +84,6 @@ GType gst_videosink_get_type (void);
|
||||||
|
|
||||||
/* public virtual methods */
|
/* public virtual methods */
|
||||||
void gst_video_sink_set_video_out (GstVideoSink *videosink, gpointer video_out);
|
void gst_video_sink_set_video_out (GstVideoSink *videosink, gpointer video_out);
|
||||||
void gst_video_sink_push_ui_event (GstVideoSink *videosink, GstEvent *event);
|
|
||||||
void gst_video_sink_set_geometry (GstVideoSink *videosink, gint width,
|
void gst_video_sink_set_geometry (GstVideoSink *videosink, gint width,
|
||||||
gint height);
|
gint height);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue