v4l2videodec: Send flush buffer event when EOS
[platform/upstream/gst-plugins-good.git] / sys / v4l2 / gstv4l2videodec.c
1 /*
2  * Copyright (C) 2014 Collabora Ltd.
3  *     Author: Nicolas Dufresne <nicolas.dufresne@collabora.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include <sys/stat.h>
27 #include <fcntl.h>
28 #include <errno.h>
29 #include <unistd.h>
30 #include <string.h>
31
32 #include "gstv4l2object.h"
33 #include "gstv4l2videodec.h"
34
35 #include <string.h>
36 #include <gst/gst-i18n-plugin.h>
37
38 GST_DEBUG_CATEGORY_STATIC (gst_v4l2_video_dec_debug);
39 #define GST_CAT_DEFAULT gst_v4l2_video_dec_debug
40
41 typedef struct
42 {
43   gchar *device;
44   GstCaps *sink_caps;
45   GstCaps *src_caps;
46   const gchar *longname;
47   const gchar *description;
48 } GstV4l2VideoDecCData;
49
50 enum
51 {
52   PROP_0,
53   V4L2_STD_OBJECT_PROPS
54 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
55   , PROP_TBM_OUTPUT
56 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
57 };
58
59 #define gst_v4l2_video_dec_parent_class parent_class
60 G_DEFINE_ABSTRACT_TYPE (GstV4l2VideoDec, gst_v4l2_video_dec,
61     GST_TYPE_VIDEO_DECODER);
62
63 static GstFlowReturn gst_v4l2_video_dec_finish (GstVideoDecoder * decoder);
64
65 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
66 static void gst_v4l2_video_dec_flush_buffer_event (GstVideoDecoder * decoder)
67 {
68   gboolean ret = FALSE;
69
70   if (!decoder) {
71     GST_ERROR("no decoder");
72     return;
73   }
74
75   ret = gst_pad_push_event (decoder->srcpad,
76       gst_event_new_custom (GST_EVENT_CUSTOM_DOWNSTREAM | GST_EVENT_TYPE_SERIALIZED,
77           gst_structure_new_empty("tizen/flush-buffer")));
78
79   GST_WARNING_OBJECT(decoder, "event push ret[%d] for flush-buffer", ret);
80 }
81 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
82 static void
83 gst_v4l2_video_dec_set_property (GObject * object,
84     guint prop_id, const GValue * value, GParamSpec * pspec)
85 {
86   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (object);
87
88   switch (prop_id) {
89     case PROP_CAPTURE_IO_MODE:
90       if (!gst_v4l2_object_set_property_helper (self->v4l2capture,
91               prop_id, value, pspec)) {
92         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
93       }
94       break;
95 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
96     case PROP_TBM_OUTPUT:
97       self->v4l2capture->tbm_output = g_value_get_boolean (value);
98       GST_INFO_OBJECT (self, "tbm output [%d]", self->v4l2capture->tbm_output);
99       break;
100 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
101
102
103       /* By default, only set on output */
104     default:
105       if (!gst_v4l2_object_set_property_helper (self->v4l2output,
106               prop_id, value, pspec)) {
107         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
108       }
109       break;
110   }
111 }
112
113 static void
114 gst_v4l2_video_dec_get_property (GObject * object,
115     guint prop_id, GValue * value, GParamSpec * pspec)
116 {
117   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (object);
118
119   switch (prop_id) {
120     case PROP_CAPTURE_IO_MODE:
121       if (!gst_v4l2_object_get_property_helper (self->v4l2capture,
122               prop_id, value, pspec)) {
123         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
124       }
125       break;
126 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
127     case PROP_TBM_OUTPUT:
128       GST_INFO_OBJECT (self, "tbm output [%d]", self->v4l2capture->tbm_output);
129       g_value_set_boolean (value, self->v4l2capture->tbm_output);
130       break;
131 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
132
133       /* By default read from output */
134     default:
135       if (!gst_v4l2_object_get_property_helper (self->v4l2output,
136               prop_id, value, pspec)) {
137         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
138       }
139       break;
140   }
141 }
142
143 static gboolean
144 gst_v4l2_video_dec_open (GstVideoDecoder * decoder)
145 {
146   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
147   GstCaps *codec_caps;
148
149   GST_DEBUG_OBJECT (self, "Opening");
150
151   if (!gst_v4l2_object_open (self->v4l2output))
152     goto failure;
153
154   if (!gst_v4l2_object_open_shared (self->v4l2capture, self->v4l2output))
155     goto failure;
156
157   codec_caps = gst_pad_get_pad_template_caps (decoder->sinkpad);
158   self->probed_sinkcaps = gst_v4l2_object_probe_caps (self->v4l2output,
159       codec_caps);
160   gst_caps_unref (codec_caps);
161
162   if (gst_caps_is_empty (self->probed_sinkcaps))
163     goto no_encoded_format;
164
165   return TRUE;
166
167 no_encoded_format:
168   GST_ELEMENT_ERROR (self, RESOURCE, SETTINGS,
169       (_("Decoder on device %s has no supported input format"),
170           self->v4l2output->videodev), (NULL));
171   goto failure;
172
173 failure:
174   if (GST_V4L2_IS_OPEN (self->v4l2output))
175     gst_v4l2_object_close (self->v4l2output);
176
177   if (GST_V4L2_IS_OPEN (self->v4l2capture))
178     gst_v4l2_object_close (self->v4l2capture);
179
180   gst_caps_replace (&self->probed_srccaps, NULL);
181   gst_caps_replace (&self->probed_sinkcaps, NULL);
182
183   return FALSE;
184 }
185
186 static gboolean
187 gst_v4l2_video_dec_close (GstVideoDecoder * decoder)
188 {
189   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
190
191   GST_DEBUG_OBJECT (self, "Closing");
192
193   gst_v4l2_object_close (self->v4l2output);
194   gst_v4l2_object_close (self->v4l2capture);
195   gst_caps_replace (&self->probed_srccaps, NULL);
196   gst_caps_replace (&self->probed_sinkcaps, NULL);
197
198   return TRUE;
199 }
200
201 static gboolean
202 gst_v4l2_video_dec_start (GstVideoDecoder * decoder)
203 {
204   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
205
206   GST_DEBUG_OBJECT (self, "Starting");
207
208   gst_v4l2_object_unlock (self->v4l2output);
209   g_atomic_int_set (&self->active, TRUE);
210   self->output_flow = GST_FLOW_OK;
211
212   return TRUE;
213 }
214
215 static gboolean
216 gst_v4l2_video_dec_stop (GstVideoDecoder * decoder)
217 {
218   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
219
220   GST_DEBUG_OBJECT (self, "Stopping");
221
222   gst_v4l2_object_unlock (self->v4l2output);
223   gst_v4l2_object_unlock (self->v4l2capture);
224
225   /* Wait for capture thread to stop */
226   gst_pad_stop_task (decoder->srcpad);
227
228   GST_VIDEO_DECODER_STREAM_LOCK (decoder);
229   self->output_flow = GST_FLOW_OK;
230   GST_VIDEO_DECODER_STREAM_UNLOCK (decoder);
231
232   /* Should have been flushed already */
233   g_assert (g_atomic_int_get (&self->active) == FALSE);
234 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
235   gst_v4l2_video_dec_flush_buffer_event (decoder);
236 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
237
238   gst_v4l2_object_stop (self->v4l2output);
239   gst_v4l2_object_stop (self->v4l2capture);
240
241   if (self->input_state) {
242     gst_video_codec_state_unref (self->input_state);
243     self->input_state = NULL;
244   }
245
246   GST_DEBUG_OBJECT (self, "Stopped");
247
248   return TRUE;
249 }
250
251 static gboolean
252 gst_v4l2_video_dec_set_format (GstVideoDecoder * decoder,
253     GstVideoCodecState * state)
254 {
255   GstV4l2Error error = GST_V4L2_ERROR_INIT;
256   gboolean ret = TRUE;
257   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
258
259   GST_DEBUG_OBJECT (self, "Setting format: %" GST_PTR_FORMAT, state->caps);
260
261   if (self->input_state) {
262     if (gst_v4l2_object_caps_equal (self->v4l2output, state->caps)) {
263       GST_DEBUG_OBJECT (self, "Compatible caps");
264       goto done;
265     }
266     gst_video_codec_state_unref (self->input_state);
267     self->input_state = NULL;
268
269     gst_v4l2_video_dec_finish (decoder);
270     gst_v4l2_object_stop (self->v4l2output);
271
272     /* The renegotiation flow don't blend with the base class flow. To properly
273      * stop the capture pool, if the buffers can't be orphaned, we need to
274      * reclaim our buffers, which will happend through the allocation query.
275      * The allocation query is triggered by gst_video_decoder_negotiate() which
276      * requires the output caps to be set, but we can't know this information
277      * as we rely on the decoder, which requires the capture queue to be
278      * stopped.
279      *
280      * To workaround this issue, we simply run an allocation query with the
281      * old negotiated caps in order to drain/reclaim our buffers. That breaks
282      * the complexity and should not have much impact in performance since the
283      * following allocation query will happen on a drained pipeline and won't
284      * block. */
285     if (self->v4l2capture->pool &&
286         !gst_v4l2_buffer_pool_orphan (&self->v4l2capture->pool)) {
287       GstCaps *caps = gst_pad_get_current_caps (decoder->srcpad);
288       if (caps) {
289         GstQuery *query = gst_query_new_allocation (caps, FALSE);
290         gst_pad_peer_query (decoder->srcpad, query);
291         gst_query_unref (query);
292         gst_caps_unref (caps);
293       }
294     }
295
296     gst_v4l2_object_stop (self->v4l2capture);
297     self->output_flow = GST_FLOW_OK;
298   }
299
300   ret = gst_v4l2_object_set_format (self->v4l2output, state->caps, &error);
301
302   gst_caps_replace (&self->probed_srccaps, NULL);
303   self->probed_srccaps = gst_v4l2_object_probe_caps (self->v4l2capture,
304       gst_v4l2_object_get_raw_caps ());
305
306   if (gst_caps_is_empty (self->probed_srccaps))
307     goto no_raw_format;
308
309   if (ret)
310     self->input_state = gst_video_codec_state_ref (state);
311   else
312     gst_v4l2_error (self, &error);
313
314 done:
315   return ret;
316
317 no_raw_format:
318   GST_ELEMENT_ERROR (self, RESOURCE, SETTINGS,
319       (_("Decoder on device %s has no supported output format"),
320           self->v4l2output->videodev), (NULL));
321   return GST_FLOW_ERROR;
322 }
323
324 static gboolean
325 gst_v4l2_video_dec_flush (GstVideoDecoder * decoder)
326 {
327   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
328
329   GST_DEBUG_OBJECT (self, "Flushed");
330
331   /* Ensure the processing thread has stopped for the reverse playback
332    * discount case */
333   if (gst_pad_get_task_state (decoder->srcpad) == GST_TASK_STARTED) {
334     GST_VIDEO_DECODER_STREAM_UNLOCK (decoder);
335
336     gst_v4l2_object_unlock (self->v4l2output);
337     gst_v4l2_object_unlock (self->v4l2capture);
338     gst_pad_stop_task (decoder->srcpad);
339     GST_VIDEO_DECODER_STREAM_LOCK (decoder);
340   }
341
342   self->output_flow = GST_FLOW_OK;
343
344   gst_v4l2_object_unlock_stop (self->v4l2output);
345   gst_v4l2_object_unlock_stop (self->v4l2capture);
346
347   if (self->v4l2output->pool)
348     gst_v4l2_buffer_pool_flush (self->v4l2output->pool);
349
350 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
351   gst_v4l2_video_dec_flush_buffer_event (decoder);
352 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
353   /* gst_v4l2_buffer_pool_flush() calls streamon the capture pool and must be
354    * called after gst_v4l2_object_unlock_stop() stopped flushing the buffer
355    * pool. */
356   if (self->v4l2capture->pool)
357     gst_v4l2_buffer_pool_flush (self->v4l2capture->pool);
358
359   return TRUE;
360 }
361
362 static gboolean
363 gst_v4l2_video_dec_negotiate (GstVideoDecoder * decoder)
364 {
365   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
366
367   /* We don't allow renegotiation without carefull disabling the pool */
368   if (self->v4l2capture->pool &&
369       gst_buffer_pool_is_active (GST_BUFFER_POOL (self->v4l2capture->pool)))
370     return TRUE;
371
372   return GST_VIDEO_DECODER_CLASS (parent_class)->negotiate (decoder);
373 }
374
375 static gboolean
376 gst_v4l2_decoder_cmd (GstV4l2Object * v4l2object, guint cmd, guint flags)
377 {
378   struct v4l2_decoder_cmd dcmd = { 0, };
379
380   GST_DEBUG_OBJECT (v4l2object->element,
381       "sending v4l2 decoder command %u with flags %u", cmd, flags);
382
383   if (!GST_V4L2_IS_OPEN (v4l2object))
384     return FALSE;
385
386   dcmd.cmd = cmd;
387   dcmd.flags = flags;
388   if (v4l2object->ioctl (v4l2object->video_fd, VIDIOC_DECODER_CMD, &dcmd) < 0)
389     goto dcmd_failed;
390
391   return TRUE;
392
393 dcmd_failed:
394   if (errno == ENOTTY) {
395     GST_INFO_OBJECT (v4l2object->element,
396         "Failed to send decoder command %u with flags %u for '%s'. (%s)",
397         cmd, flags, v4l2object->videodev, g_strerror (errno));
398   } else {
399     GST_ERROR_OBJECT (v4l2object->element,
400         "Failed to send decoder command %u with flags %u for '%s'. (%s)",
401         cmd, flags, v4l2object->videodev, g_strerror (errno));
402   }
403   return FALSE;
404 }
405
406 static GstFlowReturn
407 gst_v4l2_video_dec_finish (GstVideoDecoder * decoder)
408 {
409   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
410   GstFlowReturn ret = GST_FLOW_OK;
411   GstBuffer *buffer;
412
413   if (gst_pad_get_task_state (decoder->srcpad) != GST_TASK_STARTED)
414     goto done;
415
416   GST_DEBUG_OBJECT (self, "Finishing decoding");
417
418   GST_VIDEO_DECODER_STREAM_UNLOCK (decoder);
419
420   if (gst_v4l2_decoder_cmd (self->v4l2output, V4L2_DEC_CMD_STOP, 0)) {
421     GstTask *task = decoder->srcpad->task;
422
423     /* If the decoder stop command succeeded, just wait until processing is
424      * finished */
425     GST_DEBUG_OBJECT (self, "Waiting for decoder stop");
426     GST_OBJECT_LOCK (task);
427     while (GST_TASK_STATE (task) == GST_TASK_STARTED)
428       GST_TASK_WAIT (task);
429     GST_OBJECT_UNLOCK (task);
430     ret = GST_FLOW_FLUSHING;
431   } else {
432     /* otherwise keep queuing empty buffers until the processing thread has
433      * stopped, _pool_process() will return FLUSHING when that happened */
434     while (ret == GST_FLOW_OK) {
435       buffer = gst_buffer_new ();
436       ret =
437           gst_v4l2_buffer_pool_process (GST_V4L2_BUFFER_POOL (self->
438               v4l2output->pool), &buffer);
439       gst_buffer_unref (buffer);
440     }
441   }
442
443   /* and ensure the processing thread has stopped in case another error
444    * occured. */
445   gst_v4l2_object_unlock (self->v4l2capture);
446   gst_pad_stop_task (decoder->srcpad);
447   GST_VIDEO_DECODER_STREAM_LOCK (decoder);
448
449   if (ret == GST_FLOW_FLUSHING)
450     ret = self->output_flow;
451
452   GST_DEBUG_OBJECT (decoder, "Done draining buffers");
453
454   /* TODO Shall we cleanup any reffed frame to workaround broken decoders ? */
455
456 done:
457   return ret;
458 }
459
460 static GstFlowReturn
461 gst_v4l2_video_dec_drain (GstVideoDecoder * decoder)
462 {
463   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
464
465   GST_DEBUG_OBJECT (self, "Draining...");
466   gst_v4l2_video_dec_finish (decoder);
467   gst_v4l2_video_dec_flush (decoder);
468
469   return GST_FLOW_OK;
470 }
471
472 static GstVideoCodecFrame *
473 gst_v4l2_video_dec_get_oldest_frame (GstVideoDecoder * decoder)
474 {
475   GstVideoCodecFrame *frame = NULL;
476   GList *frames, *l;
477   gint count = 0;
478
479   frames = gst_video_decoder_get_frames (decoder);
480
481   for (l = frames; l != NULL; l = l->next) {
482     GstVideoCodecFrame *f = l->data;
483
484     if (!frame || frame->pts > f->pts)
485       frame = f;
486
487     count++;
488   }
489
490   if (frame) {
491     GST_LOG_OBJECT (decoder,
492         "Oldest frame is %d %" GST_TIME_FORMAT " and %d frames left",
493         frame->system_frame_number, GST_TIME_ARGS (frame->pts), count - 1);
494     gst_video_codec_frame_ref (frame);
495   }
496
497   g_list_free_full (frames, (GDestroyNotify) gst_video_codec_frame_unref);
498
499   return frame;
500 }
501
502 static void
503 gst_v4l2_video_dec_loop (GstVideoDecoder * decoder)
504 {
505   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
506   GstV4l2BufferPool *v4l2_pool = GST_V4L2_BUFFER_POOL (self->v4l2capture->pool);
507   GstBufferPool *pool;
508   GstVideoCodecFrame *frame;
509   GstBuffer *buffer = NULL;
510   GstFlowReturn ret;
511
512   GST_LOG_OBJECT (decoder, "Allocate output buffer");
513
514   self->output_flow = GST_FLOW_OK;
515   do {
516     /* We cannot use the base class allotate helper since it taking the internal
517      * stream lock. we know that the acquire may need to poll until more frames
518      * comes in and holding this lock would prevent that.
519      */
520     pool = gst_video_decoder_get_buffer_pool (decoder);
521
522     /* Pool may be NULL if we started going to READY state */
523     if (pool == NULL) {
524       ret = GST_FLOW_FLUSHING;
525       goto beach;
526     }
527
528     ret = gst_buffer_pool_acquire_buffer (pool, &buffer, NULL);
529     g_object_unref (pool);
530
531     if (ret != GST_FLOW_OK)
532       goto beach;
533
534     GST_LOG_OBJECT (decoder, "Process output buffer");
535     ret = gst_v4l2_buffer_pool_process (v4l2_pool, &buffer);
536
537   } while (ret == GST_V4L2_FLOW_CORRUPTED_BUFFER);
538
539   if (ret != GST_FLOW_OK)
540     goto beach;
541
542   frame = gst_v4l2_video_dec_get_oldest_frame (decoder);
543
544   if (frame) {
545     frame->output_buffer = buffer;
546     buffer = NULL;
547     ret = gst_video_decoder_finish_frame (decoder, frame);
548
549     if (ret != GST_FLOW_OK)
550       goto beach;
551   } else {
552     GST_WARNING_OBJECT (decoder, "Decoder is producing too many buffers");
553     gst_buffer_unref (buffer);
554   }
555
556   return;
557
558 beach:
559   GST_DEBUG_OBJECT (decoder, "Leaving output thread: %s",
560       gst_flow_get_name (ret));
561 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
562   if (ret == GST_FLOW_EOS)
563     gst_v4l2_video_dec_flush_buffer_event (decoder);
564 #endif
565
566   gst_buffer_replace (&buffer, NULL);
567   self->output_flow = ret;
568   gst_v4l2_object_unlock (self->v4l2output);
569   gst_pad_pause_task (decoder->srcpad);
570 }
571
572 static gboolean
573 gst_v4l2_video_remove_padding (GstCapsFeatures * features,
574     GstStructure * structure, gpointer user_data)
575 {
576   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (user_data);
577   GstVideoAlignment *align = &self->v4l2capture->align;
578   GstVideoInfo *info = &self->v4l2capture->info;
579   int width, height;
580
581   if (!gst_structure_get_int (structure, "width", &width))
582     return TRUE;
583
584   if (!gst_structure_get_int (structure, "height", &height))
585     return TRUE;
586
587   if (align->padding_left != 0 || align->padding_top != 0 ||
588       height != info->height + align->padding_bottom)
589     return TRUE;
590
591   if (height == info->height + align->padding_bottom) {
592     /* Some drivers may round up width to the padded with */
593     if (width == info->width + align->padding_right)
594       gst_structure_set (structure,
595           "width", G_TYPE_INT, width - align->padding_right,
596           "height", G_TYPE_INT, height - align->padding_bottom, NULL);
597     /* Some drivers may keep visible width and only round up bytesperline */
598     else if (width == info->width)
599       gst_structure_set (structure,
600           "height", G_TYPE_INT, height - align->padding_bottom, NULL);
601   }
602
603   return TRUE;
604 }
605
606 static GstFlowReturn
607 gst_v4l2_video_dec_handle_frame (GstVideoDecoder * decoder,
608     GstVideoCodecFrame * frame)
609 {
610   GstV4l2Error error = GST_V4L2_ERROR_INIT;
611   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
612   GstFlowReturn ret = GST_FLOW_OK;
613   gboolean processed = FALSE;
614   GstBuffer *tmp;
615   GstTaskState task_state;
616 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
617   GstStructure *structure = NULL;
618   const gchar *caps_format = NULL;
619   GstMessage *msg = NULL;
620   GstV4l2BufferPool *capture_pool = NULL;
621 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
622
623   GST_DEBUG_OBJECT (self, "Handling frame %d", frame->system_frame_number);
624
625   if (G_UNLIKELY (!g_atomic_int_get (&self->active)))
626     goto flushing;
627
628   if (G_UNLIKELY (!GST_V4L2_IS_ACTIVE (self->v4l2output))) {
629     if (!self->input_state)
630       goto not_negotiated;
631     if (!gst_v4l2_object_set_format (self->v4l2output, self->input_state->caps,
632             &error))
633       goto not_negotiated;
634   }
635
636   if (G_UNLIKELY (!GST_V4L2_IS_ACTIVE (self->v4l2capture))) {
637     GstBufferPool *pool = GST_BUFFER_POOL (self->v4l2output->pool);
638     GstVideoInfo info;
639     GstVideoCodecState *output_state;
640     GstBuffer *codec_data;
641     GstCaps *acquired_caps, *available_caps, *caps, *filter;
642     GstStructure *st;
643
644     GST_DEBUG_OBJECT (self, "Sending header");
645
646     codec_data = self->input_state->codec_data;
647
648     /* We are running in byte-stream mode, so we don't know the headers, but
649      * we need to send something, otherwise the decoder will refuse to
650      * intialize.
651      */
652     if (codec_data) {
653       gst_buffer_ref (codec_data);
654     } else {
655       codec_data = gst_buffer_ref (frame->input_buffer);
656       processed = TRUE;
657     }
658
659     /* Ensure input internal pool is active */
660     if (!gst_buffer_pool_is_active (pool)) {
661       GstStructure *config = gst_buffer_pool_get_config (pool);
662       gst_buffer_pool_config_set_params (config, self->input_state->caps,
663           self->v4l2output->info.size, 2, 2);
664
665       /* There is no reason to refuse this config */
666       if (!gst_buffer_pool_set_config (pool, config))
667         goto activate_failed;
668
669       if (!gst_buffer_pool_set_active (pool, TRUE))
670         goto activate_failed;
671     }
672
673     GST_VIDEO_DECODER_STREAM_UNLOCK (decoder);
674     ret =
675         gst_v4l2_buffer_pool_process (GST_V4L2_BUFFER_POOL (self->
676             v4l2output->pool), &codec_data);
677     GST_VIDEO_DECODER_STREAM_LOCK (decoder);
678
679     gst_buffer_unref (codec_data);
680
681     /* For decoders G_FMT returns coded size, G_SELECTION returns visible size
682      * in the compose rectangle. gst_v4l2_object_acquire_format() checks both
683      * and returns the visible size as with/height and the coded size as
684      * padding. */
685     if (!gst_v4l2_object_acquire_format (self->v4l2capture, &info))
686       goto not_negotiated;
687
688     /* Create caps from the acquired format, remove the format field */
689     acquired_caps = gst_video_info_to_caps (&info);
690     GST_DEBUG_OBJECT (self, "Acquired caps: %" GST_PTR_FORMAT, acquired_caps);
691     st = gst_caps_get_structure (acquired_caps, 0);
692     gst_structure_remove_fields (st, "format", "colorimetry", "chroma-site",
693         NULL);
694
695     /* Probe currently available pixel formats */
696     available_caps = gst_caps_copy (self->probed_srccaps);
697     GST_DEBUG_OBJECT (self, "Available caps: %" GST_PTR_FORMAT, available_caps);
698
699     /* Replace coded size with visible size, we want to negotiate visible size
700      * with downstream, not coded size. */
701     gst_caps_map_in_place (available_caps, gst_v4l2_video_remove_padding, self);
702
703     filter = gst_caps_intersect_full (available_caps, acquired_caps,
704         GST_CAPS_INTERSECT_FIRST);
705     GST_DEBUG_OBJECT (self, "Filtered caps: %" GST_PTR_FORMAT, filter);
706     gst_caps_unref (acquired_caps);
707     gst_caps_unref (available_caps);
708     caps = gst_pad_peer_query_caps (decoder->srcpad, filter);
709     gst_caps_unref (filter);
710
711     GST_DEBUG_OBJECT (self, "Possible decoded caps: %" GST_PTR_FORMAT, caps);
712     if (gst_caps_is_empty (caps)) {
713       gst_caps_unref (caps);
714       goto not_negotiated;
715     }
716
717     /* Fixate pixel format */
718     caps = gst_caps_fixate (caps);
719
720     GST_DEBUG_OBJECT (self, "Chosen decoded caps: %" GST_PTR_FORMAT, caps);
721 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
722     structure = gst_caps_get_structure (caps, 0);
723     caps_format = gst_structure_get_string (structure, "format");
724
725     if (!strcmp (caps_format, "I420")) {
726       GST_INFO_OBJECT (self, "I420 -> S420");
727       gst_caps_set_simple (caps, "format", G_TYPE_STRING, "S420", NULL);
728     } else if (!strcmp (caps_format, "NV12")) {
729       GST_INFO_OBJECT (self, "NV12 -> SN12");
730       gst_caps_set_simple (caps, "format", G_TYPE_STRING, "SN12", NULL);
731     }
732     GST_INFO_OBJECT (self, "Updated decoded caps: %" GST_PTR_FORMAT, caps);
733 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
734
735     /* Try to set negotiated format, on success replace acquired format */
736     if (gst_v4l2_object_set_format (self->v4l2capture, caps, &error))
737       gst_video_info_from_caps (&info, caps);
738     else
739       gst_v4l2_clear_error (&error);
740     gst_caps_unref (caps);
741
742     output_state = gst_video_decoder_set_output_state (decoder,
743         info.finfo->format, info.width, info.height, self->input_state);
744
745     /* Copy the rest of the information, there might be more in the future */
746     output_state->info.interlace_mode = info.interlace_mode;
747     gst_video_codec_state_unref (output_state);
748
749     if (!gst_video_decoder_negotiate (decoder)) {
750       if (GST_PAD_IS_FLUSHING (decoder->srcpad))
751         goto flushing;
752       else
753         goto not_negotiated;
754     }
755
756     /* Ensure our internal pool is activated */
757     if (!gst_buffer_pool_set_active (GST_BUFFER_POOL (self->v4l2capture->pool),
758             TRUE))
759       goto activate_failed;
760 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
761     capture_pool = GST_V4L2_BUFFER_POOL (self->v4l2capture->pool);
762
763     msg = gst_message_new_element (GST_OBJECT_CAST (decoder),
764         gst_structure_new ("prepare-decode-buffers",
765             "num_buffers", G_TYPE_INT, capture_pool->num_allocated,
766             "extra_num_buffers", G_TYPE_INT, capture_pool->num_allocated - 2, NULL));
767
768     gst_element_post_message (GST_ELEMENT_CAST (decoder), msg);
769
770     GST_WARNING_OBJECT (self, "output buffer[%d]", capture_pool->num_allocated);
771 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
772   }
773
774   task_state = gst_pad_get_task_state (GST_VIDEO_DECODER_SRC_PAD (self));
775   if (task_state == GST_TASK_STOPPED || task_state == GST_TASK_PAUSED) {
776     /* It's possible that the processing thread stopped due to an error */
777     if (self->output_flow != GST_FLOW_OK &&
778         self->output_flow != GST_FLOW_FLUSHING) {
779       GST_DEBUG_OBJECT (self, "Processing loop stopped with error, leaving");
780       ret = self->output_flow;
781       goto drop;
782     }
783
784     GST_DEBUG_OBJECT (self, "Starting decoding thread");
785
786     /* Start the processing task, when it quits, the task will disable input
787      * processing to unlock input if draining, or prevent potential block */
788     self->output_flow = GST_FLOW_FLUSHING;
789     if (!gst_pad_start_task (decoder->srcpad,
790             (GstTaskFunction) gst_v4l2_video_dec_loop, self, NULL))
791       goto start_task_failed;
792   }
793
794   if (!processed) {
795     GST_VIDEO_DECODER_STREAM_UNLOCK (decoder);
796     ret =
797         gst_v4l2_buffer_pool_process (GST_V4L2_BUFFER_POOL (self->v4l2output->
798             pool), &frame->input_buffer);
799     GST_VIDEO_DECODER_STREAM_LOCK (decoder);
800
801     if (ret == GST_FLOW_FLUSHING) {
802       if (gst_pad_get_task_state (GST_VIDEO_DECODER_SRC_PAD (self)) !=
803           GST_TASK_STARTED)
804         ret = self->output_flow;
805       goto drop;
806     } else if (ret != GST_FLOW_OK) {
807       goto process_failed;
808     }
809   }
810
811   /* No need to keep input arround */
812   tmp = frame->input_buffer;
813   frame->input_buffer = gst_buffer_new ();
814   gst_buffer_copy_into (frame->input_buffer, tmp,
815       GST_BUFFER_COPY_FLAGS | GST_BUFFER_COPY_TIMESTAMPS |
816       GST_BUFFER_COPY_META, 0, 0);
817   gst_buffer_unref (tmp);
818
819   gst_video_codec_frame_unref (frame);
820   return ret;
821
822   /* ERRORS */
823 not_negotiated:
824   {
825     GST_ERROR_OBJECT (self, "not negotiated");
826     ret = GST_FLOW_NOT_NEGOTIATED;
827     gst_v4l2_error (self, &error);
828     goto drop;
829   }
830 activate_failed:
831   {
832     GST_ELEMENT_ERROR (self, RESOURCE, SETTINGS,
833         (_("Failed to allocate required memory.")),
834         ("Buffer pool activation failed"));
835     ret = GST_FLOW_ERROR;
836     goto drop;
837   }
838 flushing:
839   {
840     ret = GST_FLOW_FLUSHING;
841     goto drop;
842   }
843
844 start_task_failed:
845   {
846     GST_ELEMENT_ERROR (self, RESOURCE, FAILED,
847         (_("Failed to start decoding thread.")), (NULL));
848     ret = GST_FLOW_ERROR;
849     goto drop;
850   }
851 process_failed:
852   {
853     GST_ELEMENT_ERROR (self, RESOURCE, FAILED,
854         (_("Failed to process frame.")),
855         ("Maybe be due to not enough memory or failing driver"));
856     ret = GST_FLOW_ERROR;
857     goto drop;
858   }
859 drop:
860   {
861     gst_video_decoder_drop_frame (decoder, frame);
862     return ret;
863   }
864 }
865
866 static gboolean
867 gst_v4l2_video_dec_decide_allocation (GstVideoDecoder * decoder,
868     GstQuery * query)
869 {
870   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
871   GstClockTime latency;
872   gboolean ret = FALSE;
873
874   if (gst_v4l2_object_decide_allocation (self->v4l2capture, query))
875     ret = GST_VIDEO_DECODER_CLASS (parent_class)->decide_allocation (decoder,
876         query);
877
878   if (GST_CLOCK_TIME_IS_VALID (self->v4l2capture->duration)) {
879     latency = self->v4l2capture->min_buffers * self->v4l2capture->duration;
880     GST_DEBUG_OBJECT (self, "Setting latency: %" GST_TIME_FORMAT " (%"
881         G_GUINT32_FORMAT " * %" G_GUINT64_FORMAT, GST_TIME_ARGS (latency),
882         self->v4l2capture->min_buffers, self->v4l2capture->duration);
883     gst_video_decoder_set_latency (decoder, latency, latency);
884   } else {
885     GST_WARNING_OBJECT (self, "Duration invalid, not setting latency");
886   }
887
888   return ret;
889 }
890
891 static gboolean
892 gst_v4l2_video_dec_src_query (GstVideoDecoder * decoder, GstQuery * query)
893 {
894   gboolean ret = TRUE;
895   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
896
897   switch (GST_QUERY_TYPE (query)) {
898     case GST_QUERY_CAPS:{
899       GstCaps *filter, *result = NULL;
900       GstPad *pad = GST_VIDEO_DECODER_SRC_PAD (decoder);
901
902       gst_query_parse_caps (query, &filter);
903
904       if (self->probed_srccaps)
905         result = gst_caps_ref (self->probed_srccaps);
906       else
907         result = gst_pad_get_pad_template_caps (pad);
908
909       if (filter) {
910         GstCaps *tmp = result;
911         result =
912             gst_caps_intersect_full (filter, tmp, GST_CAPS_INTERSECT_FIRST);
913         gst_caps_unref (tmp);
914       }
915
916       GST_DEBUG_OBJECT (self, "Returning src caps %" GST_PTR_FORMAT, result);
917
918       gst_query_set_caps_result (query, result);
919       gst_caps_unref (result);
920       break;
921     }
922
923     default:
924       ret = GST_VIDEO_DECODER_CLASS (parent_class)->src_query (decoder, query);
925       break;
926   }
927
928   return ret;
929 }
930
931 static GstCaps *
932 gst_v4l2_video_dec_sink_getcaps (GstVideoDecoder * decoder, GstCaps * filter)
933 {
934   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
935   GstCaps *result;
936
937   result = gst_video_decoder_proxy_getcaps (decoder, self->probed_sinkcaps,
938       filter);
939
940   GST_DEBUG_OBJECT (self, "Returning sink caps %" GST_PTR_FORMAT, result);
941
942   return result;
943 }
944
945 static gboolean
946 gst_v4l2_video_dec_sink_event (GstVideoDecoder * decoder, GstEvent * event)
947 {
948   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (decoder);
949   gboolean ret;
950   GstEventType type = GST_EVENT_TYPE (event);
951
952   switch (type) {
953     case GST_EVENT_FLUSH_START:
954       GST_DEBUG_OBJECT (self, "flush start");
955       gst_v4l2_object_unlock (self->v4l2output);
956       gst_v4l2_object_unlock (self->v4l2capture);
957       break;
958     default:
959       break;
960   }
961
962   ret = GST_VIDEO_DECODER_CLASS (parent_class)->sink_event (decoder, event);
963
964   switch (type) {
965     case GST_EVENT_FLUSH_START:
966       /* The processing thread should stop now, wait for it */
967       gst_pad_stop_task (decoder->srcpad);
968       GST_DEBUG_OBJECT (self, "flush start done");
969       break;
970     default:
971       break;
972   }
973
974   return ret;
975 }
976
977 static GstStateChangeReturn
978 gst_v4l2_video_dec_change_state (GstElement * element,
979     GstStateChange transition)
980 {
981   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (element);
982   GstVideoDecoder *decoder = GST_VIDEO_DECODER (element);
983
984   if (transition == GST_STATE_CHANGE_PAUSED_TO_READY) {
985     g_atomic_int_set (&self->active, FALSE);
986     gst_v4l2_object_unlock (self->v4l2output);
987     gst_v4l2_object_unlock (self->v4l2capture);
988     gst_pad_stop_task (decoder->srcpad);
989   }
990
991   return GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
992 }
993
994 static void
995 gst_v4l2_video_dec_dispose (GObject * object)
996 {
997   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (object);
998
999   gst_caps_replace (&self->probed_sinkcaps, NULL);
1000   gst_caps_replace (&self->probed_srccaps, NULL);
1001
1002   G_OBJECT_CLASS (parent_class)->dispose (object);
1003 }
1004
1005 static void
1006 gst_v4l2_video_dec_finalize (GObject * object)
1007 {
1008   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (object);
1009
1010   gst_v4l2_object_destroy (self->v4l2capture);
1011   gst_v4l2_object_destroy (self->v4l2output);
1012
1013   G_OBJECT_CLASS (parent_class)->finalize (object);
1014 }
1015
1016 static void
1017 gst_v4l2_video_dec_init (GstV4l2VideoDec * self)
1018 {
1019   /* V4L2 object are created in subinstance_init */
1020 }
1021
1022 static void
1023 gst_v4l2_video_dec_subinstance_init (GTypeInstance * instance, gpointer g_class)
1024 {
1025   GstV4l2VideoDecClass *klass = GST_V4L2_VIDEO_DEC_CLASS (g_class);
1026   GstV4l2VideoDec *self = GST_V4L2_VIDEO_DEC (instance);
1027   GstVideoDecoder *decoder = GST_VIDEO_DECODER (instance);
1028
1029   gst_video_decoder_set_packetized (decoder, TRUE);
1030
1031   self->v4l2output = gst_v4l2_object_new (GST_ELEMENT (self),
1032       GST_OBJECT (GST_VIDEO_DECODER_SINK_PAD (self)),
1033       V4L2_BUF_TYPE_VIDEO_OUTPUT, klass->default_device,
1034       gst_v4l2_get_output, gst_v4l2_set_output, NULL);
1035   self->v4l2output->no_initial_format = TRUE;
1036   self->v4l2output->keep_aspect = FALSE;
1037
1038   self->v4l2capture = gst_v4l2_object_new (GST_ELEMENT (self),
1039       GST_OBJECT (GST_VIDEO_DECODER_SRC_PAD (self)),
1040       V4L2_BUF_TYPE_VIDEO_CAPTURE, klass->default_device,
1041       gst_v4l2_get_input, gst_v4l2_set_input, NULL);
1042 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
1043   self->v4l2capture->tbm_output = TRUE;
1044 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
1045 }
1046
1047 static void
1048 gst_v4l2_video_dec_class_init (GstV4l2VideoDecClass * klass)
1049 {
1050   GstElementClass *element_class;
1051   GObjectClass *gobject_class;
1052   GstVideoDecoderClass *video_decoder_class;
1053
1054   parent_class = g_type_class_peek_parent (klass);
1055
1056   element_class = (GstElementClass *) klass;
1057   gobject_class = (GObjectClass *) klass;
1058   video_decoder_class = (GstVideoDecoderClass *) klass;
1059
1060   GST_DEBUG_CATEGORY_INIT (gst_v4l2_video_dec_debug, "v4l2videodec", 0,
1061       "V4L2 Video Decoder");
1062
1063   gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_dispose);
1064   gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_finalize);
1065   gobject_class->set_property =
1066       GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_set_property);
1067   gobject_class->get_property =
1068       GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_get_property);
1069
1070   video_decoder_class->open = GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_open);
1071   video_decoder_class->close = GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_close);
1072   video_decoder_class->start = GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_start);
1073   video_decoder_class->stop = GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_stop);
1074   video_decoder_class->finish = GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_finish);
1075   video_decoder_class->flush = GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_flush);
1076   video_decoder_class->drain = GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_drain);
1077   video_decoder_class->set_format =
1078       GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_set_format);
1079   video_decoder_class->negotiate =
1080       GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_negotiate);
1081   video_decoder_class->decide_allocation =
1082       GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_decide_allocation);
1083   /* FIXME propose_allocation or not ? */
1084   video_decoder_class->handle_frame =
1085       GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_handle_frame);
1086   video_decoder_class->getcaps =
1087       GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_sink_getcaps);
1088   video_decoder_class->src_query =
1089       GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_src_query);
1090   video_decoder_class->sink_event =
1091       GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_sink_event);
1092
1093   element_class->change_state =
1094       GST_DEBUG_FUNCPTR (gst_v4l2_video_dec_change_state);
1095
1096   gst_v4l2_object_install_m2m_properties_helper (gobject_class);
1097 #ifdef TIZEN_FEATURE_V4L2_TBM_SUPPORT
1098   g_object_class_install_property (gobject_class, PROP_TBM_OUTPUT,
1099       g_param_spec_boolean ("tbm-output", "Enable TBM for output buffer",
1100           "It works for only DMABUF mode.",
1101           TRUE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1102 #endif /* TIZEN_FEATURE_V4L2_TBM_SUPPORT */
1103 }
1104
1105 static void
1106 gst_v4l2_video_dec_subclass_init (gpointer g_class, gpointer data)
1107 {
1108   GstV4l2VideoDecClass *klass = GST_V4L2_VIDEO_DEC_CLASS (g_class);
1109   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
1110   GstV4l2VideoDecCData *cdata = data;
1111
1112   klass->default_device = cdata->device;
1113
1114   /* Note: gst_pad_template_new() take the floating ref from the caps */
1115   gst_element_class_add_pad_template (element_class,
1116       gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
1117           cdata->sink_caps));
1118   gst_element_class_add_pad_template (element_class,
1119       gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
1120           cdata->src_caps));
1121
1122   gst_element_class_set_static_metadata (element_class, cdata->longname,
1123       "Codec/Decoder/Video/Hardware", cdata->description,
1124       "Nicolas Dufresne <nicolas.dufresne@collabora.com>");
1125
1126   gst_caps_unref (cdata->sink_caps);
1127   gst_caps_unref (cdata->src_caps);
1128   g_free (cdata);
1129 }
1130
1131 /* Probing functions */
1132 gboolean
1133 gst_v4l2_is_video_dec (GstCaps * sink_caps, GstCaps * src_caps)
1134 {
1135   gboolean ret = FALSE;
1136
1137   if (gst_caps_is_subset (sink_caps, gst_v4l2_object_get_codec_caps ())
1138       && gst_caps_is_subset (src_caps, gst_v4l2_object_get_raw_caps ()))
1139     ret = TRUE;
1140
1141   return ret;
1142 }
1143
1144 static gchar *
1145 gst_v4l2_video_dec_set_metadata (GstStructure * s, GstV4l2VideoDecCData * cdata,
1146     const gchar * basename)
1147 {
1148   gchar *codec_name = NULL;
1149   gchar *type_name = NULL;
1150
1151 #define SET_META(codec) \
1152 G_STMT_START { \
1153   cdata->longname = "V4L2 " codec " Decoder"; \
1154   cdata->description = "Decodes " codec " streams via V4L2 API"; \
1155   codec_name = g_ascii_strdown (codec, -1); \
1156 } G_STMT_END
1157
1158   if (gst_structure_has_name (s, "image/jpeg")) {
1159     SET_META ("JPEG");
1160   } else if (gst_structure_has_name (s, "video/mpeg")) {
1161     gint mpegversion = 0;
1162     gst_structure_get_int (s, "mpegversion", &mpegversion);
1163
1164     if (mpegversion == 2) {
1165       SET_META ("MPEG2");
1166     } else {
1167       SET_META ("MPEG4");
1168     }
1169   } else if (gst_structure_has_name (s, "video/x-h263")) {
1170     SET_META ("H263");
1171   } else if (gst_structure_has_name (s, "video/x-fwht")) {
1172     SET_META ("FWHT");
1173   } else if (gst_structure_has_name (s, "video/x-h264")) {
1174     SET_META ("H264");
1175   } else if (gst_structure_has_name (s, "video/x-h265")) {
1176     SET_META ("H265");
1177   } else if (gst_structure_has_name (s, "video/x-wmv")) {
1178     SET_META ("VC1");
1179   } else if (gst_structure_has_name (s, "video/x-vp8")) {
1180     SET_META ("VP8");
1181   } else if (gst_structure_has_name (s, "video/x-vp9")) {
1182     SET_META ("VP9");
1183   } else if (gst_structure_has_name (s, "video/x-bayer")) {
1184     SET_META ("BAYER");
1185   } else if (gst_structure_has_name (s, "video/x-sonix")) {
1186     SET_META ("SONIX");
1187   } else if (gst_structure_has_name (s, "video/x-pwc1")) {
1188     SET_META ("PWC1");
1189   } else if (gst_structure_has_name (s, "video/x-pwc2")) {
1190     SET_META ("PWC2");
1191   } else {
1192     /* This code should be kept on sync with the exposed CODEC type of format
1193      * from gstv4l2object.c. This warning will only occure in case we forget
1194      * to also add a format here. */
1195     gchar *s_str = gst_structure_to_string (s);
1196     g_warning ("Missing fixed name mapping for caps '%s', this is a GStreamer "
1197         "bug, please report at https://bugs.gnome.org", s_str);
1198     g_free (s_str);
1199   }
1200
1201   if (codec_name) {
1202     type_name = g_strdup_printf ("v4l2%sdec", codec_name);
1203     if (g_type_from_name (type_name) != 0) {
1204       g_free (type_name);
1205       type_name = g_strdup_printf ("v4l2%s%sdec", basename, codec_name);
1206     }
1207
1208     g_free (codec_name);
1209   }
1210
1211   return type_name;
1212 #undef SET_META
1213 }
1214
1215 void
1216 gst_v4l2_video_dec_register (GstPlugin * plugin, const gchar * basename,
1217     const gchar * device_path, GstCaps * sink_caps, GstCaps * src_caps)
1218 {
1219   gint i;
1220
1221   for (i = 0; i < gst_caps_get_size (sink_caps); i++) {
1222     GstV4l2VideoDecCData *cdata;
1223     GstStructure *s;
1224     GTypeQuery type_query;
1225     GTypeInfo type_info = { 0, };
1226     GType type, subtype;
1227     gchar *type_name;
1228
1229     s = gst_caps_get_structure (sink_caps, i);
1230
1231     cdata = g_new0 (GstV4l2VideoDecCData, 1);
1232     cdata->device = g_strdup (device_path);
1233     cdata->sink_caps = gst_caps_new_empty ();
1234     gst_caps_append_structure (cdata->sink_caps, gst_structure_copy (s));
1235     cdata->src_caps = gst_caps_ref (src_caps);
1236     type_name = gst_v4l2_video_dec_set_metadata (s, cdata, basename);
1237
1238     /* Skip over if we hit an unmapped type */
1239     if (!type_name) {
1240       g_free (cdata);
1241       continue;
1242     }
1243
1244     type = gst_v4l2_video_dec_get_type ();
1245     g_type_query (type, &type_query);
1246     memset (&type_info, 0, sizeof (type_info));
1247     type_info.class_size = type_query.class_size;
1248     type_info.instance_size = type_query.instance_size;
1249     type_info.class_init = gst_v4l2_video_dec_subclass_init;
1250     type_info.class_data = cdata;
1251     type_info.instance_init = gst_v4l2_video_dec_subinstance_init;
1252
1253     subtype = g_type_register_static (type, type_name, &type_info, 0);
1254
1255     if (!gst_element_register (plugin, type_name, GST_RANK_PRIMARY + 1,
1256             subtype))
1257       GST_WARNING ("Failed to register plugin '%s'", type_name);
1258
1259     g_free (type_name);
1260   }
1261 }