Forward this mail to <a href="mailto:gstreamer-devel@lists.freedesktop.org">gstreamer-devel@lists.freedesktop.org</a>. <br><br>
<div class="gmail_quote">2011/3/2 firerock <span dir="ltr">&lt;<a href="mailto:little.fire.rock@gmail.com">little.fire.rock@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<div>Hi, Wim.</div>
<div> </div>
<div>I met similar issue with Gstreamer 0.10.28 on Ubuntu 10.04. The difference is that it was bounded by the &quot;max-size-bytes&quot;(2 * 1024 * 1024) instead of &quot;max-size-time&quot;(2 * GST_SECOND). In Gstreamer 0.10.28, there are no upper limits on time difference for multiqueue and number of buffers in the queue ( the max-size-buffers can be increased one by one if the queue is full but the total bytes is smaller than max-size-bytes). It has only  limititation for max-size-bytes in decodebin2.</div>

<div> </div>
<div>So, in my case, when playing a WMV file which is not muxed well enough using &quot;gst-launch playbin2 uri=file:///&quot;, the audio would disappear after a while.  The phenomena is that, at some point, the audio queue is empty while video queue is full, the max-size-buffers of video queue would increase 1 and continue until the bytes of buffer in video queue is about to be larger than max-size-bytes(2MB). Then the number of video queue reaches muximum and the demuxer can not put more video data down to multiqueue in decodebin2, which leads no enough audio data was sended to mutiqueue and then audio decoder and audio sink. And the audio would disappear.</div>

