Home
last modified time | relevance | path

Searched refs:queue_output_buf (Results 1 – 4 of 4) sorted by relevance

/third_party/gstreamer/gstplugins_base/tests/examples/gl/sdl/
Dsdlshare.c143 static GAsyncQueue *queue_output_buf; variable
367 if (g_async_queue_length (queue_output_buf) > 3) { in on_new_sample()
368 vframe = (GstVideoFrame *) g_async_queue_pop (queue_output_buf); in on_new_sample()
485 g_async_queue_push (queue_output_buf, vframe); in sdl_event_loop()
509 g_async_queue_push (queue_output_buf, vframe); in sdl_event_loop()
607 queue_output_buf = g_async_queue_new (); in main()
646 while (g_async_queue_length (queue_output_buf) > 0) { in main()
648 (GstVideoFrame *) g_async_queue_pop (queue_output_buf); in main()
/third_party/gstreamer/gstplugins_base/tests/examples/gl/qt/qglwtextureshare/
Dpipeline.cpp135 if (p->queue_output_buf.size () > 3) { in on_gst_buffer()
136 GstBuffer *buf_old = (p->queue_output_buf.get ()); in on_gst_buffer()
162 while (this->queue_output_buf.size ()) { in unconfigure()
163 buf = (GstBuffer *) (this->queue_output_buf.get ()); in unconfigure()
Dpipeline.h49 AsyncQueue<GstBuffer*> queue_output_buf; variable
Dqglrenderer.cpp137 pipeline->queue_output_buf.put (this->frame); in newFrame()