[Bug 655790] Hang when playing MPEG TS from disk with buffering

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Fri Aug 26 11:27:27 PDT 2011


https://bugzilla.gnome.org/show_bug.cgi?id=655790
  GStreamer | gstreamer (core) | 0.10.34

Vincent Penquerc'h <vincent.penquerch> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vincent.penquerch at collabora
                   |                            |.co.uk

--- Comment #6 from Vincent Penquerc'h <vincent.penquerch at collabora.co.uk> 2011-08-26 18:27:23 UTC ---
I can see this issue, using this command line and a random sample.
It goes away if I disable the logic in gst-launch that switches the pipeline
between PAUSED and PLAYING when it gets BUFFERING messages. This logic is also
disabled for live pipelines - which file:// URIs will not cause.
Does the following patch fix this for you ? If so, the issue is probably a red
herring. If not, could I get the sample file ?


diff --git a/tools/gst-launch.c b/tools/gst-launch.c
index ea99b8f..8930bd2 100644
--- a/tools/gst-launch.c
+++ b/tools/gst-launch.c
@@ -70,7 +70,7 @@ static EventLoopResult caught_error = ELR_NO_ERROR;
 static gboolean quiet = FALSE;
 static gboolean tags = FALSE;
 static gboolean messages = FALSE;
-static gboolean is_live = FALSE;
+static gboolean is_live = TRUE; //FALSE;
 static gboolean waiting_eos = FALSE;

 /* convenience macro so we don't have to litter the code with if(!quiet) */

-- 
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list