diff options
author | Steve Baker <steve@stevebaker.org> | 2003-01-18 04:37:32 +0000 |
---|---|---|
committer | Steve Baker <steve@stevebaker.org> | 2003-01-18 04:37:32 +0000 |
commit | adcae26e69820706af45da22eed4fb2e8d2bb351 (patch) | |
tree | 2f6a10896190a961f767f6b7d9819275343ffda4 /gst-libs/gst/play/play.old.h | |
parent | d70bb73c2967b0ad76f8ba827dc81aedcc0ebc4a (diff) | |
download | gst-plugins-bad-adcae26e69820706af45da22eed4fb2e8d2bb351.tar.gz gst-plugins-bad-adcae26e69820706af45da22eed4fb2e8d2bb351.tar.bz2 gst-plugins-bad-adcae26e69820706af45da22eed4fb2e8d2bb351.zip |
added func gst_play_set_data_src removed pipeline GST_PLAY_PIPE_VIDEO_THREADSAFE - it never worked and its just takin...
Original commit message from CVS:
added func gst_play_set_data_src
removed pipeline GST_PLAY_PIPE_VIDEO_THREADSAFE - it never worked and its just taking up space
Diffstat (limited to 'gst-libs/gst/play/play.old.h')
-rw-r--r-- | gst-libs/gst/play/play.old.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gst-libs/gst/play/play.old.h b/gst-libs/gst/play/play.old.h index 02d55e05..acf777c9 100644 --- a/gst-libs/gst/play/play.old.h +++ b/gst-libs/gst/play/play.old.h @@ -50,7 +50,6 @@ typedef enum { GST_PLAY_PIPE_AUDIO, GST_PLAY_PIPE_AUDIO_THREADED, GST_PLAY_PIPE_AUDIO_HYPER_THREADED, - GST_PLAY_PIPE_VIDEO_THREADSAFE, GST_PLAY_PIPE_VIDEO, } GstPlayPipeType; @@ -85,8 +84,9 @@ struct _GstPlay GObject parent; gboolean (*setup_pipeline) (GstPlay *play, GError **error); - void (*teardown_pipeline) (GstPlay *play); - gboolean (*set_autoplugger) (GstPlay *play, GstElement *autoplugger); + void (*teardown_pipeline) (GstPlay *play); + gboolean (*set_data_src) (GstPlay *play, GstElement *datasrc); + gboolean (*set_autoplugger) (GstPlay *play, GstElement *autoplugger); gboolean (*set_video_sink) (GstPlay *play, GstElement *videosink); gboolean (*set_audio_sink) (GstPlay *play, GstElement *audiosink); @@ -155,6 +155,7 @@ void gst_play_seek_to_time (GstPlay *play, gint64 time_nanos); GstElement* gst_play_get_sink_element (GstPlay *play, GstElement *element); +gboolean gst_play_set_data_src (GstPlay *play, GstElement *data_src); gboolean gst_play_set_video_sink (GstPlay *play, GstElement *element); gboolean gst_play_set_audio_sink (GstPlay *play, GstElement *element); void gst_play_need_new_video_window (GstPlay *play); |