summaryrefslogtreecommitdiff
path: root/docs/libs
diff options
context:
space:
mode:
authorThiago Santos <thiago.sousa.santos@collabora.com>2013-08-07 21:26:01 -0300
committerThiago Santos <thiago.sousa.santos@collabora.com>2013-08-13 12:00:48 -0300
commit581c4297d0953fe492b34889e95d0353f4b8a509 (patch)
tree3068431d833478284517b064952f592aed7df989 /docs/libs
parent5d26d67ba7d8ec0565e81d2a22abb7b6ead2fed6 (diff)
dataqueue: add gst_data_queue_push_force
Adds a variant of the _push function that doesn't check the queue limits before adding the new item. It is useful when pushing an element to the queue shouldn't lock the thread. One particular scenario is when the queue is used to serialize buffers and events that are going to be pushed from another thread. The dataqueue should have a limit on the amount of buffers to be stored to avoid large memory consumption, but events can be considered to have negligible impact on memory compared to buffers. So it is useful to be used to push items into the queue that contain events, even though the queue is already full, it shouldn't matter inserting an item that has no significative size. This scenario happens on adaptive elements (dashdemux / mssdemux) as there is a single download thread fetching buffers and putting into the dataqueues for the streams. This same download thread can als generate events in some situations as caps changes, eos or a internal control events. There can be a deadlock at preroll if the first buffer fetched is large enough to fill the dataqueue and the download thread and the next iteration of the download thread decides to push an event to this same dataqueue before fetching buffers to other streams, if this push locks, the pipeline will be stuck in preroll as no more buffers will be downloaded. There is a somewhat common practice in dash streams to have a single very large buffer for audio and one for video, so this will always happen as the download thread will have to push an EOS right after fetching the first buffer for any stream. API: gst_data_queue_push_force https://bugzilla.gnome.org/show_bug.cgi?id=705694
Diffstat (limited to 'docs/libs')
-rw-r--r--docs/libs/gstreamer-libs-sections.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/libs/gstreamer-libs-sections.txt b/docs/libs/gstreamer-libs-sections.txt
index cdcd21c1f..bbf7332f7 100644
--- a/docs/libs/gstreamer-libs-sections.txt
+++ b/docs/libs/gstreamer-libs-sections.txt
@@ -761,6 +761,7 @@ GstDataQueueEmptyCallback
GstDataQueueFullCallback
gst_data_queue_new
gst_data_queue_push
+gst_data_queue_push_force
gst_data_queue_pop
gst_data_queue_flush
gst_data_queue_set_flushing