diff options
author | Julien Moutte <julien@moutte.net> | 2003-11-19 22:41:45 +0000 |
---|---|---|
committer | Julien Moutte <julien@moutte.net> | 2003-11-19 22:41:45 +0000 |
commit | 0ffc5d6a406cf482d0476bae1680148368222aea (patch) | |
tree | 3ab290228ff131495605757c5778919ae4ad0642 /gst-libs/gst/video/gstvideosink.h | |
parent | 03bedb18c870879c7389ba897608faeff563d01f (diff) | |
download | gst-plugins-bad-0ffc5d6a406cf482d0476bae1680148368222aea.tar.gz gst-plugins-bad-0ffc5d6a406cf482d0476bae1680148368222aea.tar.bz2 gst-plugins-bad-0ffc5d6a406cf482d0476bae1680148368222aea.zip |
Removing the video_out things.
Original commit message from CVS:
Removing the video_out things.
Diffstat (limited to 'gst-libs/gst/video/gstvideosink.h')
-rw-r--r-- | gst-libs/gst/video/gstvideosink.h | 27 |
1 files changed, 2 insertions, 25 deletions
diff --git a/gst-libs/gst/video/gstvideosink.h b/gst-libs/gst/video/gstvideosink.h index 5adab20b..3fd37d70 100644 --- a/gst-libs/gst/video/gstvideosink.h +++ b/gst-libs/gst/video/gstvideosink.h @@ -52,50 +52,27 @@ struct _GstVideoSink { GstPad *sinkpad; - gpointer video_out; - gint width, height; - gint frames_displayed; - gint64 frame_time; GstClock *clock; - GstCaps *formats; - GST_OBJECT_PADDING }; struct _GstVideoSinkClass { GstElementClass parent_class; - - /* public virtual methods */ - void (*set_video_out) (GstVideoSink *videosink, gpointer video_out); - void (*set_geometry) (GstVideoSink *videosink, gint width, gint height); - + /* signals */ - void (*have_video_out) (GstVideoSink *element, gpointer video_out); void (*have_size) (GstVideoSink *element, gint width, gint height); - void (*frame_displayed) (GstVideoSink *element); - + GST_CLASS_PADDING }; 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_set_geometry (GstVideoSink *videosink, gint width, - gint height); - /* public methods to fire signals */ -void gst_video_sink_got_video_out (GstVideoSink *videosink, gpointer video_out); void gst_video_sink_got_video_size (GstVideoSink *videosink, gint width, gint height); -void gst_video_sink_frame_displayed (GstVideoSink *videosink); - -/* public methods */ -void gst_video_sink_get_geometry (GstVideoSink *videosink, - gint *width, gint *height); #ifdef __cplusplus } |