diff options
author | David Schleef <ds@schleef.org> | 2003-11-10 22:48:31 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-11-10 22:48:31 +0000 |
commit | 65941aa8d9ef8b5612b03588f72b1bacaa363aa0 (patch) | |
tree | 68e22d222049c0ecb755f29b154fca3886bc5d58 /gst-libs/gst/video | |
parent | 62d39027ae5e5325ab19c46146f0a4f226e37e1e (diff) | |
download | gst-plugins-bad-65941aa8d9ef8b5612b03588f72b1bacaa363aa0.tar.gz gst-plugins-bad-65941aa8d9ef8b5612b03588f72b1bacaa363aa0.tar.bz2 gst-plugins-bad-65941aa8d9ef8b5612b03588f72b1bacaa363aa0.zip |
remove gst_video_sink_push_ui_event()
Original commit message from CVS:
remove gst_video_sink_push_ui_event()
Diffstat (limited to 'gst-libs/gst/video')
-rw-r--r-- | gst-libs/gst/video/gstvideosink.c | 23 | ||||
-rw-r--r-- | gst-libs/gst/video/gstvideosink.h | 2 | ||||
-rw-r--r-- | gst-libs/gst/video/videosink.h | 2 |
3 files changed, 0 insertions, 27 deletions
diff --git a/gst-libs/gst/video/gstvideosink.c b/gst-libs/gst/video/gstvideosink.c index ed6c1622..74ac082b 100644 --- a/gst-libs/gst/video/gstvideosink.c +++ b/gst-libs/gst/video/gstvideosink.c @@ -213,29 +213,6 @@ gst_video_sink_set_video_out (GstVideoSink *videosink, gpointer 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: * @videosink: a #GstVideoSink which geometry will be set. * @width: a width as a #gint. diff --git a/gst-libs/gst/video/gstvideosink.h b/gst-libs/gst/video/gstvideosink.h index 171a91ba..5adab20b 100644 --- a/gst-libs/gst/video/gstvideosink.h +++ b/gst-libs/gst/video/gstvideosink.h @@ -70,7 +70,6 @@ struct _GstVideoSinkClass { /* public virtual methods */ 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); /* signals */ @@ -85,7 +84,6 @@ GType gst_videosink_get_type (void); /* public virtual methods */ 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, gint height); diff --git a/gst-libs/gst/video/videosink.h b/gst-libs/gst/video/videosink.h index 171a91ba..5adab20b 100644 --- a/gst-libs/gst/video/videosink.h +++ b/gst-libs/gst/video/videosink.h @@ -70,7 +70,6 @@ struct _GstVideoSinkClass { /* public virtual methods */ 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); /* signals */ @@ -85,7 +84,6 @@ GType gst_videosink_get_type (void); /* public virtual methods */ 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, gint height); |