diff options
author | Julien Moutte <julien@moutte.net> | 2004-02-14 18:37:48 +0000 |
---|---|---|
committer | Julien Moutte <julien@moutte.net> | 2004-02-14 18:37:48 +0000 |
commit | 4d49d36fdabb948c08a5a3f5ca7abccf6343d74b (patch) | |
tree | d68c5acd0e923051e5c3713da06d9ceef28ec520 /gst-libs/gst/play | |
parent | 43b65716731f6107486cd1dceb2ba53ef9d1e663 (diff) | |
download | gst-plugins-bad-4d49d36fdabb948c08a5a3f5ca7abccf6343d74b.tar.gz gst-plugins-bad-4d49d36fdabb948c08a5a3f5ca7abccf6343d74b.tar.bz2 gst-plugins-bad-4d49d36fdabb948c08a5a3f5ca7abccf6343d74b.zip |
gst-libs/gst/play/play.c: Disable visualization until i find a way to fix switch correctly.
Original commit message from CVS:
2004-02-14 Julien MOUTTE <julien@moutte.net>
* gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
visualization until i find a way to fix switch correctly.
* gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
EOS arrives.
* gst/switch/gstswitch.c: (gst_switch_release_pad),
(gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
(gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
Reworked switch to get a more correct behaviour with events and refing
of data stored in sinkpads.
* gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
we don't pull from a pad in EOS.
Diffstat (limited to 'gst-libs/gst/play')
-rw-r--r-- | gst-libs/gst/play/play.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst-libs/gst/play/play.c b/gst-libs/gst/play/play.c index 23db9ba9..0fac17bf 100644 --- a/gst-libs/gst/play/play.c +++ b/gst-libs/gst/play/play.c @@ -944,6 +944,9 @@ gst_play_connect_visualization (GstPlay * play, gboolean connect) g_return_val_if_fail (play != NULL, FALSE); g_return_val_if_fail (GST_IS_PLAY (play), FALSE); + /* Until i fix the switch */ + return TRUE; + /* Getting needed objects */ video_thread = g_hash_table_lookup (play->priv->elements, "video_thread"); if (!GST_IS_ELEMENT (video_thread)) |