mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +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);
|
||||
|
||||
if (!allocator->active)
|
||||
if (!g_atomic_int_get (&allocator->active))
|
||||
goto done;
|
||||
|
||||
bcreate.memory = allocator->memory;
|
||||
|
@ -661,7 +661,7 @@ gst_v4l2_allocator_start (GstV4l2Allocator * allocator, guint32 count,
|
|||
|
||||
GST_OBJECT_LOCK (allocator);
|
||||
|
||||
if (allocator->active)
|
||||
if (g_atomic_int_get (&allocator->active))
|
||||
goto already_active;
|
||||
|
||||
if (v4l2_ioctl (allocator->video_fd, VIDIOC_REQBUFS, &breq) < 0)
|
||||
|
@ -742,7 +742,7 @@ gst_v4l2_allocator_stop (GstV4l2Allocator * allocator)
|
|||
|
||||
GST_OBJECT_LOCK (allocator);
|
||||
|
||||
if (!allocator->active)
|
||||
if (!g_atomic_int_get (&allocator->active))
|
||||
goto done;
|
||||
|
||||
if (gst_atomic_queue_length (allocator->free_queue) != allocator->count) {
|
||||
|
@ -1191,7 +1191,7 @@ gst_v4l2_allocator_flush (GstV4l2Allocator * allocator)
|
|||
|
||||
GST_OBJECT_LOCK (allocator);
|
||||
|
||||
if (!allocator->active)
|
||||
if (!g_atomic_int_get (&allocator->active))
|
||||
goto done;
|
||||
|
||||
for (i = 0; i < allocator->count; i++) {
|
||||
|
|
Loading…
Reference in a new issue