v4l2: Ask the driver about its requirements for min_buffers before initiating buffer...
[platform/upstream/gst-plugins-good.git] / sys / v4l2 / gstv4l2bufferpool.c
1 /* GStreamer
2  *
3  * Copyright (C) 2001-2002 Ronald Bultje <rbultje@ronald.bitfreak.net>
4  *               2006 Edgard Lima <edgard.lima@indt.org.br>
5  *               2009 Texas Instruments, Inc - http://www.ti.com/
6  *
7  * gstv4l2bufferpool.c V4L2 buffer pool class
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22  * Boston, MA 02110-1301, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #ifndef _GNU_SOURCE
30 # define _GNU_SOURCE            /* O_CLOEXEC */
31 #endif
32 #include <fcntl.h>
33
34 #include <sys/mman.h>
35 #include <string.h>
36 #include <unistd.h>
37
38 #include "gst/video/video.h"
39 #include "gst/video/gstvideometa.h"
40 #include "gst/video/gstvideopool.h"
41 #include "gst/allocators/gstdmabuf.h"
42
43 #include <gstv4l2bufferpool.h>
44
45 #include "v4l2_calls.h"
46 #include "gst/gst-i18n-plugin.h"
47 #include <gst/glib-compat-private.h>
48
49 GST_DEBUG_CATEGORY_STATIC (v4l2bufferpool_debug);
50 GST_DEBUG_CATEGORY_EXTERN (GST_CAT_PERFORMANCE);
51 #define GST_CAT_DEFAULT v4l2bufferpool_debug
52
53 #define GST_V4L2_IMPORT_QUARK gst_v4l2_buffer_pool_import_quark ()
54
55
56 /*
57  * GstV4l2BufferPool:
58  */
59 #define gst_v4l2_buffer_pool_parent_class parent_class
60 G_DEFINE_TYPE (GstV4l2BufferPool, gst_v4l2_buffer_pool, GST_TYPE_BUFFER_POOL);
61
62 enum _GstV4l2BufferPoolAcquireFlags
63 {
64   GST_V4L2_BUFFER_POOL_ACQUIRE_FLAG_RESURRECT =
65       GST_BUFFER_POOL_ACQUIRE_FLAG_LAST,
66   GST_V4L2_BUFFER_POOL_ACQUIRE_FLAG_LAST
67 };
68
69 static void gst_v4l2_buffer_pool_release_buffer (GstBufferPool * bpool,
70     GstBuffer * buffer);
71
72 static gboolean
73 gst_v4l2_is_buffer_valid (GstBuffer * buffer, GstV4l2MemoryGroup ** out_group)
74 {
75   GstMemory *mem = gst_buffer_peek_memory (buffer, 0);
76   gboolean valid = FALSE;
77
78   if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY))
79     goto done;
80
81   if (gst_is_dmabuf_memory (mem))
82     mem = gst_mini_object_get_qdata (GST_MINI_OBJECT (mem),
83         GST_V4L2_MEMORY_QUARK);
84
85   if (mem && gst_is_v4l2_memory (mem)) {
86     GstV4l2Memory *vmem = (GstV4l2Memory *) mem;
87     GstV4l2MemoryGroup *group = vmem->group;
88     gint i;
89
90     if (group->n_mem != gst_buffer_n_memory (buffer))
91       goto done;
92
93     for (i = 0; i < group->n_mem; i++) {
94       if (group->mem[i] != gst_buffer_peek_memory (buffer, i))
95         goto done;
96
97       if (!gst_memory_is_writable (group->mem[i]))
98         goto done;
99     }
100
101     valid = TRUE;
102     if (out_group)
103       *out_group = group;
104   }
105
106 done:
107   return valid;
108 }
109
110 static GstFlowReturn
111 gst_v4l2_buffer_pool_copy_buffer (GstV4l2BufferPool * pool, GstBuffer * dest,
112     GstBuffer * src)
113 {
114   const GstVideoFormatInfo *finfo = pool->caps_info.finfo;
115
116   GST_LOG_OBJECT (pool, "copying buffer");
117
118   if (finfo && (finfo->format != GST_VIDEO_FORMAT_UNKNOWN &&
119           finfo->format != GST_VIDEO_FORMAT_ENCODED)) {
120     GstVideoFrame src_frame, dest_frame;
121
122     GST_DEBUG_OBJECT (pool, "copy video frame");
123
124     /* we have raw video, use videoframe copy to get strides right */
125     if (!gst_video_frame_map (&src_frame, &pool->caps_info, src, GST_MAP_READ))
126       goto invalid_buffer;
127
128     if (!gst_video_frame_map (&dest_frame, &pool->caps_info, dest,
129             GST_MAP_WRITE)) {
130       gst_video_frame_unmap (&src_frame);
131       goto invalid_buffer;
132     }
133
134     gst_video_frame_copy (&dest_frame, &src_frame);
135
136     gst_video_frame_unmap (&src_frame);
137     gst_video_frame_unmap (&dest_frame);
138   } else {
139     GstMapInfo map;
140
141     GST_DEBUG_OBJECT (pool, "copy raw bytes");
142
143     if (!gst_buffer_map (src, &map, GST_MAP_READ))
144       goto invalid_buffer;
145
146     gst_buffer_fill (dest, 0, map.data, gst_buffer_get_size (src));
147
148     gst_buffer_unmap (src, &map);
149     gst_buffer_resize (dest, 0, gst_buffer_get_size (src));
150   }
151
152   GST_CAT_LOG_OBJECT (GST_CAT_PERFORMANCE, pool, "slow copy into buffer %p",
153       dest);
154
155   return GST_FLOW_OK;
156
157 invalid_buffer:
158   {
159     GST_ERROR_OBJECT (pool, "could not map buffer");
160     return GST_FLOW_ERROR;
161   }
162 }
163
164 struct UserPtrData
165 {
166   GstBuffer *buffer;
167   gboolean is_frame;
168   GstVideoFrame frame;
169   GstMapInfo map;
170 };
171
172 static GQuark
173 gst_v4l2_buffer_pool_import_quark (void)
174 {
175   static GQuark quark = 0;
176
177   if (quark == 0)
178     quark = g_quark_from_string ("GstV4l2BufferPoolUsePtrData");
179
180   return quark;
181 }
182
183 static void
184 _unmap_userptr_frame (struct UserPtrData *data)
185 {
186   if (data->is_frame)
187     gst_video_frame_unmap (&data->frame);
188   else
189     gst_buffer_unmap (data->buffer, &data->map);
190
191   if (data->buffer)
192     gst_buffer_unref (data->buffer);
193
194   g_slice_free (struct UserPtrData, data);
195 }
196
197 static GstFlowReturn
198 gst_v4l2_buffer_pool_import_userptr (GstV4l2BufferPool * pool,
199     GstBuffer * dest, GstBuffer * src)
200 {
201   GstFlowReturn ret = GST_FLOW_OK;
202   GstV4l2MemoryGroup *group = NULL;
203   GstMapFlags flags;
204   const GstVideoFormatInfo *finfo = pool->caps_info.finfo;
205   struct UserPtrData *data = NULL;
206
207   GST_LOG_OBJECT (pool, "importing userptr");
208
209   /* get the group */
210   if (!gst_v4l2_is_buffer_valid (dest, &group))
211     goto not_our_buffer;
212
213   if (V4L2_TYPE_IS_OUTPUT (pool->obj->type))
214     flags = GST_MAP_READ;
215   else
216     flags = GST_MAP_WRITE;
217
218   data = g_slice_new0 (struct UserPtrData);
219
220   if (finfo && (finfo->format != GST_VIDEO_FORMAT_UNKNOWN &&
221           finfo->format != GST_VIDEO_FORMAT_ENCODED)) {
222     gsize size[GST_VIDEO_MAX_PLANES] = { 0, };
223     gint i;
224
225     data->is_frame = TRUE;
226
227     if (!gst_video_frame_map (&data->frame, &pool->caps_info, src, flags))
228       goto invalid_buffer;
229
230     for (i = 0; i < GST_VIDEO_FORMAT_INFO_N_PLANES (finfo); i++) {
231       if (GST_VIDEO_FORMAT_INFO_IS_TILED (finfo)) {
232         gint tinfo = GST_VIDEO_FRAME_PLANE_STRIDE (&data->frame, i);
233         gint pstride;
234         guint pheight;
235
236         pstride = GST_VIDEO_TILE_X_TILES (tinfo) <<
237             GST_VIDEO_FORMAT_INFO_TILE_WS (finfo);
238
239         pheight = GST_VIDEO_TILE_Y_TILES (tinfo) <<
240             GST_VIDEO_FORMAT_INFO_TILE_HS (finfo);
241
242         size[i] = pstride * pheight;
243       } else {
244         size[i] = GST_VIDEO_FRAME_PLANE_STRIDE (&data->frame, i) *
245             GST_VIDEO_FRAME_COMP_HEIGHT (&data->frame, i);
246       }
247     }
248
249     /* In the single planar API, planes must be contiguous in memory and
250      * therefore they must have expected size. ie: no padding.
251      * To check these conditions, we check that plane 'i' start address
252      * + plane 'i' size equals to plane 'i+1' start address */
253     if (!V4L2_TYPE_IS_MULTIPLANAR (pool->obj->type)) {
254       for (i = 0; i < (GST_VIDEO_FORMAT_INFO_N_PLANES (finfo) - 1); i++) {
255         const struct v4l2_pix_format *pix_fmt = &pool->obj->format.fmt.pix;
256         gpointer tmp;
257         gint estride = gst_v4l2_object_extrapolate_stride (finfo, i,
258             pix_fmt->bytesperline);
259         guint eheight = GST_VIDEO_FORMAT_INFO_SCALE_HEIGHT (finfo, i,
260             pix_fmt->height);
261
262         tmp = ((guint8 *) data->frame.data[i]) + estride * eheight;
263         if (tmp != data->frame.data[i + 1])
264           goto non_contiguous_mem;
265       }
266     }
267
268     if (!gst_v4l2_allocator_import_userptr (pool->vallocator, group,
269             data->frame.info.size, finfo->n_planes, data->frame.data, size))
270       goto import_failed;
271   } else {
272     gpointer ptr[1];
273     gsize size[1];
274
275     data->is_frame = FALSE;
276
277     if (!gst_buffer_map (src, &data->map, flags))
278       goto invalid_buffer;
279
280     ptr[0] = data->map.data;
281     size[0] = data->map.size;
282
283     if (!gst_v4l2_allocator_import_userptr (pool->vallocator, group,
284             data->map.size, 1, ptr, size))
285       goto import_failed;
286   }
287
288   data->buffer = gst_buffer_ref (src);
289
290   gst_mini_object_set_qdata (GST_MINI_OBJECT (dest), GST_V4L2_IMPORT_QUARK,
291       data, (GDestroyNotify) _unmap_userptr_frame);
292
293   return ret;
294
295 not_our_buffer:
296   {
297     GST_ERROR_OBJECT (pool, "destination buffer invalid or not from our pool");
298     return GST_FLOW_ERROR;
299   }
300 invalid_buffer:
301   {
302     GST_ERROR_OBJECT (pool, "could not map buffer");
303     g_slice_free (struct UserPtrData, data);
304     return GST_FLOW_ERROR;
305   }
306 non_contiguous_mem:
307   {
308     GST_ERROR_OBJECT (pool, "memory is not contiguous or plane size mismatch");
309     _unmap_userptr_frame (data);
310     return GST_FLOW_ERROR;
311   }
312 import_failed:
313   {
314     GST_ERROR_OBJECT (pool, "failed to import data");
315     _unmap_userptr_frame (data);
316     return GST_FLOW_ERROR;
317   }
318 }
319
320 static GstFlowReturn
321 gst_v4l2_buffer_pool_import_dmabuf (GstV4l2BufferPool * pool,
322     GstBuffer * dest, GstBuffer * src)
323 {
324   GstV4l2MemoryGroup *group = NULL;
325   GstMemory *dma_mem[GST_VIDEO_MAX_PLANES] = { 0 };
326   guint n_mem = gst_buffer_n_memory (src);
327   gint i;
328
329   GST_LOG_OBJECT (pool, "importing dmabuf");
330
331   if (!gst_v4l2_is_buffer_valid (dest, &group))
332     goto not_our_buffer;
333
334   if (n_mem > GST_VIDEO_MAX_PLANES)
335     goto too_many_mems;
336
337   for (i = 0; i < n_mem; i++)
338     dma_mem[i] = gst_buffer_peek_memory (src, i);
339
340   if (!gst_v4l2_allocator_import_dmabuf (pool->vallocator, group, n_mem,
341           dma_mem))
342     goto import_failed;
343
344   gst_mini_object_set_qdata (GST_MINI_OBJECT (dest), GST_V4L2_IMPORT_QUARK,
345       gst_buffer_ref (src), (GDestroyNotify) gst_buffer_unref);
346
347   return GST_FLOW_OK;
348
349 not_our_buffer:
350   {
351     GST_ERROR_OBJECT (pool, "destination buffer invalid or not from our pool");
352     return GST_FLOW_ERROR;
353   }
354 too_many_mems:
355   {
356     GST_ERROR_OBJECT (pool, "could not map buffer");
357     return GST_FLOW_ERROR;
358   }
359 import_failed:
360   {
361     GST_ERROR_OBJECT (pool, "failed to import dmabuf");
362     return GST_FLOW_ERROR;
363   }
364 }
365
366 static GstFlowReturn
367 gst_v4l2_buffer_pool_prepare_buffer (GstV4l2BufferPool * pool,
368     GstBuffer * dest, GstBuffer * src)
369 {
370   GstFlowReturn ret = GST_FLOW_OK;
371   gboolean own_src = FALSE;
372
373   if (src == NULL) {
374     if (pool->other_pool == NULL) {
375       GST_ERROR_OBJECT (pool, "can't prepare buffer, source buffer missing");
376       return GST_FLOW_ERROR;
377     }
378
379     ret = gst_buffer_pool_acquire_buffer (pool->other_pool, &src, NULL);
380     if (ret != GST_FLOW_OK) {
381       GST_ERROR_OBJECT (pool, "failed to acquire buffer from downstream pool");
382       goto done;
383     }
384
385     own_src = TRUE;
386   }
387
388   switch (pool->obj->mode) {
389     case GST_V4L2_IO_MMAP:
390     case GST_V4L2_IO_DMABUF:
391       ret = gst_v4l2_buffer_pool_copy_buffer (pool, dest, src);
392       break;
393     case GST_V4L2_IO_USERPTR:
394       ret = gst_v4l2_buffer_pool_import_userptr (pool, dest, src);
395       break;
396     case GST_V4L2_IO_DMABUF_IMPORT:
397       ret = gst_v4l2_buffer_pool_import_dmabuf (pool, dest, src);
398       break;
399     default:
400       break;
401   }
402
403   if (own_src)
404     gst_buffer_unref (src);
405
406 done:
407   return ret;
408 }
409
410 static GstFlowReturn
411 gst_v4l2_buffer_pool_alloc_buffer (GstBufferPool * bpool, GstBuffer ** buffer,
412     GstBufferPoolAcquireParams * params)
413 {
414   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
415   GstV4l2MemoryGroup *group = NULL;
416   GstBuffer *newbuf = NULL;
417   GstV4l2Object *obj;
418   GstVideoInfo *info;
419
420   obj = pool->obj;
421   info = &obj->info;
422
423   switch (obj->mode) {
424     case GST_V4L2_IO_RW:
425       newbuf =
426           gst_buffer_new_allocate (pool->allocator, pool->size, &pool->params);
427       break;
428     case GST_V4L2_IO_MMAP:
429       group = gst_v4l2_allocator_alloc_mmap (pool->vallocator);
430       break;
431     case GST_V4L2_IO_DMABUF:
432       group = gst_v4l2_allocator_alloc_dmabuf (pool->vallocator,
433           pool->allocator);
434       break;
435     case GST_V4L2_IO_USERPTR:
436       group = gst_v4l2_allocator_alloc_userptr (pool->vallocator);
437       break;
438     case GST_V4L2_IO_DMABUF_IMPORT:
439       group = gst_v4l2_allocator_alloc_dmabufin (pool->vallocator);
440       break;
441     default:
442       newbuf = NULL;
443       g_assert_not_reached ();
444       break;
445   }
446
447   if (group != NULL) {
448     gint i;
449     newbuf = gst_buffer_new ();
450
451     for (i = 0; i < group->n_mem; i++)
452       gst_buffer_append_memory (newbuf, group->mem[i]);
453   } else if (newbuf == NULL) {
454     goto allocation_failed;
455   }
456
457   /* add metadata to raw video buffers */
458   if (pool->add_videometa)
459     gst_buffer_add_video_meta_full (newbuf, GST_VIDEO_FRAME_FLAG_NONE,
460         GST_VIDEO_INFO_FORMAT (info), GST_VIDEO_INFO_WIDTH (info),
461         GST_VIDEO_INFO_HEIGHT (info), GST_VIDEO_INFO_N_PLANES (info),
462         info->offset, info->stride);
463
464   *buffer = newbuf;
465
466   return GST_FLOW_OK;
467
468   /* ERRORS */
469 allocation_failed:
470   {
471     GST_ERROR_OBJECT (pool, "failed to allocate buffer");
472     return GST_FLOW_ERROR;
473   }
474 }
475
476 static gboolean
477 gst_v4l2_buffer_pool_set_config (GstBufferPool * bpool, GstStructure * config)
478 {
479   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
480   GstV4l2Object *obj = pool->obj;
481   GstCaps *caps;
482   guint size, min_buffers, max_buffers;
483   GstAllocator *allocator;
484   GstAllocationParams params;
485   gboolean can_allocate = FALSE;
486   gboolean updated = FALSE;
487   gboolean ret;
488
489   pool->add_videometa =
490       gst_buffer_pool_config_has_option (config,
491       GST_BUFFER_POOL_OPTION_VIDEO_META);
492
493   /* parse the config and keep around */
494   if (!gst_buffer_pool_config_get_params (config, &caps, &size, &min_buffers,
495           &max_buffers))
496     goto wrong_config;
497
498   if (!gst_buffer_pool_config_get_allocator (config, &allocator, &params))
499     goto wrong_config;
500
501   GST_DEBUG_OBJECT (pool, "config %" GST_PTR_FORMAT, config);
502
503   if (pool->allocator)
504     gst_object_unref (pool->allocator);
505   pool->allocator = NULL;
506
507   switch (obj->mode) {
508     case GST_V4L2_IO_DMABUF:
509       pool->allocator = gst_dmabuf_allocator_new ();
510       can_allocate = GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, MMAP);
511       break;
512     case GST_V4L2_IO_MMAP:
513       can_allocate = GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, MMAP);
514       break;
515     case GST_V4L2_IO_USERPTR:
516       can_allocate =
517           GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, USERPTR);
518       break;
519     case GST_V4L2_IO_DMABUF_IMPORT:
520       can_allocate = GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, DMABUF);
521       break;
522     case GST_V4L2_IO_RW:
523       if (allocator)
524         pool->allocator = g_object_ref (allocator);
525       pool->params = params;
526       /* No need to change the configuration */
527       goto done;
528       break;
529     default:
530       g_assert_not_reached ();
531       break;
532   }
533
534   /* libv4l2 conversion code does not handle CREATE_BUFS, and may lead to
535    * instability and crash, disable it for now */
536   if (can_allocate && obj->fmtdesc->flags & V4L2_FMT_FLAG_EMULATED) {
537     GST_WARNING_OBJECT (pool,
538         "libv4l2 converter detected, disabling CREATE_BUFS");
539     can_allocate = FALSE;
540     GST_OBJECT_FLAG_UNSET (pool->vallocator,
541         GST_V4L2_ALLOCATOR_FLAG_MMAP_CREATE_BUFS
542         | GST_V4L2_ALLOCATOR_FLAG_USERPTR_CREATE_BUFS
543         | GST_V4L2_ALLOCATOR_FLAG_DMABUF_CREATE_BUFS);
544   }
545
546   if (min_buffers < GST_V4L2_MIN_BUFFERS) {
547     updated = TRUE;
548     min_buffers = GST_V4L2_MIN_BUFFERS;
549     GST_INFO_OBJECT (pool, "increasing minimum buffers to %u", min_buffers);
550   }
551
552   /* respect driver requirements */
553   if (min_buffers < obj->min_buffers) {
554     updated = TRUE;
555     min_buffers = obj->min_buffers;
556     GST_INFO_OBJECT (pool, "increasing minimum buffers to %u", min_buffers);
557   }
558
559   if (max_buffers > VIDEO_MAX_FRAME || max_buffers == 0) {
560     updated = TRUE;
561     max_buffers = VIDEO_MAX_FRAME;
562     GST_INFO_OBJECT (pool, "reducing maximum buffers to %u", max_buffers);
563   }
564
565   if (min_buffers > max_buffers) {
566     updated = TRUE;
567     min_buffers = max_buffers;
568     GST_INFO_OBJECT (pool, "reducing minimum buffers to %u", min_buffers);
569   } else if (min_buffers != max_buffers) {
570     if (!can_allocate) {
571       updated = TRUE;
572       max_buffers = min_buffers;
573       GST_INFO_OBJECT (pool, "can't allocate, setting maximum to minimum");
574     }
575   }
576
577   if (!pool->add_videometa && obj->need_video_meta) {
578     GST_INFO_OBJECT (pool, "adding needed video meta");
579     updated = TRUE;
580     gst_buffer_pool_config_add_option (config,
581         GST_BUFFER_POOL_OPTION_VIDEO_META);
582   }
583
584   /* Always update the config to ensure the configured size matches */
585   gst_buffer_pool_config_set_params (config, caps, obj->info.size, min_buffers,
586       max_buffers);
587
588   /* keep a GstVideoInfo with defaults for the when we need to copy */
589   gst_video_info_from_caps (&pool->caps_info, caps);
590
591 done:
592   ret = GST_BUFFER_POOL_CLASS (parent_class)->set_config (bpool, config);
593
594   /* If anything was changed documentation recommand to return FALSE */
595   return !updated && ret;
596
597   /* ERRORS */
598 wrong_config:
599   {
600     GST_ERROR_OBJECT (pool, "invalid config %" GST_PTR_FORMAT, config);
601     return FALSE;
602   }
603 }
604
605 static gboolean
606 gst_v4l2_buffer_pool_streamon (GstV4l2BufferPool * pool)
607 {
608   GstV4l2Object *obj = pool->obj;
609
610   switch (obj->mode) {
611     case GST_V4L2_IO_MMAP:
612     case GST_V4L2_IO_USERPTR:
613     case GST_V4L2_IO_DMABUF:
614     case GST_V4L2_IO_DMABUF_IMPORT:
615       if (!pool->streaming) {
616         if (v4l2_ioctl (pool->video_fd, VIDIOC_STREAMON, &obj->type) < 0)
617           goto streamon_failed;
618
619         pool->streaming = TRUE;
620
621         GST_DEBUG_OBJECT (pool, "Started streaming");
622       }
623       break;
624     default:
625       break;
626   }
627
628   return TRUE;
629
630 streamon_failed:
631   {
632     GST_ERROR_OBJECT (pool, "error with STREAMON %d (%s)", errno,
633         g_strerror (errno));
634     return FALSE;
635   }
636 }
637
638 static void
639 gst_v4l2_buffer_pool_streamoff (GstV4l2BufferPool * pool)
640 {
641   GstV4l2Object *obj = pool->obj;
642
643   switch (obj->mode) {
644     case GST_V4L2_IO_MMAP:
645     case GST_V4L2_IO_USERPTR:
646     case GST_V4L2_IO_DMABUF:
647     case GST_V4L2_IO_DMABUF_IMPORT:
648       if (pool->streaming) {
649         if (v4l2_ioctl (pool->video_fd, VIDIOC_STREAMOFF, &obj->type) < 0)
650           GST_WARNING_OBJECT (pool, "STREAMOFF failed with errno %d (%s)",
651               errno, g_strerror (errno));
652
653         pool->streaming = FALSE;
654
655         GST_DEBUG_OBJECT (pool, "Stopped streaming");
656
657         if (pool->vallocator)
658           gst_v4l2_allocator_flush (pool->vallocator);
659       }
660       break;
661     default:
662       break;
663   }
664 }
665
666 static GstFlowReturn
667 gst_v4l2_buffer_pool_resurect_buffer (GstV4l2BufferPool * pool)
668 {
669   GstBufferPoolAcquireParams params = { 0 };
670   GstBuffer *buffer = NULL;
671   GstFlowReturn ret;
672
673   GST_DEBUG_OBJECT (pool, "A buffer was lost, reallocating it");
674
675   params.flags =
676       (GstBufferPoolAcquireFlags) GST_V4L2_BUFFER_POOL_ACQUIRE_FLAG_RESURRECT;
677   ret =
678       gst_buffer_pool_acquire_buffer (GST_BUFFER_POOL (pool), &buffer, &params);
679
680   if (ret == GST_FLOW_OK)
681     gst_buffer_unref (buffer);
682
683   return ret;
684 }
685
686 static gboolean
687 gst_v4l2_buffer_pool_start (GstBufferPool * bpool)
688 {
689   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
690   GstBufferPoolClass *pclass = GST_BUFFER_POOL_CLASS (parent_class);
691   GstV4l2Object *obj = pool->obj;
692   GstStructure *config;
693   GstCaps *caps;
694   guint size, min_buffers, max_buffers;
695   guint max_latency, min_latency, copy_threshold = 0;
696   gboolean can_allocate = FALSE;
697
698   GST_DEBUG_OBJECT (pool, "activating pool");
699
700   config = gst_buffer_pool_get_config (bpool);
701   if (!gst_buffer_pool_config_get_params (config, &caps, &size, &min_buffers,
702           &max_buffers))
703     goto wrong_config;
704
705   min_latency = MAX (GST_V4L2_MIN_BUFFERS, obj->min_buffers);
706
707   switch (obj->mode) {
708     case GST_V4L2_IO_RW:
709       can_allocate = TRUE;
710 #ifdef HAVE_LIBV4L2
711       /* This workaround a unfixable bug in libv4l2 when RW is emulated on top
712        * of MMAP. In this case, the first read initialize the queues, but the
713        * poll before that will always fail. Doing an empty read, forces the
714        * queue to be initialized now. We only do this if we have a streaming
715        * driver. */
716       if (obj->vcap.capabilities & V4L2_CAP_STREAMING)
717         v4l2_read (obj->video_fd, NULL, 0);
718 #endif
719       break;
720     case GST_V4L2_IO_DMABUF:
721     case GST_V4L2_IO_MMAP:
722     {
723       guint count;
724
725       can_allocate = GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, MMAP);
726
727       /* first, lets request buffers, and see how many we can get: */
728       GST_DEBUG_OBJECT (pool, "requesting %d MMAP buffers", min_buffers);
729
730       count = gst_v4l2_allocator_start (pool->vallocator, min_buffers,
731           V4L2_MEMORY_MMAP);
732
733       if (count < GST_V4L2_MIN_BUFFERS) {
734         min_buffers = count;
735         goto no_buffers;
736       }
737
738       /* V4L2 buffer pool are often very limited in the amount of buffers it
739        * can offer. The copy_threshold will workaround this limitation by
740        * falling back to copy if the pipeline needed more buffers. This also
741        * prevent having to do REQBUFS(N)/REQBUFS(0) everytime configure is
742        * called. */
743       if (count != min_buffers || pool->enable_copy_threshold) {
744         GST_WARNING_OBJECT (pool,
745             "Uncertain or not enough buffers, enabling copy threshold");
746         min_buffers = count;
747         copy_threshold = min_latency;
748       }
749
750       break;
751     }
752     case GST_V4L2_IO_USERPTR:
753     {
754       guint count;
755
756       can_allocate =
757           GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, USERPTR);
758
759       GST_DEBUG_OBJECT (pool, "requesting %d USERPTR buffers", min_buffers);
760
761       count = gst_v4l2_allocator_start (pool->vallocator, min_buffers,
762           V4L2_MEMORY_USERPTR);
763
764       /* There is no rational to not get what we asked */
765       if (count < min_buffers) {
766         min_buffers = count;
767         goto no_buffers;
768       }
769
770       min_buffers = count;
771       break;
772     }
773     case GST_V4L2_IO_DMABUF_IMPORT:
774     {
775       guint count;
776
777       can_allocate = GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, DMABUF);
778
779       GST_DEBUG_OBJECT (pool, "requesting %d DMABUF buffers", min_buffers);
780
781       count = gst_v4l2_allocator_start (pool->vallocator, min_buffers,
782           V4L2_MEMORY_DMABUF);
783
784       /* There is no rational to not get what we asked */
785       if (count < min_buffers) {
786         min_buffers = count;
787         goto no_buffers;
788       }
789
790       min_buffers = count;
791       break;
792     }
793     default:
794       min_buffers = 0;
795       copy_threshold = 0;
796       g_assert_not_reached ();
797       break;
798   }
799
800   if (can_allocate)
801     max_latency = max_buffers;
802   else
803     max_latency = min_buffers;
804
805   pool->size = size;
806   pool->copy_threshold = copy_threshold;
807   pool->max_latency = max_latency;
808   pool->min_latency = min_latency;
809   pool->num_queued = 0;
810
811   if (max_buffers != 0 && max_buffers < min_buffers)
812     max_buffers = min_buffers;
813
814   gst_buffer_pool_config_set_params (config, caps, size, min_buffers,
815       max_buffers);
816   pclass->set_config (bpool, config);
817   gst_structure_free (config);
818
819   if (pool->other_pool)
820     if (!gst_buffer_pool_set_active (pool->other_pool, TRUE))
821       goto other_pool_failed;
822
823   /* now, allocate the buffers: */
824   if (!pclass->start (bpool))
825     goto start_failed;
826
827   if (!V4L2_TYPE_IS_OUTPUT (obj->type))
828     pool->group_released_handler =
829         g_signal_connect_swapped (pool->vallocator, "group-released",
830         G_CALLBACK (gst_v4l2_buffer_pool_resurect_buffer), pool);
831
832   return TRUE;
833
834   /* ERRORS */
835 wrong_config:
836   {
837     GST_ERROR_OBJECT (pool, "invalid config %" GST_PTR_FORMAT, config);
838     gst_structure_free (config);
839     return FALSE;
840   }
841 no_buffers:
842   {
843     GST_ERROR_OBJECT (pool,
844         "we received %d buffer from device '%s', we want at least %d",
845         min_buffers, obj->videodev, GST_V4L2_MIN_BUFFERS);
846     gst_structure_free (config);
847     return FALSE;
848   }
849 start_failed:
850   {
851     GST_ERROR_OBJECT (pool, "failed to start streaming");
852     return FALSE;
853   }
854 other_pool_failed:
855   {
856     GST_ERROR_OBJECT (pool, "failed to active the other pool %"
857         GST_PTR_FORMAT, pool->other_pool);
858     return FALSE;
859   }
860 }
861
862 static gboolean
863 gst_v4l2_buffer_pool_stop (GstBufferPool * bpool)
864 {
865   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
866   GstBufferPoolClass *pclass = GST_BUFFER_POOL_CLASS (parent_class);
867   gboolean ret;
868   gint i;
869
870   GST_DEBUG_OBJECT (pool, "stopping pool");
871
872   if (pool->group_released_handler > 0) {
873     g_signal_handler_disconnect (pool->vallocator,
874         pool->group_released_handler);
875     pool->group_released_handler = 0;
876   }
877
878   if (pool->other_pool) {
879     gst_buffer_pool_set_active (pool->other_pool, FALSE);
880     gst_object_unref (pool->other_pool);
881     pool->other_pool = NULL;
882   }
883
884   gst_v4l2_buffer_pool_streamoff (pool);
885
886   for (i = 0; i < VIDEO_MAX_FRAME; i++) {
887     if (pool->buffers[i]) {
888       GstBuffer *buffer = pool->buffers[i];
889
890       pool->buffers[i] = NULL;
891
892       if (V4L2_TYPE_IS_OUTPUT (pool->obj->type))
893         gst_v4l2_buffer_pool_release_buffer (bpool, buffer);
894       else                      /* Don't re-enqueue capture buffer on stop */
895         pclass->release_buffer (bpool, buffer);
896
897       g_atomic_int_add (&pool->num_queued, -1);
898     }
899   }
900
901   ret = GST_BUFFER_POOL_CLASS (parent_class)->stop (bpool);
902
903   if (ret && pool->vallocator) {
904     GstV4l2Return vret;
905
906     vret = gst_v4l2_allocator_stop (pool->vallocator);
907
908     if (vret == GST_V4L2_BUSY)
909       GST_WARNING_OBJECT (pool, "some buffers are still outstanding");
910
911     ret = (vret == GST_V4L2_OK);
912   }
913
914   return ret;
915 }
916
917 static void
918 gst_v4l2_buffer_pool_flush_start (GstBufferPool * bpool)
919 {
920   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
921
922   GST_DEBUG_OBJECT (pool, "start flushing");
923
924   gst_poll_set_flushing (pool->poll, TRUE);
925
926   GST_OBJECT_LOCK (pool);
927   pool->empty = FALSE;
928   g_cond_broadcast (&pool->empty_cond);
929   GST_OBJECT_UNLOCK (pool);
930
931   if (pool->other_pool)
932     gst_buffer_pool_set_flushing (pool->other_pool, TRUE);
933 }
934
935 static void
936 gst_v4l2_buffer_pool_flush_stop (GstBufferPool * bpool)
937 {
938   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
939   GstV4l2Object *obj = pool->obj;
940   gint i;
941
942   GST_DEBUG_OBJECT (pool, "stop flushing");
943
944   /* If we haven't started streaming yet, simply call streamon */
945   if (!pool->streaming)
946     goto streamon;
947
948   if (pool->other_pool)
949     gst_buffer_pool_set_flushing (pool->other_pool, FALSE);
950
951   gst_v4l2_buffer_pool_streamoff (pool);
952
953   /* Reset our state */
954   switch (obj->mode) {
955     case GST_V4L2_IO_RW:
956       break;
957     case GST_V4L2_IO_MMAP:
958     case GST_V4L2_IO_USERPTR:
959     case GST_V4L2_IO_DMABUF:
960     case GST_V4L2_IO_DMABUF_IMPORT:
961     {
962       for (i = 0; i < VIDEO_MAX_FRAME; i++) {
963         /* Re-enqueue buffers */
964         if (pool->buffers[i]) {
965           GstBufferPool *bpool = (GstBufferPool *) pool;
966           GstBuffer *buffer = pool->buffers[i];
967
968           pool->buffers[i] = NULL;
969
970           /* Remove qdata, this will unmap any map data in
971            * userptr/dmabuf-import */
972           gst_mini_object_set_qdata (GST_MINI_OBJECT (buffer),
973               GST_V4L2_IMPORT_QUARK, NULL, NULL);
974
975           if (buffer->pool == NULL)
976             gst_v4l2_buffer_pool_release_buffer (bpool, buffer);
977
978           g_atomic_int_add (&pool->num_queued, -1);
979         }
980       }
981
982       break;
983     }
984     default:
985       g_assert_not_reached ();
986       break;
987   }
988
989 streamon:
990   /* Start streaming on capture device only */
991   if (!V4L2_TYPE_IS_OUTPUT (obj->type))
992     gst_v4l2_buffer_pool_streamon (pool);
993
994   gst_poll_set_flushing (pool->poll, FALSE);
995 }
996
997 static GstFlowReturn
998 gst_v4l2_buffer_pool_poll (GstV4l2BufferPool * pool)
999 {
1000   gint ret;
1001
1002   /* In RW mode there is no queue, hence no need to wait while the queue is
1003    * empty */
1004   if (pool->obj->mode != GST_V4L2_IO_RW) {
1005     GST_OBJECT_LOCK (pool);
1006     while (pool->empty)
1007       g_cond_wait (&pool->empty_cond, GST_OBJECT_GET_LOCK (pool));
1008     GST_OBJECT_UNLOCK (pool);
1009   }
1010
1011   if (!pool->can_poll_device)
1012     goto done;
1013
1014   GST_LOG_OBJECT (pool, "polling device");
1015
1016 again:
1017   ret = gst_poll_wait (pool->poll, GST_CLOCK_TIME_NONE);
1018   if (G_UNLIKELY (ret < 0)) {
1019     switch (errno) {
1020       case EBUSY:
1021         goto stopped;
1022       case EAGAIN:
1023       case EINTR:
1024         goto again;
1025       case ENXIO:
1026         GST_WARNING_OBJECT (pool,
1027             "v4l2 device doesn't support polling. Disabling"
1028             " using libv4l2 in this case may cause deadlocks");
1029         pool->can_poll_device = FALSE;
1030         goto done;
1031       default:
1032         goto select_error;
1033     }
1034   }
1035
1036   if (gst_poll_fd_has_error (pool->poll, &pool->pollfd))
1037     goto select_error;
1038
1039 done:
1040   return GST_FLOW_OK;
1041
1042   /* ERRORS */
1043 stopped:
1044   {
1045     GST_DEBUG_OBJECT (pool, "stop called");
1046     return GST_FLOW_FLUSHING;
1047   }
1048 select_error:
1049   {
1050     GST_ELEMENT_ERROR (pool->obj->element, RESOURCE, READ, (NULL),
1051         ("poll error %d: %s (%d)", ret, g_strerror (errno), errno));
1052     return GST_FLOW_ERROR;
1053   }
1054 }
1055
1056 static GstFlowReturn
1057 gst_v4l2_buffer_pool_qbuf (GstV4l2BufferPool * pool, GstBuffer * buf)
1058 {
1059   GstV4l2MemoryGroup *group = NULL;
1060   const GstV4l2Object *obj = pool->obj;
1061   gint index;
1062
1063   if (!gst_v4l2_is_buffer_valid (buf, &group)) {
1064     GST_LOG_OBJECT (pool, "unref copied/invalid buffer %p", buf);
1065     gst_buffer_unref (buf);
1066     return GST_FLOW_OK;
1067   }
1068
1069   index = group->buffer.index;
1070
1071   if (pool->buffers[index] != NULL)
1072     goto already_queued;
1073
1074   GST_LOG_OBJECT (pool, "queuing buffer %i", index);
1075
1076   g_atomic_int_inc (&pool->num_queued);
1077   pool->buffers[index] = buf;
1078
1079   if (V4L2_TYPE_IS_OUTPUT (obj->type)) {
1080     enum v4l2_field field;
1081
1082     /* Except when field is set to alternate, buffer field is the same as
1083      * the one defined in format */
1084     if (V4L2_TYPE_IS_MULTIPLANAR (obj->type))
1085       field = obj->format.fmt.pix_mp.field;
1086     else
1087       field = obj->format.fmt.pix.field;
1088
1089     /* NB: At this moment, we can't have alternate mode because it not handled
1090      * yet */
1091     if (field == V4L2_FIELD_ALTERNATE) {
1092       if (GST_BUFFER_FLAG_IS_SET (buf, GST_VIDEO_FRAME_FLAG_TFF))
1093         field = V4L2_FIELD_TOP;
1094       else
1095         field = V4L2_FIELD_BOTTOM;
1096     }
1097
1098     group->buffer.field = field;
1099   }
1100
1101   if (!gst_v4l2_allocator_qbuf (pool->vallocator, group))
1102     goto queue_failed;
1103
1104   GST_OBJECT_LOCK (pool);
1105   pool->empty = FALSE;
1106   g_cond_signal (&pool->empty_cond);
1107   GST_OBJECT_UNLOCK (pool);
1108
1109   return GST_FLOW_OK;
1110
1111 already_queued:
1112   {
1113     GST_ERROR_OBJECT (pool, "the buffer %i was already queued", index);
1114     return GST_FLOW_ERROR;
1115   }
1116 queue_failed:
1117   {
1118     GST_ERROR_OBJECT (pool, "could not queue a buffer %i", index);
1119     /* Mark broken buffer to the allocator */
1120     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_TAG_MEMORY);
1121     g_atomic_int_add (&pool->num_queued, -1);
1122     pool->buffers[index] = NULL;
1123     return GST_FLOW_ERROR;
1124   }
1125 }
1126
1127 static GstFlowReturn
1128 gst_v4l2_buffer_pool_dqbuf (GstV4l2BufferPool * pool, GstBuffer ** buffer)
1129 {
1130   GstFlowReturn res;
1131   GstBuffer *outbuf;
1132   GstV4l2Object *obj = pool->obj;
1133   GstClockTime timestamp;
1134   GstV4l2MemoryGroup *group;
1135   gint i;
1136
1137   if ((res = gst_v4l2_buffer_pool_poll (pool)) != GST_FLOW_OK)
1138     goto poll_failed;
1139
1140   GST_LOG_OBJECT (pool, "dequeueing a buffer");
1141
1142   group = gst_v4l2_allocator_dqbuf (pool->vallocator);
1143   if (group == NULL)
1144     goto dqbuf_failed;
1145
1146   /* get our GstBuffer with that index from the pool, if the buffer was
1147    * outstanding we have a serious problem.
1148    */
1149   outbuf = pool->buffers[group->buffer.index];
1150   if (outbuf == NULL)
1151     goto no_buffer;
1152
1153   /* mark the buffer outstanding */
1154   pool->buffers[group->buffer.index] = NULL;
1155   if (g_atomic_int_dec_and_test (&pool->num_queued)) {
1156     GST_OBJECT_LOCK (pool);
1157     pool->empty = TRUE;
1158     GST_OBJECT_UNLOCK (pool);
1159   }
1160
1161   timestamp = GST_TIMEVAL_TO_TIME (group->buffer.timestamp);
1162
1163 #ifndef GST_DISABLE_GST_DEBUG
1164   for (i = 0; i < group->n_mem; i++) {
1165     GST_LOG_OBJECT (pool,
1166         "dequeued buffer %p seq:%d (ix=%d), mem %p used %d, plane=%d, flags %08x, ts %"
1167         GST_TIME_FORMAT ", pool-queued=%d, buffer=%p", outbuf,
1168         group->buffer.sequence, group->buffer.index, group->mem[i],
1169         group->planes[i].bytesused, i, group->buffer.flags,
1170         GST_TIME_ARGS (timestamp), pool->num_queued, outbuf);
1171   }
1172 #endif
1173
1174   /* Ignore timestamp and field for OUTPUT device */
1175   if (V4L2_TYPE_IS_OUTPUT (obj->type))
1176     goto done;
1177
1178   /* Check for driver bug in reporting feild */
1179   if (group->buffer.field == V4L2_FIELD_ANY) {
1180     /* Only warn once to avoid the spamming */
1181 #ifndef GST_DISABLE_GST_DEBUG
1182     if (!pool->has_warned_on_buggy_field) {
1183       pool->has_warned_on_buggy_field = TRUE;
1184       GST_WARNING_OBJECT (pool,
1185           "Driver should never set v4l2_buffer.field to ANY");
1186     }
1187 #endif
1188
1189     /* Use the value from the format (works for UVC bug) */
1190     group->buffer.field = obj->format.fmt.pix.field;
1191
1192     /* If driver also has buggy S_FMT, assume progressive */
1193     if (group->buffer.field == V4L2_FIELD_ANY) {
1194 #ifndef GST_DISABLE_GST_DEBUG
1195       if (!pool->has_warned_on_buggy_field) {
1196         pool->has_warned_on_buggy_field = TRUE;
1197         GST_WARNING_OBJECT (pool,
1198             "Driver should never set v4l2_format.pix.field to ANY");
1199       }
1200 #endif
1201
1202       group->buffer.field = V4L2_FIELD_NONE;
1203     }
1204   }
1205
1206   /* set top/bottom field first if v4l2_buffer has the information */
1207   switch (group->buffer.field) {
1208     case V4L2_FIELD_NONE:
1209       GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_INTERLACED);
1210       GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1211       break;
1212     case V4L2_FIELD_INTERLACED_TB:
1213       GST_BUFFER_FLAG_SET (outbuf, GST_VIDEO_BUFFER_FLAG_INTERLACED);
1214       GST_BUFFER_FLAG_SET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1215       break;
1216     case V4L2_FIELD_INTERLACED_BT:
1217       GST_BUFFER_FLAG_SET (outbuf, GST_VIDEO_BUFFER_FLAG_INTERLACED);
1218       GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1219       break;
1220     case V4L2_FIELD_INTERLACED:
1221       GST_BUFFER_FLAG_SET (outbuf, GST_VIDEO_BUFFER_FLAG_INTERLACED);
1222       if (obj->tv_norm == V4L2_STD_NTSC_M ||
1223           obj->tv_norm == V4L2_STD_NTSC_M_JP ||
1224           obj->tv_norm == V4L2_STD_NTSC_M_KR) {
1225         GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1226       } else {
1227         GST_BUFFER_FLAG_SET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1228       }
1229       break;
1230     default:
1231       GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_INTERLACED);
1232       GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1233       GST_FIXME_OBJECT (pool,
1234           "Unhandled enum v4l2_field %d - treating as progressive",
1235           group->buffer.field);
1236       break;
1237   }
1238
1239   if (GST_VIDEO_INFO_FORMAT (&obj->info) == GST_VIDEO_FORMAT_ENCODED) {
1240     if (group->buffer.flags & V4L2_BUF_FLAG_KEYFRAME)
1241       GST_BUFFER_FLAG_UNSET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT);
1242     else
1243       GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT);
1244   }
1245
1246   if (group->buffer.flags & V4L2_BUF_FLAG_ERROR)
1247     GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_CORRUPTED);
1248
1249   GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
1250
1251 done:
1252   *buffer = outbuf;
1253
1254   return GST_FLOW_OK;
1255
1256   /* ERRORS */
1257 poll_failed:
1258   {
1259     GST_DEBUG_OBJECT (pool, "poll error %s", gst_flow_get_name (res));
1260     return res;
1261   }
1262 dqbuf_failed:
1263   {
1264     return GST_FLOW_ERROR;
1265   }
1266 no_buffer:
1267   {
1268     GST_ERROR_OBJECT (pool, "No free buffer found in the pool at index %d.",
1269         group->buffer.index);
1270     return GST_FLOW_ERROR;
1271   }
1272 }
1273
1274 static GstFlowReturn
1275 gst_v4l2_buffer_pool_acquire_buffer (GstBufferPool * bpool, GstBuffer ** buffer,
1276     GstBufferPoolAcquireParams * params)
1277 {
1278   GstFlowReturn ret;
1279   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
1280   GstBufferPoolClass *pclass = GST_BUFFER_POOL_CLASS (parent_class);
1281   GstV4l2Object *obj = pool->obj;
1282
1283   GST_DEBUG_OBJECT (pool, "acquire");
1284
1285   /* If this is being called to resurect a lost buffer */
1286   if (params && params->flags & GST_V4L2_BUFFER_POOL_ACQUIRE_FLAG_RESURRECT) {
1287     ret = pclass->acquire_buffer (bpool, buffer, params);
1288     goto done;
1289   }
1290
1291   switch (obj->type) {
1292     case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1293     case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
1294       /* capture, This function should return a buffer with new captured data */
1295       switch (obj->mode) {
1296         case GST_V4L2_IO_RW:
1297         {
1298           /* take empty buffer from the pool */
1299           ret = pclass->acquire_buffer (bpool, buffer, params);
1300           break;
1301         }
1302         case GST_V4L2_IO_DMABUF:
1303         case GST_V4L2_IO_MMAP:
1304         case GST_V4L2_IO_USERPTR:
1305         case GST_V4L2_IO_DMABUF_IMPORT:
1306         {
1307           /* just dequeue a buffer, we basically use the queue of v4l2 as the
1308            * storage for our buffers. This function does poll first so we can
1309            * interrupt it fine. */
1310           ret = gst_v4l2_buffer_pool_dqbuf (pool, buffer);
1311           break;
1312         }
1313         default:
1314           ret = GST_FLOW_ERROR;
1315           g_assert_not_reached ();
1316           break;
1317       }
1318       break;
1319
1320
1321     case V4L2_BUF_TYPE_VIDEO_OUTPUT:
1322     case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
1323       /* playback, This function should return an empty buffer */
1324       switch (obj->mode) {
1325         case GST_V4L2_IO_RW:
1326           /* get an empty buffer */
1327           ret = pclass->acquire_buffer (bpool, buffer, params);
1328           break;
1329
1330         case GST_V4L2_IO_MMAP:
1331         case GST_V4L2_IO_DMABUF:
1332         case GST_V4L2_IO_USERPTR:
1333         case GST_V4L2_IO_DMABUF_IMPORT:
1334           /* get a free unqueued buffer */
1335           ret = pclass->acquire_buffer (bpool, buffer, params);
1336           break;
1337
1338         default:
1339           ret = GST_FLOW_ERROR;
1340           g_assert_not_reached ();
1341           break;
1342       }
1343       break;
1344
1345     default:
1346       ret = GST_FLOW_ERROR;
1347       g_assert_not_reached ();
1348       break;
1349   }
1350 done:
1351   return ret;
1352 }
1353
1354 static void
1355 gst_v4l2_buffer_pool_release_buffer (GstBufferPool * bpool, GstBuffer * buffer)
1356 {
1357   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
1358   GstBufferPoolClass *pclass = GST_BUFFER_POOL_CLASS (parent_class);
1359   GstV4l2Object *obj = pool->obj;
1360
1361   GST_DEBUG_OBJECT (pool, "release buffer %p", buffer);
1362
1363   switch (obj->type) {
1364     case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1365     case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
1366       /* capture, put the buffer back in the queue so that we can refill it
1367        * later. */
1368       switch (obj->mode) {
1369         case GST_V4L2_IO_RW:
1370           /* release back in the pool */
1371           pclass->release_buffer (bpool, buffer);
1372           break;
1373
1374         case GST_V4L2_IO_DMABUF:
1375         case GST_V4L2_IO_MMAP:
1376         case GST_V4L2_IO_USERPTR:
1377         case GST_V4L2_IO_DMABUF_IMPORT:
1378         {
1379           GstV4l2MemoryGroup *group;
1380           if (gst_v4l2_is_buffer_valid (buffer, &group)) {
1381             gst_v4l2_allocator_reset_group (pool->vallocator, group);
1382             /* queue back in the device */
1383             if (pool->other_pool)
1384               gst_v4l2_buffer_pool_prepare_buffer (pool, buffer, NULL);
1385             if (gst_v4l2_buffer_pool_qbuf (pool, buffer) != GST_FLOW_OK)
1386               pclass->release_buffer (bpool, buffer);
1387           } else {
1388             /* Simply release invalide/modified buffer, the allocator will
1389              * give it back later */
1390             GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
1391             pclass->release_buffer (bpool, buffer);
1392           }
1393           break;
1394         }
1395         default:
1396           g_assert_not_reached ();
1397           break;
1398       }
1399       break;
1400
1401     case V4L2_BUF_TYPE_VIDEO_OUTPUT:
1402     case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
1403       switch (obj->mode) {
1404         case GST_V4L2_IO_RW:
1405           /* release back in the pool */
1406           pclass->release_buffer (bpool, buffer);
1407           break;
1408
1409         case GST_V4L2_IO_MMAP:
1410         case GST_V4L2_IO_DMABUF:
1411         case GST_V4L2_IO_USERPTR:
1412         case GST_V4L2_IO_DMABUF_IMPORT:
1413         {
1414           GstV4l2MemoryGroup *group;
1415           guint index;
1416
1417           if (!gst_v4l2_is_buffer_valid (buffer, &group)) {
1418             /* Simply release invalide/modified buffer, the allocator will
1419              * give it back later */
1420             GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
1421             pclass->release_buffer (bpool, buffer);
1422             break;
1423           }
1424
1425           index = group->buffer.index;
1426
1427           if (pool->buffers[index] == NULL) {
1428             GST_LOG_OBJECT (pool, "buffer %u not queued, putting on free list",
1429                 index);
1430
1431             /* Remove qdata, this will unmap any map data in userptr */
1432             gst_mini_object_set_qdata (GST_MINI_OBJECT (buffer),
1433                 GST_V4L2_IMPORT_QUARK, NULL, NULL);
1434
1435             /* reset to default size */
1436             gst_v4l2_allocator_reset_group (pool->vallocator, group);
1437
1438             /* playback, put the buffer back in the queue to refill later. */
1439             pclass->release_buffer (bpool, buffer);
1440           } else {
1441             /* the buffer is queued in the device but maybe not played yet. We just
1442              * leave it there and not make it available for future calls to acquire
1443              * for now. The buffer will be dequeued and reused later. */
1444             GST_LOG_OBJECT (pool, "buffer %u is queued", index);
1445           }
1446           break;
1447         }
1448
1449         default:
1450           g_assert_not_reached ();
1451           break;
1452       }
1453       break;
1454
1455     default:
1456       g_assert_not_reached ();
1457       break;
1458   }
1459 }
1460
1461 static void
1462 gst_v4l2_buffer_pool_dispose (GObject * object)
1463 {
1464   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (object);
1465
1466   if (pool->vallocator)
1467     gst_object_unref (pool->vallocator);
1468   pool->vallocator = NULL;
1469
1470   if (pool->allocator)
1471     gst_object_unref (pool->allocator);
1472   pool->allocator = NULL;
1473
1474   if (pool->other_pool)
1475     gst_object_unref (pool->other_pool);
1476   pool->other_pool = NULL;
1477
1478   G_OBJECT_CLASS (parent_class)->dispose (object);
1479 }
1480
1481 static void
1482 gst_v4l2_buffer_pool_finalize (GObject * object)
1483 {
1484   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (object);
1485
1486   if (pool->video_fd >= 0)
1487     v4l2_close (pool->video_fd);
1488
1489   gst_poll_free (pool->poll);
1490
1491   /* FIXME Is this required to keep around ?
1492    * This can't be done in dispose method because we must not set pointer
1493    * to NULL as it is part of the v4l2object and dispose could be called
1494    * multiple times */
1495   gst_object_unref (pool->obj->element);
1496
1497   g_cond_clear (&pool->empty_cond);
1498
1499   /* FIXME have we done enough here ? */
1500
1501   G_OBJECT_CLASS (parent_class)->finalize (object);
1502 }
1503
1504 static void
1505 gst_v4l2_buffer_pool_init (GstV4l2BufferPool * pool)
1506 {
1507   pool->poll = gst_poll_new (TRUE);
1508   pool->can_poll_device = TRUE;
1509   g_cond_init (&pool->empty_cond);
1510   pool->empty = TRUE;
1511 }
1512
1513 static void
1514 gst_v4l2_buffer_pool_class_init (GstV4l2BufferPoolClass * klass)
1515 {
1516   GObjectClass *object_class = G_OBJECT_CLASS (klass);
1517   GstBufferPoolClass *bufferpool_class = GST_BUFFER_POOL_CLASS (klass);
1518
1519   object_class->dispose = gst_v4l2_buffer_pool_dispose;
1520   object_class->finalize = gst_v4l2_buffer_pool_finalize;
1521
1522   bufferpool_class->start = gst_v4l2_buffer_pool_start;
1523   bufferpool_class->stop = gst_v4l2_buffer_pool_stop;
1524   bufferpool_class->set_config = gst_v4l2_buffer_pool_set_config;
1525   bufferpool_class->alloc_buffer = gst_v4l2_buffer_pool_alloc_buffer;
1526   bufferpool_class->acquire_buffer = gst_v4l2_buffer_pool_acquire_buffer;
1527   bufferpool_class->release_buffer = gst_v4l2_buffer_pool_release_buffer;
1528   bufferpool_class->flush_start = gst_v4l2_buffer_pool_flush_start;
1529   bufferpool_class->flush_stop = gst_v4l2_buffer_pool_flush_stop;
1530
1531   GST_DEBUG_CATEGORY_INIT (v4l2bufferpool_debug, "v4l2bufferpool", 0,
1532       "V4L2 Buffer Pool");
1533 }
1534
1535 /**
1536  * gst_v4l2_buffer_pool_new:
1537  * @obj:  the v4l2 object owning the pool
1538  *
1539  * Construct a new buffer pool.
1540  *
1541  * Returns: the new pool, use gst_object_unref() to free resources
1542  */
1543 GstBufferPool *
1544 gst_v4l2_buffer_pool_new (GstV4l2Object * obj, GstCaps * caps)
1545 {
1546   GstV4l2BufferPool *pool;
1547   GstStructure *config;
1548   gchar *name, *parent_name;
1549   gint fd;
1550
1551   fd = v4l2_dup (obj->video_fd);
1552   if (fd < 0)
1553     goto dup_failed;
1554
1555   /* setting a significant unique name */
1556   parent_name = gst_object_get_name (GST_OBJECT (obj->element));
1557   name = g_strconcat (parent_name, ":", "pool:",
1558       V4L2_TYPE_IS_OUTPUT (obj->type) ? "sink" : "src", NULL);
1559   g_free (parent_name);
1560
1561   pool = (GstV4l2BufferPool *) g_object_new (GST_TYPE_V4L2_BUFFER_POOL,
1562       "name", name, NULL);
1563   g_free (name);
1564
1565   gst_poll_fd_init (&pool->pollfd);
1566   pool->pollfd.fd = fd;
1567   gst_poll_add_fd (pool->poll, &pool->pollfd);
1568   if (V4L2_TYPE_IS_OUTPUT (obj->type))
1569     gst_poll_fd_ctl_write (pool->poll, &pool->pollfd, TRUE);
1570   else
1571     gst_poll_fd_ctl_read (pool->poll, &pool->pollfd, TRUE);
1572
1573   pool->video_fd = fd;
1574   pool->obj = obj;
1575   pool->can_poll_device = TRUE;
1576
1577   pool->vallocator =
1578       gst_v4l2_allocator_new (GST_OBJECT (pool), obj->video_fd, &obj->format);
1579   if (pool->vallocator == NULL)
1580     goto allocator_failed;
1581
1582   gst_object_ref (obj->element);
1583
1584   config = gst_buffer_pool_get_config (GST_BUFFER_POOL_CAST (pool));
1585   gst_buffer_pool_config_set_params (config, caps, obj->info.size, 0, 0);
1586   /* This will simply set a default config, but will not configure the pool
1587    * because min and max are not valid */
1588   gst_buffer_pool_set_config (GST_BUFFER_POOL_CAST (pool), config);
1589
1590   return GST_BUFFER_POOL (pool);
1591
1592   /* ERRORS */
1593 dup_failed:
1594   {
1595     GST_ERROR ("failed to dup fd %d (%s)", errno, g_strerror (errno));
1596     return NULL;
1597   }
1598 allocator_failed:
1599   {
1600     GST_ERROR_OBJECT (pool, "Failed to create V4L2 allocator");
1601     gst_object_unref (pool);
1602     return NULL;
1603   }
1604 }
1605
1606 static GstFlowReturn
1607 gst_v4l2_do_read (GstV4l2BufferPool * pool, GstBuffer * buf)
1608 {
1609   GstFlowReturn res;
1610   GstV4l2Object *obj = pool->obj;
1611   gint amount;
1612   GstMapInfo map;
1613   gint toread;
1614
1615   toread = obj->info.size;
1616
1617   GST_LOG_OBJECT (pool, "reading %d bytes into buffer %p", toread, buf);
1618
1619   gst_buffer_map (buf, &map, GST_MAP_WRITE);
1620
1621   do {
1622     if ((res = gst_v4l2_buffer_pool_poll (pool)) != GST_FLOW_OK)
1623       goto poll_error;
1624
1625     amount = v4l2_read (obj->video_fd, map.data, toread);
1626
1627     if (amount == toread) {
1628       break;
1629     } else if (amount == -1) {
1630       if (errno == EAGAIN || errno == EINTR) {
1631         continue;
1632       } else
1633         goto read_error;
1634     } else {
1635       /* short reads can happen if a signal interrupts the read */
1636       continue;
1637     }
1638   } while (TRUE);
1639
1640   GST_LOG_OBJECT (pool, "read %d bytes", amount);
1641   gst_buffer_unmap (buf, &map);
1642   gst_buffer_resize (buf, 0, amount);
1643
1644   return GST_FLOW_OK;
1645
1646   /* ERRORS */
1647 poll_error:
1648   {
1649     GST_DEBUG ("poll error %s", gst_flow_get_name (res));
1650     goto cleanup;
1651   }
1652 read_error:
1653   {
1654     GST_ELEMENT_ERROR (obj->element, RESOURCE, READ,
1655         (_("Error reading %d bytes from device '%s'."),
1656             toread, obj->videodev), GST_ERROR_SYSTEM);
1657     res = GST_FLOW_ERROR;
1658     goto cleanup;
1659   }
1660 cleanup:
1661   {
1662     gst_buffer_unmap (buf, &map);
1663     gst_buffer_resize (buf, 0, 0);
1664     return res;
1665   }
1666 }
1667
1668 /**
1669  * gst_v4l2_buffer_pool_process:
1670  * @bpool: a #GstBufferPool
1671  * @buf: a #GstBuffer, maybe be replaced
1672  *
1673  * Process @buf in @bpool. For capture devices, this functions fills @buf with
1674  * data from the device. For output devices, this functions send the contents of
1675  * @buf to the device for playback.
1676  *
1677  * Returns: %GST_FLOW_OK on success.
1678  */
1679 GstFlowReturn
1680 gst_v4l2_buffer_pool_process (GstV4l2BufferPool * pool, GstBuffer ** buf)
1681 {
1682   GstFlowReturn ret = GST_FLOW_OK;
1683   GstBufferPool *bpool = GST_BUFFER_POOL_CAST (pool);
1684   GstV4l2Object *obj = pool->obj;
1685
1686   GST_DEBUG_OBJECT (pool, "process buffer %p", buf);
1687
1688   g_return_val_if_fail (gst_buffer_pool_is_active (bpool), GST_FLOW_ERROR);
1689
1690   if (GST_BUFFER_POOL_IS_FLUSHING (pool))
1691     return GST_FLOW_FLUSHING;
1692
1693   switch (obj->type) {
1694     case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1695     case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
1696       /* capture */
1697       switch (obj->mode) {
1698         case GST_V4L2_IO_RW:
1699           /* capture into the buffer */
1700           ret = gst_v4l2_do_read (pool, *buf);
1701           break;
1702
1703         case GST_V4L2_IO_MMAP:
1704         case GST_V4L2_IO_DMABUF:
1705         {
1706           GstBuffer *tmp;
1707
1708           if ((*buf)->pool == bpool) {
1709             guint num_queued;
1710
1711             if (gst_buffer_get_size (*buf) == 0) {
1712               if (GST_BUFFER_FLAG_IS_SET (*buf, GST_BUFFER_FLAG_CORRUPTED))
1713                 goto buffer_corrupted;
1714               else
1715                 goto eos;
1716             }
1717
1718             num_queued = g_atomic_int_get (&pool->num_queued);
1719             GST_TRACE_OBJECT (pool, "Only %i buffer left in the capture queue.",
1720                 num_queued);
1721
1722             /* If we have no more buffer, and can allocate it time to do so */
1723             if (num_queued == 0) {
1724               if (GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, MMAP)) {
1725                 ret = gst_v4l2_buffer_pool_resurect_buffer (pool);
1726                 if (ret == GST_FLOW_OK)
1727                   goto done;
1728               }
1729             }
1730
1731             /* start copying buffers when we are running low on buffers */
1732             if (num_queued < pool->copy_threshold) {
1733               GstBuffer *copy;
1734
1735               if (GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, MMAP)) {
1736                 ret = gst_v4l2_buffer_pool_resurect_buffer (pool);
1737                 if (ret == GST_FLOW_OK)
1738                   goto done;
1739               }
1740
1741               /* copy the buffer */
1742               copy = gst_buffer_copy_region (*buf,
1743                   GST_BUFFER_COPY_ALL | GST_BUFFER_COPY_DEEP, 0, -1);
1744               GST_LOG_OBJECT (pool, "copy buffer %p->%p", *buf, copy);
1745
1746               /* and requeue so that we can continue capturing */
1747               gst_buffer_unref (*buf);
1748               *buf = copy;
1749             }
1750
1751             /* nothing, data was inside the buffer when we did _acquire() */
1752             goto done;
1753           }
1754
1755           /* buffer not from our pool, grab a frame and copy it into the target */
1756           if ((ret = gst_v4l2_buffer_pool_dqbuf (pool, &tmp)) != GST_FLOW_OK)
1757             goto done;
1758
1759           /* An empty buffer on capture indicates the end of stream */
1760           if (gst_buffer_get_size (tmp) == 0) {
1761             gboolean corrupted = GST_BUFFER_FLAG_IS_SET (tmp,
1762                 GST_BUFFER_FLAG_CORRUPTED);
1763
1764             gst_v4l2_buffer_pool_release_buffer (bpool, tmp);
1765
1766             if (corrupted)
1767               goto buffer_corrupted;
1768             else
1769               goto eos;
1770           }
1771
1772           ret = gst_v4l2_buffer_pool_copy_buffer (pool, *buf, tmp);
1773
1774           /* an queue the buffer again after the copy */
1775           gst_v4l2_buffer_pool_release_buffer (bpool, tmp);
1776
1777           if (ret != GST_FLOW_OK)
1778             goto copy_failed;
1779           break;
1780         }
1781
1782         case GST_V4L2_IO_USERPTR:
1783         {
1784           struct UserPtrData *data;
1785
1786           /* Replace our buffer with downstream allocated buffer */
1787           data = gst_mini_object_steal_qdata (GST_MINI_OBJECT (*buf),
1788               GST_V4L2_IMPORT_QUARK);
1789           gst_buffer_replace (buf, data->buffer);
1790           _unmap_userptr_frame (data);
1791           break;
1792         }
1793
1794         case GST_V4L2_IO_DMABUF_IMPORT:
1795         {
1796           GstBuffer *tmp;
1797
1798           /* Replace our buffer with downstream allocated buffer */
1799           tmp = gst_mini_object_steal_qdata (GST_MINI_OBJECT (*buf),
1800               GST_V4L2_IMPORT_QUARK);
1801           gst_buffer_replace (buf, tmp);
1802           gst_buffer_unref (tmp);
1803           break;
1804         }
1805
1806         default:
1807           g_assert_not_reached ();
1808           break;
1809       }
1810       break;
1811
1812     case V4L2_BUF_TYPE_VIDEO_OUTPUT:
1813     case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
1814       /* playback */
1815       switch (obj->mode) {
1816         case GST_V4L2_IO_RW:
1817           /* FIXME, do write() */
1818           GST_WARNING_OBJECT (pool, "implement write()");
1819           break;
1820
1821         case GST_V4L2_IO_USERPTR:
1822         case GST_V4L2_IO_DMABUF_IMPORT:
1823         case GST_V4L2_IO_DMABUF:
1824         case GST_V4L2_IO_MMAP:
1825         {
1826           GstBuffer *to_queue = NULL;
1827           GstV4l2MemoryGroup *group;
1828           gint index;
1829
1830           if ((*buf)->pool != bpool)
1831             goto copying;
1832
1833           if (!gst_v4l2_is_buffer_valid (*buf, &group))
1834             goto copying;
1835
1836           index = group->buffer.index;
1837
1838           GST_LOG_OBJECT (pool, "processing buffer %i from our pool", index);
1839
1840           index = group->buffer.index;
1841           if (pool->buffers[index] != NULL) {
1842             GST_LOG_OBJECT (pool, "buffer %i already queued, copying", index);
1843             goto copying;
1844           }
1845
1846           /* we can queue directly */
1847           to_queue = gst_buffer_ref (*buf);
1848
1849         copying:
1850           if (to_queue == NULL) {
1851             GstBufferPoolAcquireParams params = { 0 };
1852
1853             GST_LOG_OBJECT (pool, "alloc buffer from our pool");
1854
1855             /* this can return EOS if all buffers are outstanding which would
1856              * be strange because we would expect the upstream element to have
1857              * allocated them and returned to us.. */
1858             params.flags = GST_BUFFER_POOL_ACQUIRE_FLAG_DONTWAIT;
1859             ret = gst_buffer_pool_acquire_buffer (bpool, &to_queue, &params);
1860             if (ret != GST_FLOW_OK)
1861               goto acquire_failed;
1862
1863             ret = gst_v4l2_buffer_pool_prepare_buffer (pool, to_queue, *buf);
1864             if (ret != GST_FLOW_OK) {
1865               gst_buffer_unref (to_queue);
1866               goto prepare_failed;
1867             }
1868           }
1869
1870           if ((ret = gst_v4l2_buffer_pool_qbuf (pool, to_queue)) != GST_FLOW_OK)
1871             goto queue_failed;
1872
1873           /* if we are not streaming yet (this is the first buffer, start
1874            * streaming now */
1875           if (!gst_v4l2_buffer_pool_streamon (pool)) {
1876             /* don't check return value because qbuf would have failed */
1877             gst_v4l2_is_buffer_valid (to_queue, &group);
1878
1879             /* qbuf has stored to_queue buffer but we are not in
1880              * streaming state, so the flush logic won't be performed.
1881              * To avoid leaks, flush the allocator and restore the queued
1882              * buffer as non-queued */
1883             gst_v4l2_allocator_flush (pool->vallocator);
1884
1885             pool->buffers[group->buffer.index] = NULL;
1886
1887             gst_mini_object_set_qdata (GST_MINI_OBJECT (to_queue),
1888                 GST_V4L2_IMPORT_QUARK, NULL, NULL);
1889             gst_buffer_unref (to_queue);
1890             g_atomic_int_add (&pool->num_queued, -1);
1891             goto start_failed;
1892           }
1893
1894           /* Remove our ref, we will still hold this buffer in acquire as needed,
1895            * otherwise the pool will think it is outstanding and will refuse to stop. */
1896           gst_buffer_unref (to_queue);
1897
1898           if (g_atomic_int_get (&pool->num_queued) >= pool->min_latency) {
1899             GstBuffer *out;
1900             /* all buffers are queued, try to dequeue one and release it back
1901              * into the pool so that _acquire can get to it again. */
1902             ret = gst_v4l2_buffer_pool_dqbuf (pool, &out);
1903             if (ret == GST_FLOW_OK && out->pool == NULL)
1904               /* release the rendered buffer back into the pool. This wakes up any
1905                * thread waiting for a buffer in _acquire(). */
1906               gst_v4l2_buffer_pool_release_buffer (bpool, out);
1907           }
1908           break;
1909         }
1910         default:
1911           g_assert_not_reached ();
1912           break;
1913       }
1914       break;
1915     default:
1916       g_assert_not_reached ();
1917       break;
1918   }
1919 done:
1920   return ret;
1921
1922   /* ERRORS */
1923 copy_failed:
1924   {
1925     GST_ERROR_OBJECT (pool, "failed to copy buffer");
1926     return ret;
1927   }
1928 buffer_corrupted:
1929   {
1930     GST_WARNING_OBJECT (pool, "Dropping corrupted buffer without payload");
1931     gst_buffer_unref (*buf);
1932     *buf = NULL;
1933     return GST_V4L2_FLOW_CORRUPTED_BUFFER;
1934   }
1935 eos:
1936   {
1937     GST_DEBUG_OBJECT (pool, "end of stream reached");
1938     gst_buffer_unref (*buf);
1939     *buf = NULL;
1940     return GST_V4L2_FLOW_LAST_BUFFER;
1941   }
1942 acquire_failed:
1943   {
1944     if (ret == GST_FLOW_FLUSHING)
1945       GST_DEBUG_OBJECT (pool, "flushing");
1946     else
1947       GST_WARNING_OBJECT (pool, "failed to acquire a buffer: %s",
1948           gst_flow_get_name (ret));
1949     return ret;
1950   }
1951 prepare_failed:
1952   {
1953     GST_ERROR_OBJECT (pool, "failed to prepare data");
1954     return ret;
1955   }
1956 queue_failed:
1957   {
1958     GST_ERROR_OBJECT (pool, "failed to queue buffer");
1959     return ret;
1960   }
1961 start_failed:
1962   {
1963     GST_ERROR_OBJECT (pool, "failed to start streaming");
1964     return GST_FLOW_ERROR;
1965   }
1966 }
1967
1968 void
1969 gst_v4l2_buffer_pool_set_other_pool (GstV4l2BufferPool * pool,
1970     GstBufferPool * other_pool)
1971 {
1972   g_return_if_fail (!gst_buffer_pool_is_active (GST_BUFFER_POOL (pool)));
1973
1974   if (pool->other_pool)
1975     gst_object_unref (pool->other_pool);
1976   pool->other_pool = gst_object_ref (other_pool);
1977 }
1978
1979 void
1980 gst_v4l2_buffer_pool_copy_at_threshold (GstV4l2BufferPool * pool, gboolean copy)
1981 {
1982   GST_OBJECT_LOCK (pool);
1983   pool->enable_copy_threshold = copy;
1984   GST_OBJECT_UNLOCK (pool);
1985 }