mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
v4l2allocator: Fix use of atomic active marker
https://bugzilla.gnome.org/show_bug.cgi?id=730207
This commit is contained in:
parent
19608ac85b
commit
7986c55dcb
1 changed files with 4 additions and 4 deletions
|
@ -500,7 +500,7 @@ gst_v4l2_allocator_create_buf (GstV4l2Allocator * allocator)
|
||||||
|
|
||||||
GST_OBJECT_LOCK (allocator);
|
GST_OBJECT_LOCK (allocator);
|
||||||
|
|
||||||
if (!allocator->active)
|
if (!g_atomic_int_get (&allocator->active))
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
bcreate.memory = allocator->memory;
|
bcreate.memory = allocator->memory;
|
||||||
|
@ -661,7 +661,7 @@ gst_v4l2_allocator_start (GstV4l2Allocator * allocator, guint32 count,
|
||||||
|
|
||||||
GST_OBJECT_LOCK (allocator);
|
GST_OBJECT_LOCK (allocator);
|
||||||
|
|
||||||
if (allocator->active)
|
if (g_atomic_int_get (&allocator->active))
|
||||||
goto already_active;
|
goto already_active;
|
||||||
|
|
||||||
if (v4l2_ioctl (allocator->video_fd, VIDIOC_REQBUFS, &breq) < 0)
|
if (v4l2_ioctl (allocator->video_fd, VIDIOC_REQBUFS, &breq) < 0)
|
||||||
|
@ -742,7 +742,7 @@ gst_v4l2_allocator_stop (GstV4l2Allocator * allocator)
|
||||||
|
|
||||||
GST_OBJECT_LOCK (allocator);
|
GST_OBJECT_LOCK (allocator);
|
||||||
|
|
||||||
if (!allocator->active)
|
if (!g_atomic_int_get (&allocator->active))
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
if (gst_atomic_queue_length (allocator->free_queue) != allocator->count) {
|
if (gst_atomic_queue_length (allocator->free_queue) != allocator->count) {
|
||||||
|
@ -1191,7 +1191,7 @@ gst_v4l2_allocator_flush (GstV4l2Allocator * allocator)
|
||||||
|
|
||||||
GST_OBJECT_LOCK (allocator);
|
GST_OBJECT_LOCK (allocator);
|
||||||
|
|
||||||
if (!allocator->active)
|
if (!g_atomic_int_get (&allocator->active))
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
for (i = 0; i < allocator->count; i++) {
|
for (i = 0; i < allocator->count; i++) {
|
||||||
|
|
Loading…
Reference in a new issue