]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gst-plugins-ugly0-10.git/commitdiff
gst-libs/gst/play/play.c: Disable visualization until i find a way to fix switch...
authorJulien Moutte <julien@moutte.net>
Sat, 14 Feb 2004 18:37:48 +0000 (18:37 +0000)
committerJulien Moutte <julien@moutte.net>
Sat, 14 Feb 2004 18:37:48 +0000 (18:37 +0000)
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.

ChangeLog
gst-libs/gst/play/play.c
gst-libs/gst/riff/riff-read.c

index f4d5929bacf74694547ce23943167c1a4e81af30..243622ef751eedde549136104982e9347b2591dc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+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.
+
 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
 
        * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
index 23db9ba9b9951c11ddd6fd662c224dd0a8dbadab..0fac17bf145213fd10b0cbdec025ae673f550f42 100644 (file)
@@ -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))
index 6b0c05f96efcfa7e3d838577de8b7b08f77dd3c9..19d69981936261b99ba7fb6e2b5bbde4f895a044 100644 (file)
@@ -164,10 +164,11 @@ gst_riff_peek_head (GstRiffRead *riff,
 
     /* Here, we might encounter EOS */
     gst_bytestream_get_status (riff->bs, &remaining, &event);
-    if (event) {
+    if (GST_IS_EVENT (event)) {
       gst_pad_event_default (riff->sinkpad, event);
+      if (GST_EVENT_TYPE (event) == GST_EVENT_EOS)
+        return FALSE;
     } else {
-      gst_event_unref (event);
       GST_ELEMENT_ERROR (riff, RESOURCE, READ, (NULL), (NULL));
       return FALSE;
     }