[Bug 705092] queue element not respecting limits set.

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Mon Jul 29 10:30:00 PDT 2013


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

Tim-Philipp Müller <t.i.m> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |t.i.m at zen.co.uk
         Resolution|                            |INVALID
   Target Milestone|HEAD                        |NONE

--- Comment #2 from Tim-Philipp Müller <t.i.m at zen.co.uk> 2013-07-29 17:29:58 UTC ---
gst-inspect-1.0 queue:

  max-size-buffers    : Max. number of buffers in the queue (0=disable)
                        flags: readable, writable
                        Unsigned Integer. Range: 0 - 4294967295 Default: 200 

  max-size-bytes      : Max. amount of data in the queue (bytes, 0=disable)
                        flags: readable, writable
                        Unsigned Integer. Range: 0 - 4294967295 Default:
10485760 

  max-size-time       : Max. amount of data in the queue (in ns, 0=disable)
                        flags: readable, writable
                        Unsigned Integer64. Range: 0 - 18446744073709551615
Default: 1000000000 


Note max-size-buffers and max-size-bytes are both plain integers, only
max-size-time is a 64-bit integer. And 0 is the value to use if you want to
disable the limit.

So please try:

 g_object_set (audio_queue, "max-size-buffers", 0, "max-size-bytes", 0,
"max-size-time", (guint64) 0, NULL);

-- 
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