v4l2bufferpool: Add missing break
[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   if (max_buffers > VIDEO_MAX_FRAME || max_buffers == 0) {
553     updated = TRUE;
554     max_buffers = VIDEO_MAX_FRAME;
555     GST_INFO_OBJECT (pool, "reducing maximum buffers to %u", max_buffers);
556   }
557
558   if (min_buffers > max_buffers) {
559     updated = TRUE;
560     min_buffers = max_buffers;
561     GST_INFO_OBJECT (pool, "reducing minimum buffers to %u", min_buffers);
562   } else if (min_buffers != max_buffers) {
563     if (!can_allocate) {
564       updated = TRUE;
565       max_buffers = min_buffers;
566       GST_INFO_OBJECT (pool, "can't allocate, setting maximum to minimum");
567     }
568   }
569
570   if (!pool->add_videometa && obj->need_video_meta) {
571     GST_INFO_OBJECT (pool, "adding needed video meta");
572     updated = TRUE;
573     gst_buffer_pool_config_add_option (config,
574         GST_BUFFER_POOL_OPTION_VIDEO_META);
575   }
576
577   /* Always update the config to ensure the configured size matches */
578   gst_buffer_pool_config_set_params (config, caps, obj->info.size, min_buffers,
579       max_buffers);
580
581   /* keep a GstVideoInfo with defaults for the when we need to copy */
582   gst_video_info_from_caps (&pool->caps_info, caps);
583
584 done:
585   ret = GST_BUFFER_POOL_CLASS (parent_class)->set_config (bpool, config);
586
587   /* If anything was changed documentation recommand to return FALSE */
588   return !updated && ret;
589
590   /* ERRORS */
591 wrong_config:
592   {
593     GST_ERROR_OBJECT (pool, "invalid config %" GST_PTR_FORMAT, config);
594     return FALSE;
595   }
596 }
597
598 static gboolean
599 gst_v4l2_buffer_pool_streamon (GstV4l2BufferPool * pool)
600 {
601   GstV4l2Object *obj = pool->obj;
602
603   switch (obj->mode) {
604     case GST_V4L2_IO_MMAP:
605     case GST_V4L2_IO_USERPTR:
606     case GST_V4L2_IO_DMABUF:
607     case GST_V4L2_IO_DMABUF_IMPORT:
608       if (!pool->streaming) {
609         if (v4l2_ioctl (pool->video_fd, VIDIOC_STREAMON, &obj->type) < 0)
610           goto streamon_failed;
611
612         pool->streaming = TRUE;
613
614         GST_DEBUG_OBJECT (pool, "Started streaming");
615       }
616       break;
617     default:
618       break;
619   }
620
621   return TRUE;
622
623 streamon_failed:
624   {
625     GST_ERROR_OBJECT (pool, "error with STREAMON %d (%s)", errno,
626         g_strerror (errno));
627     return FALSE;
628   }
629 }
630
631 static void
632 gst_v4l2_buffer_pool_streamoff (GstV4l2BufferPool * pool)
633 {
634   GstV4l2Object *obj = pool->obj;
635
636   switch (obj->mode) {
637     case GST_V4L2_IO_MMAP:
638     case GST_V4L2_IO_USERPTR:
639     case GST_V4L2_IO_DMABUF:
640     case GST_V4L2_IO_DMABUF_IMPORT:
641       if (pool->streaming) {
642         if (v4l2_ioctl (pool->video_fd, VIDIOC_STREAMOFF, &obj->type) < 0)
643           GST_WARNING_OBJECT (pool, "STREAMOFF failed with errno %d (%s)",
644               errno, g_strerror (errno));
645
646         pool->streaming = FALSE;
647
648         GST_DEBUG_OBJECT (pool, "Stopped streaming");
649
650         if (pool->vallocator)
651           gst_v4l2_allocator_flush (pool->vallocator);
652       }
653       break;
654     default:
655       break;
656   }
657 }
658
659 static GstFlowReturn
660 gst_v4l2_buffer_pool_resurect_buffer (GstV4l2BufferPool * pool)
661 {
662   GstBufferPoolAcquireParams params = { 0 };
663   GstBuffer *buffer = NULL;
664   GstFlowReturn ret;
665
666   GST_DEBUG_OBJECT (pool, "A buffer was lost, reallocating it");
667
668   params.flags =
669       (GstBufferPoolAcquireFlags) GST_V4L2_BUFFER_POOL_ACQUIRE_FLAG_RESURRECT;
670   ret =
671       gst_buffer_pool_acquire_buffer (GST_BUFFER_POOL (pool), &buffer, &params);
672
673   if (ret == GST_FLOW_OK)
674     gst_buffer_unref (buffer);
675
676   return ret;
677 }
678
679 static gboolean
680 gst_v4l2_buffer_pool_start (GstBufferPool * bpool)
681 {
682   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
683   GstBufferPoolClass *pclass = GST_BUFFER_POOL_CLASS (parent_class);
684   GstV4l2Object *obj = pool->obj;
685   GstStructure *config;
686   GstCaps *caps;
687   guint size, min_buffers, max_buffers;
688   guint max_latency, min_latency, copy_threshold = 0;
689   gboolean can_allocate = FALSE;
690
691   GST_DEBUG_OBJECT (pool, "activating pool");
692
693   config = gst_buffer_pool_get_config (bpool);
694   if (!gst_buffer_pool_config_get_params (config, &caps, &size, &min_buffers,
695           &max_buffers))
696     goto wrong_config;
697
698   min_latency = MAX (GST_V4L2_MIN_BUFFERS, obj->min_buffers);
699
700   switch (obj->mode) {
701     case GST_V4L2_IO_RW:
702       can_allocate = TRUE;
703 #ifdef HAVE_LIBV4L2
704       /* This workaround a unfixable bug in libv4l2 when RW is emulated on top
705        * of MMAP. In this case, the first read initialize the queues, but the
706        * poll before that will always fail. Doing an empty read, forces the
707        * queue to be initialized now. We only do this if we have a streaming
708        * driver. */
709       if (obj->vcap.capabilities & V4L2_CAP_STREAMING)
710         v4l2_read (obj->video_fd, NULL, 0);
711 #endif
712       break;
713     case GST_V4L2_IO_DMABUF:
714     case GST_V4L2_IO_MMAP:
715     {
716       guint count;
717
718       can_allocate = GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, MMAP);
719
720       /* first, lets request buffers, and see how many we can get: */
721       GST_DEBUG_OBJECT (pool, "requesting %d MMAP buffers", min_buffers);
722
723       count = gst_v4l2_allocator_start (pool->vallocator, min_buffers,
724           V4L2_MEMORY_MMAP);
725
726       if (count < GST_V4L2_MIN_BUFFERS) {
727         min_buffers = count;
728         goto no_buffers;
729       }
730
731       /* V4L2 buffer pool are often very limited in the amount of buffers it
732        * can offer. The copy_threshold will workaround this limitation by
733        * falling back to copy if the pipeline needed more buffers. This also
734        * prevent having to do REQBUFS(N)/REQBUFS(0) everytime configure is
735        * called. */
736       if (count != min_buffers || pool->enable_copy_threshold) {
737         GST_WARNING_OBJECT (pool,
738             "Uncertain or not enough buffers, enabling copy threshold");
739         min_buffers = count;
740         copy_threshold = min_latency;
741       }
742
743       break;
744     }
745     case GST_V4L2_IO_USERPTR:
746     {
747       guint count;
748
749       can_allocate =
750           GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, USERPTR);
751
752       GST_DEBUG_OBJECT (pool, "requesting %d USERPTR buffers", min_buffers);
753
754       count = gst_v4l2_allocator_start (pool->vallocator, min_buffers,
755           V4L2_MEMORY_USERPTR);
756
757       /* There is no rational to not get what we asked */
758       if (count < min_buffers) {
759         min_buffers = count;
760         goto no_buffers;
761       }
762
763       min_buffers = count;
764       break;
765     }
766     case GST_V4L2_IO_DMABUF_IMPORT:
767     {
768       guint count;
769
770       can_allocate = GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, DMABUF);
771
772       GST_DEBUG_OBJECT (pool, "requesting %d DMABUF buffers", min_buffers);
773
774       count = gst_v4l2_allocator_start (pool->vallocator, min_buffers,
775           V4L2_MEMORY_DMABUF);
776
777       /* There is no rational to not get what we asked */
778       if (count < min_buffers) {
779         min_buffers = count;
780         goto no_buffers;
781       }
782
783       min_buffers = count;
784       break;
785     }
786     default:
787       min_buffers = 0;
788       copy_threshold = 0;
789       g_assert_not_reached ();
790       break;
791   }
792
793   if (can_allocate)
794     max_latency = max_buffers;
795   else
796     max_latency = min_buffers;
797
798   pool->size = size;
799   pool->copy_threshold = copy_threshold;
800   pool->max_latency = max_latency;
801   pool->min_latency = min_latency;
802   pool->num_queued = 0;
803
804   if (max_buffers != 0 && max_buffers < min_buffers)
805     max_buffers = min_buffers;
806
807   gst_buffer_pool_config_set_params (config, caps, size, min_buffers,
808       max_buffers);
809   pclass->set_config (bpool, config);
810   gst_structure_free (config);
811
812   if (pool->other_pool)
813     if (!gst_buffer_pool_set_active (pool->other_pool, TRUE))
814       goto other_pool_failed;
815
816   /* now, allocate the buffers: */
817   if (!pclass->start (bpool))
818     goto start_failed;
819
820   if (!V4L2_TYPE_IS_OUTPUT (obj->type))
821     pool->group_released_handler =
822         g_signal_connect_swapped (pool->vallocator, "group-released",
823         G_CALLBACK (gst_v4l2_buffer_pool_resurect_buffer), pool);
824
825   return TRUE;
826
827   /* ERRORS */
828 wrong_config:
829   {
830     GST_ERROR_OBJECT (pool, "invalid config %" GST_PTR_FORMAT, config);
831     gst_structure_free (config);
832     return FALSE;
833   }
834 no_buffers:
835   {
836     GST_ERROR_OBJECT (pool,
837         "we received %d buffer from device '%s', we want at least %d",
838         min_buffers, obj->videodev, GST_V4L2_MIN_BUFFERS);
839     gst_structure_free (config);
840     return FALSE;
841   }
842 start_failed:
843   {
844     GST_ERROR_OBJECT (pool, "failed to start streaming");
845     return FALSE;
846   }
847 other_pool_failed:
848   {
849     GST_ERROR_OBJECT (pool, "failed to active the other pool %"
850         GST_PTR_FORMAT, pool->other_pool);
851     return FALSE;
852   }
853 }
854
855 static gboolean
856 gst_v4l2_buffer_pool_stop (GstBufferPool * bpool)
857 {
858   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
859   GstBufferPoolClass *pclass = GST_BUFFER_POOL_CLASS (parent_class);
860   gboolean ret;
861   gint i;
862
863   GST_DEBUG_OBJECT (pool, "stopping pool");
864
865   if (pool->group_released_handler > 0) {
866     g_signal_handler_disconnect (pool->vallocator,
867         pool->group_released_handler);
868     pool->group_released_handler = 0;
869   }
870
871   if (pool->other_pool) {
872     gst_buffer_pool_set_active (pool->other_pool, FALSE);
873     gst_object_unref (pool->other_pool);
874     pool->other_pool = NULL;
875   }
876
877   gst_v4l2_buffer_pool_streamoff (pool);
878
879   for (i = 0; i < VIDEO_MAX_FRAME; i++) {
880     if (pool->buffers[i]) {
881       GstBuffer *buffer = pool->buffers[i];
882
883       pool->buffers[i] = NULL;
884
885       if (V4L2_TYPE_IS_OUTPUT (pool->obj->type))
886         gst_v4l2_buffer_pool_release_buffer (bpool, buffer);
887       else                      /* Don't re-enqueue capture buffer on stop */
888         pclass->release_buffer (bpool, buffer);
889
890       g_atomic_int_add (&pool->num_queued, -1);
891     }
892   }
893
894   ret = GST_BUFFER_POOL_CLASS (parent_class)->stop (bpool);
895
896   if (ret && pool->vallocator) {
897     GstV4l2Return vret;
898
899     vret = gst_v4l2_allocator_stop (pool->vallocator);
900
901     if (vret == GST_V4L2_BUSY)
902       GST_WARNING_OBJECT (pool, "some buffers are still outstanding");
903
904     ret = (vret == GST_V4L2_OK);
905   }
906
907   return ret;
908 }
909
910 static void
911 gst_v4l2_buffer_pool_flush_start (GstBufferPool * bpool)
912 {
913   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
914
915   GST_DEBUG_OBJECT (pool, "start flushing");
916
917   gst_poll_set_flushing (pool->poll, TRUE);
918
919   GST_OBJECT_LOCK (pool);
920   pool->empty = FALSE;
921   g_cond_broadcast (&pool->empty_cond);
922   GST_OBJECT_UNLOCK (pool);
923
924   if (pool->other_pool)
925     gst_buffer_pool_set_flushing (pool->other_pool, TRUE);
926 }
927
928 static void
929 gst_v4l2_buffer_pool_flush_stop (GstBufferPool * bpool)
930 {
931   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
932   GstV4l2Object *obj = pool->obj;
933   gint i;
934
935   GST_DEBUG_OBJECT (pool, "stop flushing");
936
937   /* If we haven't started streaming yet, simply call streamon */
938   if (!pool->streaming)
939     goto streamon;
940
941   if (pool->other_pool)
942     gst_buffer_pool_set_flushing (pool->other_pool, FALSE);
943
944   gst_v4l2_buffer_pool_streamoff (pool);
945
946   /* Reset our state */
947   switch (obj->mode) {
948     case GST_V4L2_IO_RW:
949       break;
950     case GST_V4L2_IO_MMAP:
951     case GST_V4L2_IO_USERPTR:
952     case GST_V4L2_IO_DMABUF:
953     case GST_V4L2_IO_DMABUF_IMPORT:
954     {
955       for (i = 0; i < VIDEO_MAX_FRAME; i++) {
956         /* Re-enqueue buffers */
957         if (pool->buffers[i]) {
958           GstBufferPool *bpool = (GstBufferPool *) pool;
959           GstBuffer *buffer = pool->buffers[i];
960
961           pool->buffers[i] = NULL;
962
963           /* Remove qdata, this will unmap any map data in
964            * userptr/dmabuf-import */
965           gst_mini_object_set_qdata (GST_MINI_OBJECT (buffer),
966               GST_V4L2_IMPORT_QUARK, NULL, NULL);
967
968           if (buffer->pool == NULL)
969             gst_v4l2_buffer_pool_release_buffer (bpool, buffer);
970
971           g_atomic_int_add (&pool->num_queued, -1);
972         }
973       }
974
975       break;
976     }
977     default:
978       g_assert_not_reached ();
979       break;
980   }
981
982 streamon:
983   /* Start streaming on capture device only */
984   if (!V4L2_TYPE_IS_OUTPUT (obj->type))
985     gst_v4l2_buffer_pool_streamon (pool);
986
987   gst_poll_set_flushing (pool->poll, FALSE);
988 }
989
990 static GstFlowReturn
991 gst_v4l2_buffer_pool_poll (GstV4l2BufferPool * pool)
992 {
993   gint ret;
994
995   /* In RW mode there is no queue, hence no need to wait while the queue is
996    * empty */
997   if (pool->obj->mode != GST_V4L2_IO_RW) {
998     GST_OBJECT_LOCK (pool);
999     while (pool->empty)
1000       g_cond_wait (&pool->empty_cond, GST_OBJECT_GET_LOCK (pool));
1001     GST_OBJECT_UNLOCK (pool);
1002   }
1003
1004   if (!pool->can_poll_device)
1005     goto done;
1006
1007   GST_LOG_OBJECT (pool, "polling device");
1008
1009 again:
1010   ret = gst_poll_wait (pool->poll, GST_CLOCK_TIME_NONE);
1011   if (G_UNLIKELY (ret < 0)) {
1012     switch (errno) {
1013       case EBUSY:
1014         goto stopped;
1015       case EAGAIN:
1016       case EINTR:
1017         goto again;
1018       case ENXIO:
1019         GST_WARNING_OBJECT (pool,
1020             "v4l2 device doesn't support polling. Disabling"
1021             " using libv4l2 in this case may cause deadlocks");
1022         pool->can_poll_device = FALSE;
1023         goto done;
1024       default:
1025         goto select_error;
1026     }
1027   }
1028
1029   if (gst_poll_fd_has_error (pool->poll, &pool->pollfd))
1030     goto select_error;
1031
1032 done:
1033   return GST_FLOW_OK;
1034
1035   /* ERRORS */
1036 stopped:
1037   {
1038     GST_DEBUG_OBJECT (pool, "stop called");
1039     return GST_FLOW_FLUSHING;
1040   }
1041 select_error:
1042   {
1043     GST_ELEMENT_ERROR (pool->obj->element, RESOURCE, READ, (NULL),
1044         ("poll error %d: %s (%d)", ret, g_strerror (errno), errno));
1045     return GST_FLOW_ERROR;
1046   }
1047 }
1048
1049 static GstFlowReturn
1050 gst_v4l2_buffer_pool_qbuf (GstV4l2BufferPool * pool, GstBuffer * buf)
1051 {
1052   GstV4l2MemoryGroup *group = NULL;
1053   const GstV4l2Object *obj = pool->obj;
1054   gint index;
1055
1056   if (!gst_v4l2_is_buffer_valid (buf, &group)) {
1057     GST_LOG_OBJECT (pool, "unref copied/invalid buffer %p", buf);
1058     gst_buffer_unref (buf);
1059     return GST_FLOW_OK;
1060   }
1061
1062   index = group->buffer.index;
1063
1064   if (pool->buffers[index] != NULL)
1065     goto already_queued;
1066
1067   GST_LOG_OBJECT (pool, "queuing buffer %i", index);
1068
1069   g_atomic_int_inc (&pool->num_queued);
1070   pool->buffers[index] = buf;
1071
1072   if (V4L2_TYPE_IS_OUTPUT (obj->type)) {
1073     enum v4l2_field field;
1074
1075     /* Except when field is set to alternate, buffer field is the same as
1076      * the one defined in format */
1077     if (V4L2_TYPE_IS_MULTIPLANAR (obj->type))
1078       field = obj->format.fmt.pix_mp.field;
1079     else
1080       field = obj->format.fmt.pix.field;
1081
1082     /* NB: At this moment, we can't have alternate mode because it not handled
1083      * yet */
1084     if (field == V4L2_FIELD_ALTERNATE) {
1085       if (GST_BUFFER_FLAG_IS_SET (buf, GST_VIDEO_FRAME_FLAG_TFF))
1086         field = V4L2_FIELD_TOP;
1087       else
1088         field = V4L2_FIELD_BOTTOM;
1089     }
1090
1091     group->buffer.field = field;
1092   }
1093
1094   if (!gst_v4l2_allocator_qbuf (pool->vallocator, group))
1095     goto queue_failed;
1096
1097   GST_OBJECT_LOCK (pool);
1098   pool->empty = FALSE;
1099   g_cond_signal (&pool->empty_cond);
1100   GST_OBJECT_UNLOCK (pool);
1101
1102   return GST_FLOW_OK;
1103
1104 already_queued:
1105   {
1106     GST_ERROR_OBJECT (pool, "the buffer %i was already queued", index);
1107     return GST_FLOW_ERROR;
1108   }
1109 queue_failed:
1110   {
1111     GST_ERROR_OBJECT (pool, "could not queue a buffer %i", index);
1112     /* Mark broken buffer to the allocator */
1113     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_TAG_MEMORY);
1114     g_atomic_int_add (&pool->num_queued, -1);
1115     pool->buffers[index] = NULL;
1116     return GST_FLOW_ERROR;
1117   }
1118 }
1119
1120 static GstFlowReturn
1121 gst_v4l2_buffer_pool_dqbuf (GstV4l2BufferPool * pool, GstBuffer ** buffer)
1122 {
1123   GstFlowReturn res;
1124   GstBuffer *outbuf;
1125   GstV4l2Object *obj = pool->obj;
1126   GstClockTime timestamp;
1127   GstV4l2MemoryGroup *group;
1128   gint i;
1129
1130   if ((res = gst_v4l2_buffer_pool_poll (pool)) != GST_FLOW_OK)
1131     goto poll_failed;
1132
1133   GST_LOG_OBJECT (pool, "dequeueing a buffer");
1134
1135   group = gst_v4l2_allocator_dqbuf (pool->vallocator);
1136   if (group == NULL)
1137     goto dqbuf_failed;
1138
1139   /* get our GstBuffer with that index from the pool, if the buffer was
1140    * outstanding we have a serious problem.
1141    */
1142   outbuf = pool->buffers[group->buffer.index];
1143   if (outbuf == NULL)
1144     goto no_buffer;
1145
1146   /* mark the buffer outstanding */
1147   pool->buffers[group->buffer.index] = NULL;
1148   if (g_atomic_int_dec_and_test (&pool->num_queued)) {
1149     GST_OBJECT_LOCK (pool);
1150     pool->empty = TRUE;
1151     GST_OBJECT_UNLOCK (pool);
1152   }
1153
1154   timestamp = GST_TIMEVAL_TO_TIME (group->buffer.timestamp);
1155
1156 #ifndef GST_DISABLE_GST_DEBUG
1157   for (i = 0; i < group->n_mem; i++) {
1158     GST_LOG_OBJECT (pool,
1159         "dequeued buffer %p seq:%d (ix=%d), mem %p used %d, plane=%d, flags %08x, ts %"
1160         GST_TIME_FORMAT ", pool-queued=%d, buffer=%p", outbuf,
1161         group->buffer.sequence, group->buffer.index, group->mem[i],
1162         group->planes[i].bytesused, i, group->buffer.flags,
1163         GST_TIME_ARGS (timestamp), pool->num_queued, outbuf);
1164   }
1165 #endif
1166
1167   /* Check for driver bug in reporting feild */
1168   if (group->buffer.field == V4L2_FIELD_ANY) {
1169     /* Only warn once to avoid the spamming */
1170 #ifndef GST_DISABLE_GST_DEBUG
1171     if (!pool->has_warned_on_buggy_field) {
1172       pool->has_warned_on_buggy_field = TRUE;
1173       GST_WARNING_OBJECT (pool,
1174           "Driver should never set v4l2_buffer.field to ANY");
1175     }
1176 #endif
1177
1178     /* Use the value from the format (works for UVC bug) */
1179     group->buffer.field = obj->format.fmt.pix.field;
1180
1181     /* If driver also has buggy S_FMT, assume progressive */
1182     if (group->buffer.field == V4L2_FIELD_ANY) {
1183 #ifndef GST_DISABLE_GST_DEBUG
1184       if (!pool->has_warned_on_buggy_field) {
1185         pool->has_warned_on_buggy_field = TRUE;
1186         GST_WARNING_OBJECT (pool,
1187             "Driver should never set v4l2_format.pix.field to ANY");
1188       }
1189 #endif
1190
1191       group->buffer.field = V4L2_FIELD_NONE;
1192     }
1193   }
1194
1195   /* set top/bottom field first if v4l2_buffer has the information */
1196   switch (group->buffer.field) {
1197     case V4L2_FIELD_NONE:
1198       GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_INTERLACED);
1199       GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1200       break;
1201     case V4L2_FIELD_INTERLACED_TB:
1202       GST_BUFFER_FLAG_SET (outbuf, GST_VIDEO_BUFFER_FLAG_INTERLACED);
1203       GST_BUFFER_FLAG_SET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1204       break;
1205     case V4L2_FIELD_INTERLACED_BT:
1206       GST_BUFFER_FLAG_SET (outbuf, GST_VIDEO_BUFFER_FLAG_INTERLACED);
1207       GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1208       break;
1209     case V4L2_FIELD_INTERLACED:
1210       GST_BUFFER_FLAG_SET (outbuf, GST_VIDEO_BUFFER_FLAG_INTERLACED);
1211       if (obj->tv_norm == V4L2_STD_NTSC_M ||
1212           obj->tv_norm == V4L2_STD_NTSC_M_JP ||
1213           obj->tv_norm == V4L2_STD_NTSC_M_KR) {
1214         GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1215       } else {
1216         GST_BUFFER_FLAG_SET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1217       }
1218       break;
1219     default:
1220       GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_INTERLACED);
1221       GST_BUFFER_FLAG_UNSET (outbuf, GST_VIDEO_BUFFER_FLAG_TFF);
1222       GST_FIXME_OBJECT (pool,
1223           "Unhandled enum v4l2_field %d - treating as progressive",
1224           group->buffer.field);
1225       break;
1226   }
1227
1228   if (GST_VIDEO_INFO_FORMAT (&obj->info) == GST_VIDEO_FORMAT_ENCODED) {
1229     if (group->buffer.flags & V4L2_BUF_FLAG_KEYFRAME)
1230       GST_BUFFER_FLAG_UNSET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT);
1231     else
1232       GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT);
1233   }
1234
1235   if (group->buffer.flags & V4L2_BUF_FLAG_ERROR)
1236     GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_CORRUPTED);
1237
1238   GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
1239
1240   *buffer = outbuf;
1241
1242   return GST_FLOW_OK;
1243
1244   /* ERRORS */
1245 poll_failed:
1246   {
1247     GST_DEBUG_OBJECT (pool, "poll error %s", gst_flow_get_name (res));
1248     return res;
1249   }
1250 dqbuf_failed:
1251   {
1252     return GST_FLOW_ERROR;
1253   }
1254 no_buffer:
1255   {
1256     GST_ERROR_OBJECT (pool, "No free buffer found in the pool at index %d.",
1257         group->buffer.index);
1258     return GST_FLOW_ERROR;
1259   }
1260 }
1261
1262 static GstFlowReturn
1263 gst_v4l2_buffer_pool_acquire_buffer (GstBufferPool * bpool, GstBuffer ** buffer,
1264     GstBufferPoolAcquireParams * params)
1265 {
1266   GstFlowReturn ret;
1267   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
1268   GstBufferPoolClass *pclass = GST_BUFFER_POOL_CLASS (parent_class);
1269   GstV4l2Object *obj = pool->obj;
1270
1271   GST_DEBUG_OBJECT (pool, "acquire");
1272
1273   /* If this is being called to resurect a lost buffer */
1274   if (params && params->flags & GST_V4L2_BUFFER_POOL_ACQUIRE_FLAG_RESURRECT) {
1275     ret = pclass->acquire_buffer (bpool, buffer, params);
1276     goto done;
1277   }
1278
1279   switch (obj->type) {
1280     case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1281     case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
1282       /* capture, This function should return a buffer with new captured data */
1283       switch (obj->mode) {
1284         case GST_V4L2_IO_RW:
1285         {
1286           /* take empty buffer from the pool */
1287           ret = pclass->acquire_buffer (bpool, buffer, params);
1288           break;
1289         }
1290         case GST_V4L2_IO_DMABUF:
1291         case GST_V4L2_IO_MMAP:
1292         case GST_V4L2_IO_USERPTR:
1293         case GST_V4L2_IO_DMABUF_IMPORT:
1294         {
1295           /* just dequeue a buffer, we basically use the queue of v4l2 as the
1296            * storage for our buffers. This function does poll first so we can
1297            * interrupt it fine. */
1298           ret = gst_v4l2_buffer_pool_dqbuf (pool, buffer);
1299           break;
1300         }
1301         default:
1302           ret = GST_FLOW_ERROR;
1303           g_assert_not_reached ();
1304           break;
1305       }
1306       break;
1307
1308
1309     case V4L2_BUF_TYPE_VIDEO_OUTPUT:
1310     case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
1311       /* playback, This function should return an empty buffer */
1312       switch (obj->mode) {
1313         case GST_V4L2_IO_RW:
1314           /* get an empty buffer */
1315           ret = pclass->acquire_buffer (bpool, buffer, params);
1316           break;
1317
1318         case GST_V4L2_IO_MMAP:
1319         case GST_V4L2_IO_DMABUF:
1320         case GST_V4L2_IO_USERPTR:
1321         case GST_V4L2_IO_DMABUF_IMPORT:
1322           /* get a free unqueued buffer */
1323           ret = pclass->acquire_buffer (bpool, buffer, params);
1324           break;
1325
1326         default:
1327           ret = GST_FLOW_ERROR;
1328           g_assert_not_reached ();
1329           break;
1330       }
1331       break;
1332
1333     default:
1334       ret = GST_FLOW_ERROR;
1335       g_assert_not_reached ();
1336       break;
1337   }
1338 done:
1339   return ret;
1340 }
1341
1342 static void
1343 gst_v4l2_buffer_pool_release_buffer (GstBufferPool * bpool, GstBuffer * buffer)
1344 {
1345   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (bpool);
1346   GstBufferPoolClass *pclass = GST_BUFFER_POOL_CLASS (parent_class);
1347   GstV4l2Object *obj = pool->obj;
1348
1349   GST_DEBUG_OBJECT (pool, "release buffer %p", buffer);
1350
1351   switch (obj->type) {
1352     case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1353     case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
1354       /* capture, put the buffer back in the queue so that we can refill it
1355        * later. */
1356       switch (obj->mode) {
1357         case GST_V4L2_IO_RW:
1358           /* release back in the pool */
1359           pclass->release_buffer (bpool, buffer);
1360           break;
1361
1362         case GST_V4L2_IO_DMABUF:
1363         case GST_V4L2_IO_MMAP:
1364         case GST_V4L2_IO_USERPTR:
1365         case GST_V4L2_IO_DMABUF_IMPORT:
1366         {
1367           if (gst_v4l2_is_buffer_valid (buffer, NULL)) {
1368             /* queue back in the device */
1369             if (pool->other_pool)
1370               gst_v4l2_buffer_pool_prepare_buffer (pool, buffer, NULL);
1371             if (gst_v4l2_buffer_pool_qbuf (pool, buffer) != GST_FLOW_OK)
1372               pclass->release_buffer (bpool, buffer);
1373           } else {
1374             /* Simply release invalide/modified buffer, the allocator will
1375              * give it back later */
1376             GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
1377             pclass->release_buffer (bpool, buffer);
1378           }
1379           break;
1380         }
1381         default:
1382           g_assert_not_reached ();
1383           break;
1384       }
1385       break;
1386
1387     case V4L2_BUF_TYPE_VIDEO_OUTPUT:
1388     case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
1389       switch (obj->mode) {
1390         case GST_V4L2_IO_RW:
1391           /* release back in the pool */
1392           pclass->release_buffer (bpool, buffer);
1393           break;
1394
1395         case GST_V4L2_IO_MMAP:
1396         case GST_V4L2_IO_DMABUF:
1397         case GST_V4L2_IO_USERPTR:
1398         case GST_V4L2_IO_DMABUF_IMPORT:
1399         {
1400           GstV4l2MemoryGroup *group;
1401           guint index;
1402
1403           if (!gst_v4l2_is_buffer_valid (buffer, &group)) {
1404             /* Simply release invalide/modified buffer, the allocator will
1405              * give it back later */
1406             GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
1407             pclass->release_buffer (bpool, buffer);
1408             break;
1409           }
1410
1411           index = group->buffer.index;
1412
1413           if (pool->buffers[index] == NULL) {
1414             GST_LOG_OBJECT (pool, "buffer %u not queued, putting on free list",
1415                 index);
1416
1417             /* Remove qdata, this will unmap any map data in userptr */
1418             gst_mini_object_set_qdata (GST_MINI_OBJECT (buffer),
1419                 GST_V4L2_IMPORT_QUARK, NULL, NULL);
1420
1421             /* reset to default size */
1422             gst_v4l2_allocator_reset_group (pool->vallocator, group);
1423
1424             /* playback, put the buffer back in the queue to refill later. */
1425             pclass->release_buffer (bpool, buffer);
1426           } else {
1427             /* the buffer is queued in the device but maybe not played yet. We just
1428              * leave it there and not make it available for future calls to acquire
1429              * for now. The buffer will be dequeued and reused later. */
1430             GST_LOG_OBJECT (pool, "buffer %u is queued", index);
1431           }
1432           break;
1433         }
1434
1435         default:
1436           g_assert_not_reached ();
1437           break;
1438       }
1439       break;
1440
1441     default:
1442       g_assert_not_reached ();
1443       break;
1444   }
1445 }
1446
1447 static void
1448 gst_v4l2_buffer_pool_dispose (GObject * object)
1449 {
1450   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (object);
1451
1452   if (pool->vallocator)
1453     gst_object_unref (pool->vallocator);
1454   pool->vallocator = NULL;
1455
1456   if (pool->allocator)
1457     gst_object_unref (pool->allocator);
1458   pool->allocator = NULL;
1459
1460   if (pool->other_pool)
1461     gst_object_unref (pool->other_pool);
1462   pool->other_pool = NULL;
1463
1464   G_OBJECT_CLASS (parent_class)->dispose (object);
1465 }
1466
1467 static void
1468 gst_v4l2_buffer_pool_finalize (GObject * object)
1469 {
1470   GstV4l2BufferPool *pool = GST_V4L2_BUFFER_POOL (object);
1471
1472   if (pool->video_fd >= 0)
1473     v4l2_close (pool->video_fd);
1474
1475   gst_poll_free (pool->poll);
1476
1477   /* FIXME Is this required to keep around ?
1478    * This can't be done in dispose method because we must not set pointer
1479    * to NULL as it is part of the v4l2object and dispose could be called
1480    * multiple times */
1481   gst_object_unref (pool->obj->element);
1482
1483   g_cond_clear (&pool->empty_cond);
1484
1485   /* FIXME have we done enough here ? */
1486
1487   G_OBJECT_CLASS (parent_class)->finalize (object);
1488 }
1489
1490 static void
1491 gst_v4l2_buffer_pool_init (GstV4l2BufferPool * pool)
1492 {
1493   pool->poll = gst_poll_new (TRUE);
1494   pool->can_poll_device = TRUE;
1495   g_cond_init (&pool->empty_cond);
1496   pool->empty = TRUE;
1497 }
1498
1499 static void
1500 gst_v4l2_buffer_pool_class_init (GstV4l2BufferPoolClass * klass)
1501 {
1502   GObjectClass *object_class = G_OBJECT_CLASS (klass);
1503   GstBufferPoolClass *bufferpool_class = GST_BUFFER_POOL_CLASS (klass);
1504
1505   object_class->dispose = gst_v4l2_buffer_pool_dispose;
1506   object_class->finalize = gst_v4l2_buffer_pool_finalize;
1507
1508   bufferpool_class->start = gst_v4l2_buffer_pool_start;
1509   bufferpool_class->stop = gst_v4l2_buffer_pool_stop;
1510   bufferpool_class->set_config = gst_v4l2_buffer_pool_set_config;
1511   bufferpool_class->alloc_buffer = gst_v4l2_buffer_pool_alloc_buffer;
1512   bufferpool_class->acquire_buffer = gst_v4l2_buffer_pool_acquire_buffer;
1513   bufferpool_class->release_buffer = gst_v4l2_buffer_pool_release_buffer;
1514   bufferpool_class->flush_start = gst_v4l2_buffer_pool_flush_start;
1515   bufferpool_class->flush_stop = gst_v4l2_buffer_pool_flush_stop;
1516
1517   GST_DEBUG_CATEGORY_INIT (v4l2bufferpool_debug, "v4l2bufferpool", 0,
1518       "V4L2 Buffer Pool");
1519 }
1520
1521 /**
1522  * gst_v4l2_buffer_pool_new:
1523  * @obj:  the v4l2 object owning the pool
1524  *
1525  * Construct a new buffer pool.
1526  *
1527  * Returns: the new pool, use gst_object_unref() to free resources
1528  */
1529 GstBufferPool *
1530 gst_v4l2_buffer_pool_new (GstV4l2Object * obj, GstCaps * caps)
1531 {
1532   GstV4l2BufferPool *pool;
1533   GstStructure *config;
1534   gchar *name, *parent_name;
1535   gint fd;
1536
1537   fd = v4l2_dup (obj->video_fd);
1538   if (fd < 0)
1539     goto dup_failed;
1540
1541   /* setting a significant unique name */
1542   parent_name = gst_object_get_name (GST_OBJECT (obj->element));
1543   name = g_strconcat (parent_name, ":", "pool:",
1544       V4L2_TYPE_IS_OUTPUT (obj->type) ? "sink" : "src", NULL);
1545   g_free (parent_name);
1546
1547   pool = (GstV4l2BufferPool *) g_object_new (GST_TYPE_V4L2_BUFFER_POOL,
1548       "name", name, NULL);
1549   g_free (name);
1550
1551   gst_poll_fd_init (&pool->pollfd);
1552   pool->pollfd.fd = fd;
1553   gst_poll_add_fd (pool->poll, &pool->pollfd);
1554   if (V4L2_TYPE_IS_OUTPUT (obj->type))
1555     gst_poll_fd_ctl_write (pool->poll, &pool->pollfd, TRUE);
1556   else
1557     gst_poll_fd_ctl_read (pool->poll, &pool->pollfd, TRUE);
1558
1559   pool->video_fd = fd;
1560   pool->obj = obj;
1561   pool->can_poll_device = TRUE;
1562
1563   pool->vallocator =
1564       gst_v4l2_allocator_new (GST_OBJECT (pool), obj->video_fd, &obj->format);
1565   if (pool->vallocator == NULL)
1566     goto allocator_failed;
1567
1568   gst_object_ref (obj->element);
1569
1570   config = gst_buffer_pool_get_config (GST_BUFFER_POOL_CAST (pool));
1571   gst_buffer_pool_config_set_params (config, caps, obj->info.size, 0, 0);
1572   /* This will simply set a default config, but will not configure the pool
1573    * because min and max are not valid */
1574   gst_buffer_pool_set_config (GST_BUFFER_POOL_CAST (pool), config);
1575
1576   return GST_BUFFER_POOL (pool);
1577
1578   /* ERRORS */
1579 dup_failed:
1580   {
1581     GST_ERROR ("failed to dup fd %d (%s)", errno, g_strerror (errno));
1582     return NULL;
1583   }
1584 allocator_failed:
1585   {
1586     GST_ERROR_OBJECT (pool, "Failed to create V4L2 allocator");
1587     gst_object_unref (pool);
1588     return NULL;
1589   }
1590 }
1591
1592 static GstFlowReturn
1593 gst_v4l2_do_read (GstV4l2BufferPool * pool, GstBuffer * buf)
1594 {
1595   GstFlowReturn res;
1596   GstV4l2Object *obj = pool->obj;
1597   gint amount;
1598   GstMapInfo map;
1599   gint toread;
1600
1601   toread = obj->info.size;
1602
1603   GST_LOG_OBJECT (pool, "reading %d bytes into buffer %p", toread, buf);
1604
1605   gst_buffer_map (buf, &map, GST_MAP_WRITE);
1606
1607   do {
1608     if ((res = gst_v4l2_buffer_pool_poll (pool)) != GST_FLOW_OK)
1609       goto poll_error;
1610
1611     amount = v4l2_read (obj->video_fd, map.data, toread);
1612
1613     if (amount == toread) {
1614       break;
1615     } else if (amount == -1) {
1616       if (errno == EAGAIN || errno == EINTR) {
1617         continue;
1618       } else
1619         goto read_error;
1620     } else {
1621       /* short reads can happen if a signal interrupts the read */
1622       continue;
1623     }
1624   } while (TRUE);
1625
1626   GST_LOG_OBJECT (pool, "read %d bytes", amount);
1627   gst_buffer_unmap (buf, &map);
1628   gst_buffer_resize (buf, 0, amount);
1629
1630   return GST_FLOW_OK;
1631
1632   /* ERRORS */
1633 poll_error:
1634   {
1635     GST_DEBUG ("poll error %s", gst_flow_get_name (res));
1636     goto cleanup;
1637   }
1638 read_error:
1639   {
1640     GST_ELEMENT_ERROR (obj->element, RESOURCE, READ,
1641         (_("Error reading %d bytes from device '%s'."),
1642             toread, obj->videodev), GST_ERROR_SYSTEM);
1643     res = GST_FLOW_ERROR;
1644     goto cleanup;
1645   }
1646 cleanup:
1647   {
1648     gst_buffer_unmap (buf, &map);
1649     gst_buffer_resize (buf, 0, 0);
1650     return res;
1651   }
1652 }
1653
1654 /**
1655  * gst_v4l2_buffer_pool_process:
1656  * @bpool: a #GstBufferPool
1657  * @buf: a #GstBuffer, maybe be replaced
1658  *
1659  * Process @buf in @bpool. For capture devices, this functions fills @buf with
1660  * data from the device. For output devices, this functions send the contents of
1661  * @buf to the device for playback.
1662  *
1663  * Returns: %GST_FLOW_OK on success.
1664  */
1665 GstFlowReturn
1666 gst_v4l2_buffer_pool_process (GstV4l2BufferPool * pool, GstBuffer ** buf)
1667 {
1668   GstFlowReturn ret = GST_FLOW_OK;
1669   GstBufferPool *bpool = GST_BUFFER_POOL_CAST (pool);
1670   GstV4l2Object *obj = pool->obj;
1671
1672   GST_DEBUG_OBJECT (pool, "process buffer %p", buf);
1673
1674   g_return_val_if_fail (gst_buffer_pool_is_active (bpool), GST_FLOW_ERROR);
1675
1676   if (GST_BUFFER_POOL_IS_FLUSHING (pool))
1677     return GST_FLOW_FLUSHING;
1678
1679   switch (obj->type) {
1680     case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1681     case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
1682       /* capture */
1683       switch (obj->mode) {
1684         case GST_V4L2_IO_RW:
1685           /* capture into the buffer */
1686           ret = gst_v4l2_do_read (pool, *buf);
1687           break;
1688
1689         case GST_V4L2_IO_MMAP:
1690         case GST_V4L2_IO_DMABUF:
1691         {
1692           GstBuffer *tmp;
1693
1694           if ((*buf)->pool == bpool) {
1695             guint num_queued;
1696
1697             if (gst_buffer_get_size (*buf) == 0) {
1698               if (GST_BUFFER_FLAG_IS_SET (*buf, GST_BUFFER_FLAG_CORRUPTED))
1699                 goto buffer_corrupted;
1700               else
1701                 goto eos;
1702             }
1703
1704             num_queued = g_atomic_int_get (&pool->num_queued);
1705             GST_TRACE_OBJECT (pool, "Only %i buffer left in the capture queue.",
1706                 num_queued);
1707
1708             /* If we have no more buffer, and can allocate it time to do so */
1709             if (num_queued == 0) {
1710               if (GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, MMAP)) {
1711                 ret = gst_v4l2_buffer_pool_resurect_buffer (pool);
1712                 if (ret == GST_FLOW_OK)
1713                   goto done;
1714               }
1715             }
1716
1717             /* start copying buffers when we are running low on buffers */
1718             if (num_queued < pool->copy_threshold) {
1719               GstBuffer *copy;
1720
1721               if (GST_V4L2_ALLOCATOR_CAN_ALLOCATE (pool->vallocator, MMAP)) {
1722                 ret = gst_v4l2_buffer_pool_resurect_buffer (pool);
1723                 if (ret == GST_FLOW_OK)
1724                   goto done;
1725               }
1726
1727               /* copy the buffer */
1728               copy = gst_buffer_copy_region (*buf,
1729                   GST_BUFFER_COPY_ALL | GST_BUFFER_COPY_DEEP, 0, -1);
1730               GST_LOG_OBJECT (pool, "copy buffer %p->%p", *buf, copy);
1731
1732               /* and requeue so that we can continue capturing */
1733               gst_buffer_unref (*buf);
1734               *buf = copy;
1735             }
1736
1737             /* nothing, data was inside the buffer when we did _acquire() */
1738             goto done;
1739           }
1740
1741           /* buffer not from our pool, grab a frame and copy it into the target */
1742           if ((ret = gst_v4l2_buffer_pool_dqbuf (pool, &tmp)) != GST_FLOW_OK)
1743             goto done;
1744
1745           /* An empty buffer on capture indicates the end of stream */
1746           if (gst_buffer_get_size (tmp) == 0) {
1747             gboolean corrupted = GST_BUFFER_FLAG_IS_SET (tmp,
1748                 GST_BUFFER_FLAG_CORRUPTED);
1749
1750             gst_v4l2_buffer_pool_release_buffer (bpool, tmp);
1751
1752             if (corrupted)
1753               goto buffer_corrupted;
1754             else
1755               goto eos;
1756           }
1757
1758           ret = gst_v4l2_buffer_pool_copy_buffer (pool, *buf, tmp);
1759
1760           /* an queue the buffer again after the copy */
1761           gst_v4l2_buffer_pool_release_buffer (bpool, tmp);
1762
1763           if (ret != GST_FLOW_OK)
1764             goto copy_failed;
1765           break;
1766         }
1767
1768         case GST_V4L2_IO_USERPTR:
1769         {
1770           struct UserPtrData *data;
1771
1772           /* Replace our buffer with downstream allocated buffer */
1773           data = gst_mini_object_steal_qdata (GST_MINI_OBJECT (*buf),
1774               GST_V4L2_IMPORT_QUARK);
1775           gst_buffer_replace (buf, data->buffer);
1776           _unmap_userptr_frame (data);
1777           break;
1778         }
1779
1780         case GST_V4L2_IO_DMABUF_IMPORT:
1781         {
1782           GstBuffer *tmp;
1783
1784           /* Replace our buffer with downstream allocated buffer */
1785           tmp = gst_mini_object_steal_qdata (GST_MINI_OBJECT (*buf),
1786               GST_V4L2_IMPORT_QUARK);
1787           gst_buffer_replace (buf, tmp);
1788           gst_buffer_unref (tmp);
1789           break;
1790         }
1791
1792         default:
1793           g_assert_not_reached ();
1794           break;
1795       }
1796       break;
1797
1798     case V4L2_BUF_TYPE_VIDEO_OUTPUT:
1799     case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
1800       /* playback */
1801       switch (obj->mode) {
1802         case GST_V4L2_IO_RW:
1803           /* FIXME, do write() */
1804           GST_WARNING_OBJECT (pool, "implement write()");
1805           break;
1806
1807         case GST_V4L2_IO_USERPTR:
1808         case GST_V4L2_IO_DMABUF_IMPORT:
1809         case GST_V4L2_IO_DMABUF:
1810         case GST_V4L2_IO_MMAP:
1811         {
1812           GstBuffer *to_queue = NULL;
1813           GstV4l2MemoryGroup *group;
1814           gint index;
1815
1816           if ((*buf)->pool != bpool)
1817             goto copying;
1818
1819           if (!gst_v4l2_is_buffer_valid (*buf, &group))
1820             goto copying;
1821
1822           index = group->buffer.index;
1823
1824           GST_LOG_OBJECT (pool, "processing buffer %i from our pool", index);
1825
1826           index = group->buffer.index;
1827           if (pool->buffers[index] != NULL) {
1828             GST_LOG_OBJECT (pool, "buffer %i already queued, copying", index);
1829             goto copying;
1830           }
1831
1832           /* we can queue directly */
1833           to_queue = gst_buffer_ref (*buf);
1834
1835         copying:
1836           if (to_queue == NULL) {
1837             GstBufferPoolAcquireParams params = { 0 };
1838
1839             GST_LOG_OBJECT (pool, "alloc buffer from our pool");
1840
1841             /* this can return EOS if all buffers are outstanding which would
1842              * be strange because we would expect the upstream element to have
1843              * allocated them and returned to us.. */
1844             params.flags = GST_BUFFER_POOL_ACQUIRE_FLAG_DONTWAIT;
1845             ret = gst_buffer_pool_acquire_buffer (bpool, &to_queue, &params);
1846             if (ret != GST_FLOW_OK)
1847               goto acquire_failed;
1848
1849             ret = gst_v4l2_buffer_pool_prepare_buffer (pool, to_queue, *buf);
1850             if (ret != GST_FLOW_OK) {
1851               gst_buffer_unref (to_queue);
1852               goto prepare_failed;
1853             }
1854           }
1855
1856           if ((ret = gst_v4l2_buffer_pool_qbuf (pool, to_queue)) != GST_FLOW_OK)
1857             goto queue_failed;
1858
1859           /* if we are not streaming yet (this is the first buffer, start
1860            * streaming now */
1861           if (!gst_v4l2_buffer_pool_streamon (pool)) {
1862             /* don't check return value because qbuf would have failed */
1863             gst_v4l2_is_buffer_valid (to_queue, &group);
1864
1865             /* qbuf has stored to_queue buffer but we are not in
1866              * streaming state, so the flush logic won't be performed.
1867              * To avoid leaks, flush the allocator and restore the queued
1868              * buffer as non-queued */
1869             gst_v4l2_allocator_flush (pool->vallocator);
1870
1871             pool->buffers[group->buffer.index] = NULL;
1872
1873             gst_mini_object_set_qdata (GST_MINI_OBJECT (to_queue),
1874                 GST_V4L2_IMPORT_QUARK, NULL, NULL);
1875             gst_buffer_unref (to_queue);
1876             g_atomic_int_add (&pool->num_queued, -1);
1877             goto start_failed;
1878           }
1879
1880           /* Remove our ref, we will still hold this buffer in acquire as needed,
1881            * otherwise the pool will think it is outstanding and will refuse to stop. */
1882           gst_buffer_unref (to_queue);
1883
1884           if (g_atomic_int_get (&pool->num_queued) >= pool->min_latency) {
1885             GstBuffer *out;
1886             /* all buffers are queued, try to dequeue one and release it back
1887              * into the pool so that _acquire can get to it again. */
1888             ret = gst_v4l2_buffer_pool_dqbuf (pool, &out);
1889             if (ret == GST_FLOW_OK && out->pool == NULL)
1890               /* release the rendered buffer back into the pool. This wakes up any
1891                * thread waiting for a buffer in _acquire(). */
1892               gst_v4l2_buffer_pool_release_buffer (bpool, out);
1893           }
1894           break;
1895         }
1896         default:
1897           g_assert_not_reached ();
1898           break;
1899       }
1900       break;
1901     default:
1902       g_assert_not_reached ();
1903       break;
1904   }
1905 done:
1906   return ret;
1907
1908   /* ERRORS */
1909 copy_failed:
1910   {
1911     GST_ERROR_OBJECT (pool, "failed to copy buffer");
1912     return ret;
1913   }
1914 buffer_corrupted:
1915   {
1916     GST_WARNING_OBJECT (pool, "Dropping corrupted buffer without payload");
1917     gst_buffer_unref (*buf);
1918     *buf = NULL;
1919     return GST_V4L2_FLOW_CORRUPTED_BUFFER;
1920   }
1921 eos:
1922   {
1923     GST_DEBUG_OBJECT (pool, "end of stream reached");
1924     gst_buffer_unref (*buf);
1925     *buf = NULL;
1926     return GST_V4L2_FLOW_LAST_BUFFER;
1927   }
1928 acquire_failed:
1929   {
1930     if (ret == GST_FLOW_FLUSHING)
1931       GST_DEBUG_OBJECT (pool, "flushing");
1932     else
1933       GST_WARNING_OBJECT (pool, "failed to acquire a buffer: %s",
1934           gst_flow_get_name (ret));
1935     return ret;
1936   }
1937 prepare_failed:
1938   {
1939     GST_ERROR_OBJECT (pool, "failed to prepare data");
1940     return ret;
1941   }
1942 queue_failed:
1943   {
1944     GST_ERROR_OBJECT (pool, "failed to queue buffer");
1945     return ret;
1946   }
1947 start_failed:
1948   {
1949     GST_ERROR_OBJECT (pool, "failed to start streaming");
1950     return GST_FLOW_ERROR;
1951   }
1952 }
1953
1954 void
1955 gst_v4l2_buffer_pool_set_other_pool (GstV4l2BufferPool * pool,
1956     GstBufferPool * other_pool)
1957 {
1958   g_return_if_fail (!gst_buffer_pool_is_active (GST_BUFFER_POOL (pool)));
1959
1960   if (pool->other_pool)
1961     gst_object_unref (pool->other_pool);
1962   pool->other_pool = gst_object_ref (other_pool);
1963 }
1964
1965 void
1966 gst_v4l2_buffer_pool_copy_at_threshold (GstV4l2BufferPool * pool, gboolean copy)
1967 {
1968   GST_OBJECT_LOCK (pool);
1969   pool->enable_copy_threshold = copy;
1970   GST_OBJECT_UNLOCK (pool);
1971 }