<div> </div>
<div>I have tried to increase the  max-size-bytes of decodebin2 and there was no audio disappearing issue.</div>
<div># gst-launch filesrc location=/test.wmv ! decodebin2 max-size-bytes=8000000 name=demux ! pulsesink demux. ! xvimagesink</div>
<div> </div>
<div>And I have checked that the default value for max-size-bytes in multiqueue is 10 * 1024 * 1024 (10MB), why did we set the default value  for max-size-bytes  to 2MB in decodebin2 ?</div>
<div> </div>
<div>How about to set the default value  for max-size-bytes  to 10MB in decodebin2 as what we did in multiqueue or set it to unlimited value in decodebin2 ?</div>
<div> </div>
<div> </div>
<div> </div>
<div class="gmail_quote">2009/10/21 Wim Taymans <span dir="ltr">&lt;<a href="mailto:wim.taymans@gmail.com" target="_blank">wim.taymans@gmail.com</a>&gt;</span> 
<div>
<div></div>
<div class="h5"><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">On Tue, 2009-10-20 at 10:10 -0700, Conrad Cooke wrote:<br><br>Thanks for the patch but this issue has been fixed already. Newest<br>
decodebin2 does not set an upper limit on time anymore, just bytes.<br><font color="#888888"><br>Wim<br></font>
<div>
<div></div>
<div><br>&gt; I recently debugged an issue where playback was failing for certain mpeg-4 container files.  Turned out to be hitting a limitation placed on multiqueue.<br>&gt; This is a result of how the file was encoded.  While it is a legal containerised media file, there is a large difference between audio and video timestamps.<br>
&gt; It is the purpose of multiqueue to realign the audio and video bins, I believe.<br>&gt;<br>&gt; multiqueue has various parameters which determine how much difference there can be between video and audio.<br>&gt; &gt;From gst-inspect:<br>
&gt;   name                : The name of the object<br>&gt;                         flags: readable, writable<br>&gt;                         String. Default: null Current: &quot;multiqueue0&quot;<br>&gt;   extra-size-bytes    : Amount of data the queues can grow if one of them is empty (bytes, 0=disable)<br>
&gt;                         flags: readable, writable<br>&gt;                         Unsigned Integer. Range: 0 - 4294967295 Default: 10485760 Current: 10485760<br>&gt;   extra-size-buffers  : Amount of buffers the queues can grow if one of them is empty (0=disable)<br>
&gt;                         flags: readable, writable<br>&gt;                         Unsigned Integer. Range: 0 - 4294967295 Default: 5 Current: 5<br>&gt;   extra-size-time     : Amount of time the queues can grow if one of them is empty (in ns, 0=disable)<br>
&gt;                         flags: readable, writable<br>&gt;                         Unsigned Integer64. Range: 0 - 18446744073709551615 Default: 3000000000 Current: 3000000000<br>&gt;   max-size-bytes      : Max. amount of data in the queue (bytes, 0=disable)<br>
&gt;                         flags: readable, writable<br>&gt;                         Unsigned Integer. Range: 0 - 4294967295 Default: 10485760 Current: 10485760<br>&gt;   max-size-buffers    : Max. number of buffers in the queue (0=disable)<br>
&gt;                         flags: readable, writable<br>&gt;                         Unsigned Integer. Range: 0 - 4294967295 Default: 5 Current: 5<br>&gt;   max-size-time       : Max. amount of data in the queue (in ns, 0=disable)<br>
&gt;                         flags: readable, writable<br>&gt;                         Unsigned Integer64. Range: 0 - 18446744073709551615 Default: 2000000000 Current: 2000000000<br>&gt;<br>&gt; Seems the last three properties are not implemented but were intended to support &#39;poorly encoded media&#39;<br>
&gt;<br>&gt; The three supported properties are set to their defaults on construction of the multiqueue.  They are also set twice by decodebin, once when a group is created (gst_decode_group_new) and once when its pads are exposed (gst_decode_group_expose)<br>
&gt; The second case set the values to<br>&gt;<br>&gt;         &quot;max-size-bytes&quot;, 2 * 1024 * 1024,<br>&gt;         &quot;max-size-time&quot;, 2 * GST_SECOND,<br>&gt;         &quot;max-size-buffers&quot;, 5, NULL;<br>
&gt;<br>&gt; It seems for some media, there is a greater than 2 second difference betwee audio and video, so I chnged max-size-time to be 50 seconds.<br>&gt;<br>&gt; My questions are<br>&gt; Why is decodebin2 directly modifying this component at all ?<br>
&gt; Why is a 2 second maximum imposed - is the only real limitation is the maximum memory that can be used ?<br>&gt;<br>&gt; Here is my change:<br>&gt;<br>&gt; component: gst-plugins-base-0.10.21<br>&gt;<br>&gt; file: gstdecodebin2 line 1983<br>
&gt;<br>&gt;   if (group-&gt;multiqueue) {<br>&gt;     /* update runtime limits. At runtime, we try to keep the amount of buffers<br>&gt;      * in the queues as low as possible (but at least 5 buffers). */<br>&gt;     g_object_set (G_OBJECT (group-&gt;multiqueue),<br>
&gt;         &quot;max-size-bytes&quot;, 2 * 1024 * 1024,<br>&gt;         &quot;max-size-time&quot;, 50 * GST_SECOND, &quot;max-size-buffers&quot;, 5, NULL);<br>&gt;     /* we can now disconnect any overrun signal, which is used to expose the<br>
&gt;      * group. */<br>&gt;     if (group-&gt;overrunsig) {<br>&gt;       GST_LOG (&quot;Disconnecting overrun&quot;);<br>&gt;       g_signal_handler_disconnect (group-&gt;multiqueue, group-&gt;overrunsig);<br>&gt;       group-&gt;overrunsig = 0;<br>
&gt;     }<br>&gt;   }<br>&gt;<br>&gt;<br>&gt; Best Wishes,<br>&gt;<br>&gt; Conrad Cooke<br>&gt; ------------------------------------------------------------------------------<br>&gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA<br>
&gt; is the only developer event you need to attend this year. Jumpstart your<br>&gt; developing skills, take BlackBerry mobile applications to market and stay<br>&gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!<br>
&gt; <a href="http://p.sf.net/sfu/devconference" target="_blank">http://p.sf.net/sfu/devconference</a><br>&gt; _______________________________________________<br>&gt; gstreamer-devel mailing list<br>&gt; <a href="mailto:gstreamer-devel@lists.sourceforge.net" target="_blank">gstreamer-devel@lists.sourceforge.net</a><br>
&gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br><br><br><br>------------------------------------------------------------------------------<br>
Come build with us! The BlackBerry(R) Developer Conference in SF, CA<br>is the only developer event you need to attend this year. Jumpstart your<br>developing skills, take BlackBerry mobile applications to market and stay<br>
ahead of the curve. Join us from November 9 - 12, 2009. Register now!<br><a href="http://p.sf.net/sfu/devconference" target="_blank">http://p.sf.net/sfu/devconference</a><br>_______________________________________________<br>
gstreamer-devel mailing list<br><a href="mailto:gstreamer-devel@lists.sourceforge.net" target="_blank">gstreamer-devel@lists.sourceforge.net</a><br><a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>
</div></div></blockquote></div></div></div><br></blockquote></div><br>