diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-07-08 17:34:08 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-07-08 17:34:08 +0000 |
commit | 956992925244f67b6e873c1c9dc37af40ccd4c57 (patch) | |
tree | b2c5407e5bb15676d5398e5dbcc9a4287675b4bd /gst-libs/gst/play/play.h | |
parent | 7cbf6bb7f216a40501b105ecef9a026f4b6eac10 (diff) | |
download | gst-plugins-bad-956992925244f67b6e873c1c9dc37af40ccd4c57.tar.gz gst-plugins-bad-956992925244f67b6e873c1c9dc37af40ccd4c57.tar.bz2 gst-plugins-bad-956992925244f67b6e873c1c9dc37af40ccd4c57.zip |
new method. various debugging
Original commit message from CVS:
new method. various debugging
Diffstat (limited to 'gst-libs/gst/play/play.h')
-rw-r--r-- | gst-libs/gst/play/play.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gst-libs/gst/play/play.h b/gst-libs/gst/play/play.h index 55c12a36..47146987 100644 --- a/gst-libs/gst/play/play.h +++ b/gst-libs/gst/play/play.h @@ -16,7 +16,7 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ - + #ifndef __GST_PLAY_H__ #define __GST_PLAY_H__ @@ -46,24 +46,24 @@ typedef enum typedef struct _GstPlay GstPlay; typedef struct _GstPlayClass GstPlayClass; typedef struct _GstPlayPrivate GstPlayPrivate; - + struct _GstPlay { GstPipeline pipeline; - + GstPlayPrivate *priv; - + gpointer _gst_reserved[GST_PADDING]; }; - + struct _GstPlayClass { GstPipelineClass parent_class; - + void (*time_tick) (GstPlay *play, gint64 time_nanos); void (*stream_length) (GstPlay *play, gint64 length_nanos); void (*have_video_size) (GstPlay *play, gint width, gint height); - + gpointer _gst_reserved[GST_PADDING]; }; @@ -92,6 +92,8 @@ gboolean gst_play_seek_to_time (GstPlay *play, GstElement * gst_play_get_sink_element (GstPlay *play, GstElement *element, GstPlaySinkType sink_type); +GList * gst_play_get_all_by_interface (GstPlay *play, + GType interface); gdouble gst_play_get_framerate (GstPlay *play); |