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/gstvideosink.c | |
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/gstvideosink.c')
-rw-r--r-- | gst-libs/gst/video/gstvideosink.c | 23 |
1 files changed, 0 insertions, 23 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. |