[gst-devel] what's mean this gstreamer critical?
Tim-Philipp Müller
t.i.m at zen.co.uk
Fri Oct 22 11:31:39 CEST 2010
On Fri, 2010-10-22 at 11:08 +0200, Kocsis Tibor wrote:
Hi,
> i have the following gstreamer critical, what means it? I got during
> some rtp seeking issue with multiple rate.
>
> CRITICAL **: gst_adapter_flush: assertion `flush <= adapter->size' failed
That's a bug in some GStreamer element. It tries to flush more bytes
from the adapter than available. You can figure out where it comes from
by running your app in gdb like this:
$ G_DEBUG=fatal_warnings gdb --args ./yourapp
then it will break at the warning and you can get a stack trace.
Alternatively, break on g_logv
Make sure to try the latest releases and/or git. It might already have
been fixed.
Cheers
-Tim
More information about the gstreamer-devel
mailing list