Home
last modified time | relevance | path

Searched refs:bitstream_queue (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
Dgstnvbaseenc.c722 nvenc->bitstream_queue = g_async_queue_new (); in gst_nv_base_enc_start()
768 if (nvenc->bitstream_queue) { in gst_nv_base_enc_stop()
769 g_async_queue_unref (nvenc->bitstream_queue); in gst_nv_base_enc_stop()
770 nvenc->bitstream_queue = NULL; in gst_nv_base_enc_stop()
1144 state_in_queue = g_async_queue_pop (nvenc->bitstream_queue); in gst_nv_base_enc_bitstream_thread()
1328 g_assert (g_async_queue_length (nvenc->bitstream_queue) == 0); in gst_nv_base_enc_start_bitstream_thread()
1358 g_async_queue_lock (nvenc->bitstream_queue); in gst_nv_base_enc_stop_bitstream_thread()
1359 while ((state = g_async_queue_try_pop_unlocked (nvenc->bitstream_queue))) { in gst_nv_base_enc_stop_bitstream_thread()
1363 g_async_queue_push_unlocked (nvenc->bitstream_queue, SHUTDOWN_COOKIE); in gst_nv_base_enc_stop_bitstream_thread()
1366 g_async_queue_unlock (nvenc->bitstream_queue); in gst_nv_base_enc_stop_bitstream_thread()
[all …]
Dgstnvbaseenc.h139 GAsyncQueue *bitstream_queue; member