ext/: Fix mimetype on smoke encoder.
[platform/upstream/gst-plugins-good.git] / ext / dv / gstdvdec.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23 #include <string.h>
24
25 /* First, include the header file for the plugin, to bring in the
26  * object definition and other useful things.
27  */
28 #include "gstdvdec.h"
29
30 #define NTSC_HEIGHT 480
31 #define NTSC_BUFFER 120000
32 #define NTSC_FRAMERATE 29.997
33
34 #define PAL_HEIGHT 576
35 #define PAL_BUFFER 144000
36 #define PAL_FRAMERATE 25.0
37
38 #define PAL_NORMAL_PAR_X        16
39 #define PAL_NORMAL_PAR_Y        15
40 #define PAL_WIDE_PAR_X          64
41 #define PAL_WIDE_PAR_Y          45
42
43 #define NTSC_NORMAL_PAR_X       80
44 #define NTSC_NORMAL_PAR_Y       89
45 #define NTSC_WIDE_PAR_X         320
46 #define NTSC_WIDE_PAR_Y         267
47
48 /* The ElementDetails structure gives a human-readable description
49  * of the plugin, as well as author and version data.
50  */
51 static GstElementDetails dvdec_details =
52 GST_ELEMENT_DETAILS ("DV (smpte314) decoder plugin",
53     "Codec/Decoder/Video",
54     "Uses libdv to decode DV video (libdv.sourceforge.net)",
55     "Erik Walthinsen <omega@cse.ogi.edu>\n" "Wim Taymans <wim.taymans@tvd.be>");
56
57
58 /* These are the signals that this element can fire.  They are zero-
59  * based because the numbers themselves are private to the object.
60  * LAST_SIGNAL is used for initialization of the signal array.
61  */
62 enum
63 {
64   /* FILL ME */
65   LAST_SIGNAL
66 };
67
68 #define DV_DEFAULT_QUALITY DV_QUALITY_BEST
69 #define DV_DEFAULT_DECODE_NTH 1
70
71 /* Arguments are identified the same way, but cannot be zero, so you
72  * must leave the ARG_0 entry in as a placeholder.
73  */
74 enum
75 {
76   ARG_0,
77   ARG_CLAMP_LUMA,
78   ARG_CLAMP_CHROMA,
79   ARG_QUALITY,
80   ARG_DECODE_NTH
81       /* FILL ME */
82 };
83
84 const gint qualities[] = {
85   DV_QUALITY_DC,
86   DV_QUALITY_AC_1,
87   DV_QUALITY_AC_2,
88   DV_QUALITY_DC | DV_QUALITY_COLOR,
89   DV_QUALITY_AC_1 | DV_QUALITY_COLOR,
90   DV_QUALITY_AC_2 | DV_QUALITY_COLOR
91 };
92
93 /* The PadFactory structures describe what pads the element has or
94  * can have.  They can be quite complex, but for this dvdec plugin
95  * they are rather simple.
96  */
97 static GstStaticPadTemplate sink_temp = GST_STATIC_PAD_TEMPLATE ("sink",
98     GST_PAD_SINK,
99     GST_PAD_ALWAYS,
100     GST_STATIC_CAPS ("video/x-dv, systemstream = (boolean) true")
101     );
102
103 static GstStaticPadTemplate video_src_temp = GST_STATIC_PAD_TEMPLATE ("video",
104     GST_PAD_SRC,
105     GST_PAD_ALWAYS,
106     GST_STATIC_CAPS ("video/x-raw-yuv, "
107         "format = (fourcc) YUY2, "
108         "width = (int) 720, "
109         "height = (int) { "
110         G_STRINGIFY (NTSC_HEIGHT) ", " G_STRINGIFY (PAL_HEIGHT)
111         " }, "
112         "pixel-aspect-ratio=(fraction) { "
113         G_STRINGIFY (PAL_NORMAL_PAR_X) "/" G_STRINGIFY (PAL_NORMAL_PAR_Y) ","
114         G_STRINGIFY (PAL_WIDE_PAR_X) "/" G_STRINGIFY (PAL_WIDE_PAR_Y) ","
115         G_STRINGIFY (NTSC_NORMAL_PAR_X) "/" G_STRINGIFY (NTSC_NORMAL_PAR_Y) ","
116         G_STRINGIFY (NTSC_WIDE_PAR_X) "/" G_STRINGIFY (NTSC_WIDE_PAR_Y) "},"
117         "framerate = (double) [ 1.0, 60.0 ];"
118         //"framerate = (double) { "
119         //G_STRINGIFY (PAL_FRAMERATE) ", " G_STRINGIFY (NTSC_FRAMERATE)
120         //" }; "
121         "video/x-raw-rgb, "
122         "bpp = (int) 32, "
123         "depth = (int) 32, "
124         "endianness = (int) " G_STRINGIFY (G_BIG_ENDIAN) ", "
125         "red_mask =   (int) 0x00ff0000, "
126         "green_mask = (int) 0x0000ff00, "
127         "blue_mask =  (int) 0x000000ff, "
128         "width = (int) 720, "
129         "height = (int) { "
130         G_STRINGIFY (NTSC_HEIGHT) ", " G_STRINGIFY (PAL_HEIGHT)
131         " }, "
132         "pixel-aspect-ratio=(fraction) { "
133         G_STRINGIFY (PAL_NORMAL_PAR_X) "/" G_STRINGIFY (PAL_NORMAL_PAR_Y) ","
134         G_STRINGIFY (PAL_WIDE_PAR_X) "/" G_STRINGIFY (PAL_WIDE_PAR_Y) ","
135         G_STRINGIFY (NTSC_NORMAL_PAR_X) "/" G_STRINGIFY (NTSC_NORMAL_PAR_Y) ","
136         G_STRINGIFY (NTSC_WIDE_PAR_X) "/" G_STRINGIFY (NTSC_WIDE_PAR_Y) "},"
137         "framerate = (double) [ 1.0, 60.0 ];"
138         //"framerate = (double) { "
139         //G_STRINGIFY (PAL_FRAMERATE) ", " G_STRINGIFY (NTSC_FRAMERATE)
140         //" }; "
141         "video/x-raw-rgb, "
142         "bpp = (int) 24, "
143         "depth = (int) 24, "
144         "endianness = (int) " G_STRINGIFY (G_BIG_ENDIAN) ", "
145         "red_mask =   (int) 0x00ff0000, "
146         "green_mask = (int) 0x0000ff00, "
147         "blue_mask =  (int) 0x000000ff, "
148         "width = (int) 720, "
149         "height = (int) { "
150         G_STRINGIFY (NTSC_HEIGHT) ", " G_STRINGIFY (PAL_HEIGHT)
151         " }, "
152         "pixel-aspect-ratio=(fraction) { "
153         G_STRINGIFY (PAL_NORMAL_PAR_X) "/" G_STRINGIFY (PAL_NORMAL_PAR_Y) ","
154         G_STRINGIFY (PAL_WIDE_PAR_X) "/" G_STRINGIFY (PAL_WIDE_PAR_Y) ","
155         G_STRINGIFY (NTSC_NORMAL_PAR_X) "/" G_STRINGIFY (NTSC_NORMAL_PAR_Y) ","
156         G_STRINGIFY (NTSC_WIDE_PAR_X) "/" G_STRINGIFY (NTSC_WIDE_PAR_Y) "},"
157         "framerate = (double) [ 1.0, 60.0 ]"
158         //"framerate = (double) { "
159         //G_STRINGIFY (PAL_FRAMERATE) ", " G_STRINGIFY (NTSC_FRAMERATE)
160         //" }"
161     )
162     );
163
164 static GstStaticPadTemplate audio_src_temp = GST_STATIC_PAD_TEMPLATE ("audio",
165     GST_PAD_SRC,
166     GST_PAD_ALWAYS,
167     GST_STATIC_CAPS ("audio/x-raw-int, "
168         "depth = (int) 16, "
169         "width = (int) 16, "
170         "signed = (boolean) TRUE, "
171         "channels = (int) 2, "
172         "endianness = (int) " G_STRINGIFY (G_LITTLE_ENDIAN) ", "
173         "rate = (int) [ 4000, 48000 ]")
174     );
175
176 #define GST_TYPE_DVDEC_QUALITY (gst_dvdec_quality_get_type())
177 GType
178 gst_dvdec_quality_get_type (void)
179 {
180   static GType qtype = 0;
181
182   if (qtype == 0) {
183     static const GEnumValue values[] = {
184       {0, "DV_QUALITY_FASTEST", "Fastest decoding, low-quality mono"},
185       {1, "DV_QUALITY_AC_1", "Mono decoding using the first AC coefficient"},
186       {2, "DV_QUALITY_AC_2", "Highest quality mono decoding"},
187       {3, "DV_QUALITY_DC|DV_QUALITY_COLOUR", "Fastest colour decoding"},
188       {4, "DV_QUALITY_AC_1|DV_QUALITY_COLOUR",
189           "Colour, using only the first AC coefficient"},
190       {5, "DV_QUALITY_BEST", "Highest quality colour decoding"},
191       {0, NULL, NULL},
192     };
193
194     qtype = g_enum_register_static ("GstDVDecQualityEnum", values);
195   }
196   return qtype;
197 }
198
199 /* A number of functon prototypes are given so we can refer to them later. */
200 static void gst_dvdec_base_init (gpointer g_class);
201 static void gst_dvdec_class_init (GstDVDecClass * klass);
202 static void gst_dvdec_init (GstDVDec * dvdec);
203
204 static const GstQueryType *gst_dvdec_get_src_query_types (GstPad * pad);
205 static gboolean gst_dvdec_src_query (GstPad * pad, GstQueryType type,
206     GstFormat * format, gint64 * value);
207 static const GstFormat *gst_dvdec_get_formats (GstPad * pad);
208 static gboolean gst_dvdec_sink_convert (GstPad * pad, GstFormat src_format,
209     gint64 src_value, GstFormat * dest_format, gint64 * dest_value);
210 static gboolean gst_dvdec_src_convert (GstPad * pad, GstFormat src_format,
211     gint64 src_value, GstFormat * dest_format, gint64 * dest_value);
212
213 static GstPadLinkReturn gst_dvdec_video_link (GstPad * pad,
214     const GstCaps * caps);
215 static GstCaps *gst_dvdec_video_getcaps (GstPad * pad);
216
217 static const GstEventMask *gst_dvdec_get_event_masks (GstPad * pad);
218 static gboolean gst_dvdec_handle_src_event (GstPad * pad, GstEvent * event);
219
220 static void gst_dvdec_loop (GstElement * element);
221
222 static GstElementStateReturn gst_dvdec_change_state (GstElement * element);
223
224 static void gst_dvdec_set_property (GObject * object, guint prop_id,
225     const GValue * value, GParamSpec * pspec);
226 static void gst_dvdec_get_property (GObject * object, guint prop_id,
227     GValue * value, GParamSpec * pspec);
228
229 /* The parent class pointer needs to be kept around for some object
230  * operations.
231  */
232 static GstElementClass *parent_class = NULL;
233
234 /* This array holds the ids of the signals registered for this object.
235  * The array indexes are based on the enum up above.
236  */
237 /*static guint gst_dvdec_signals[LAST_SIGNAL] = { 0 }; */
238
239 /* This function is used to register and subsequently return the type
240  * identifier for this object class.  On first invocation, it will
241  * register the type, providing the name of the class, struct sizes,
242  * and pointers to the various functions that define the class.
243  */
244 GType
245 gst_dvdec_get_type (void)
246 {
247   static GType dvdec_type = 0;
248
249   if (!dvdec_type) {
250     static const GTypeInfo dvdec_info = {
251       sizeof (GstDVDecClass),
252       gst_dvdec_base_init,
253       NULL,
254       (GClassInitFunc) gst_dvdec_class_init,
255       NULL,
256       NULL,
257       sizeof (GstDVDec),
258       0,
259       (GInstanceInitFunc) gst_dvdec_init,
260     };
261
262     dvdec_type =
263         g_type_register_static (GST_TYPE_ELEMENT, "GstDVDec", &dvdec_info, 0);
264   }
265   return dvdec_type;
266 }
267
268 static void
269 gst_dvdec_base_init (gpointer g_class)
270 {
271   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
272
273   /* The pad templates can be easily generated from the factories above,
274    * and then added to the list of padtemplates for the elementfactory.
275    * Note that the generated padtemplates are stored in static global
276    * variables, for the gst_dvdec_init function to use later on.
277    */
278   gst_element_class_add_pad_template (element_class,
279       gst_static_pad_template_get (&sink_temp));
280   gst_element_class_add_pad_template (element_class,
281       gst_static_pad_template_get (&video_src_temp));
282   gst_element_class_add_pad_template (element_class,
283       gst_static_pad_template_get (&audio_src_temp));
284
285   gst_element_class_set_details (element_class, &dvdec_details);
286 }
287
288 /* In order to create an instance of an object, the class must be
289  * initialized by this function.  GObject will take care of running
290  * it, based on the pointer to the function provided above.
291  */
292 static void
293 gst_dvdec_class_init (GstDVDecClass * klass)
294 {
295   /* Class pointers are needed to supply pointers to the private
296    * implementations of parent class methods.
297    */
298   GObjectClass *gobject_class;
299   GstElementClass *gstelement_class;
300
301   /* Since the dvdec class contains the parent classes, you can simply
302    * cast the pointer to get access to the parent classes.
303    */
304   gobject_class = (GObjectClass *) klass;
305   gstelement_class = (GstElementClass *) klass;
306
307   /* The parent class is needed for class method overrides. */
308   parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
309
310   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_CLAMP_LUMA,
311       g_param_spec_boolean ("clamp_luma", "Clamp luma", "Clamp luma",
312           FALSE, G_PARAM_READWRITE));
313   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_CLAMP_CHROMA,
314       g_param_spec_boolean ("clamp_chroma", "Clamp chroma", "Clamp chroma",
315           FALSE, G_PARAM_READWRITE));
316   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_QUALITY,
317       g_param_spec_enum ("quality", "Quality", "Decoding quality",
318           GST_TYPE_DVDEC_QUALITY, DV_DEFAULT_QUALITY, G_PARAM_READWRITE));
319   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DECODE_NTH,
320       g_param_spec_int ("drop-factor", "Drop Factor", "Only decode Nth frame",
321           1, G_MAXINT, DV_DEFAULT_DECODE_NTH, G_PARAM_READWRITE));
322
323   gobject_class->set_property = gst_dvdec_set_property;
324   gobject_class->get_property = gst_dvdec_get_property;
325
326   gstelement_class->change_state = gst_dvdec_change_state;
327
328   /* table initialization, only do once */
329   dv_init (0, 0);
330 }
331
332 /* This function is responsible for initializing a specific instance of
333  * the plugin.
334  */
335 static void
336 gst_dvdec_init (GstDVDec * dvdec)
337 {
338   gint i;
339
340   dvdec->found_header = FALSE;
341
342   dvdec->sinkpad =
343       gst_pad_new_from_template (gst_static_pad_template_get (&sink_temp),
344       "sink");
345   gst_pad_set_query_function (dvdec->sinkpad, NULL);
346   gst_pad_set_convert_function (dvdec->sinkpad,
347       GST_DEBUG_FUNCPTR (gst_dvdec_sink_convert));
348   gst_pad_set_formats_function (dvdec->sinkpad,
349       GST_DEBUG_FUNCPTR (gst_dvdec_get_formats));
350   gst_element_add_pad (GST_ELEMENT (dvdec), dvdec->sinkpad);
351
352   dvdec->videosrcpad =
353       gst_pad_new_from_template (gst_static_pad_template_get (&video_src_temp),
354       "video");
355   gst_pad_set_query_function (dvdec->videosrcpad,
356       GST_DEBUG_FUNCPTR (gst_dvdec_src_query));
357   gst_pad_set_query_type_function (dvdec->videosrcpad,
358       GST_DEBUG_FUNCPTR (gst_dvdec_get_src_query_types));
359   gst_pad_set_event_function (dvdec->videosrcpad,
360       GST_DEBUG_FUNCPTR (gst_dvdec_handle_src_event));
361   gst_pad_set_event_mask_function (dvdec->videosrcpad,
362       GST_DEBUG_FUNCPTR (gst_dvdec_get_event_masks));
363   gst_pad_set_convert_function (dvdec->videosrcpad,
364       GST_DEBUG_FUNCPTR (gst_dvdec_src_convert));
365   gst_pad_set_formats_function (dvdec->videosrcpad,
366       GST_DEBUG_FUNCPTR (gst_dvdec_get_formats));
367   gst_pad_set_getcaps_function (dvdec->videosrcpad,
368       GST_DEBUG_FUNCPTR (gst_dvdec_video_getcaps));
369   gst_pad_set_link_function (dvdec->videosrcpad,
370       GST_DEBUG_FUNCPTR (gst_dvdec_video_link));
371   gst_element_add_pad (GST_ELEMENT (dvdec), dvdec->videosrcpad);
372
373   dvdec->audiosrcpad =
374       gst_pad_new_from_template (gst_static_pad_template_get (&audio_src_temp),
375       "audio");
376   gst_pad_set_query_function (dvdec->audiosrcpad,
377       GST_DEBUG_FUNCPTR (gst_dvdec_src_query));
378   gst_pad_set_query_type_function (dvdec->audiosrcpad,
379       GST_DEBUG_FUNCPTR (gst_dvdec_get_src_query_types));
380   gst_pad_set_event_function (dvdec->audiosrcpad,
381       GST_DEBUG_FUNCPTR (gst_dvdec_handle_src_event));
382   gst_pad_set_event_mask_function (dvdec->audiosrcpad,
383       GST_DEBUG_FUNCPTR (gst_dvdec_get_event_masks));
384   gst_pad_set_convert_function (dvdec->audiosrcpad,
385       GST_DEBUG_FUNCPTR (gst_dvdec_src_convert));
386   gst_pad_set_formats_function (dvdec->audiosrcpad,
387       GST_DEBUG_FUNCPTR (gst_dvdec_get_formats));
388   gst_pad_use_explicit_caps (dvdec->audiosrcpad);
389   gst_element_add_pad (GST_ELEMENT (dvdec), dvdec->audiosrcpad);
390
391   gst_element_set_loop_function (GST_ELEMENT (dvdec), gst_dvdec_loop);
392
393   dvdec->bs = NULL;
394   dvdec->length = 0;
395   dvdec->next_ts = 0LL;
396   dvdec->end_position = -1LL;
397   dvdec->need_discont = FALSE;
398   dvdec->new_media = FALSE;
399   dvdec->framerate = 0;
400   dvdec->height = 0;
401   dvdec->frequency = 0;
402   dvdec->channels = 0;
403   dvdec->drop_factor = 1;
404
405   dvdec->clamp_luma = FALSE;
406   dvdec->clamp_chroma = FALSE;
407   dvdec->quality = DV_DEFAULT_QUALITY;
408   dvdec->loop = FALSE;
409
410   for (i = 0; i < 4; i++) {
411     dvdec->audio_buffers[i] =
412         (gint16 *) g_malloc (DV_AUDIO_MAX_SAMPLES * sizeof (gint16));
413   }
414 }
415
416 static const GstFormat *
417 gst_dvdec_get_formats (GstPad * pad)
418 {
419   static const GstFormat src_formats[] = {
420     GST_FORMAT_BYTES,
421     GST_FORMAT_DEFAULT,
422     GST_FORMAT_TIME,
423     0
424   };
425   static const GstFormat sink_formats[] = {
426     GST_FORMAT_BYTES,
427     GST_FORMAT_TIME,
428     GST_FORMAT_DEFAULT,
429     0
430   };
431
432   return (GST_PAD_IS_SRC (pad) ? src_formats : sink_formats);
433 }
434
435 static gboolean
436 gst_dvdec_src_convert (GstPad * pad, GstFormat src_format, gint64 src_value,
437     GstFormat * dest_format, gint64 * dest_value)
438 {
439   gboolean res = TRUE;
440   GstDVDec *dvdec;
441
442   dvdec = GST_DVDEC (gst_pad_get_parent (pad));
443   if (dvdec->length == 0)
444     return FALSE;
445
446   if (dvdec->decoder == NULL)
447     return FALSE;
448
449   switch (src_format) {
450     case GST_FORMAT_BYTES:
451       switch (*dest_format) {
452         case GST_FORMAT_BYTES:
453           *dest_value = src_value;
454           break;
455         case GST_FORMAT_DEFAULT:
456         case GST_FORMAT_TIME:
457           *dest_format = GST_FORMAT_TIME;
458           if (pad == dvdec->videosrcpad)
459             *dest_value = src_value * GST_SECOND /
460                 (720 * dvdec->height * dvdec->bpp * dvdec->framerate /
461                 GST_SECOND);
462           else if (pad == dvdec->audiosrcpad)
463             *dest_value = src_value * GST_SECOND /
464                 (2 * dvdec->frequency * dvdec->channels);
465           break;
466         default:
467           res = FALSE;
468       }
469       break;
470     case GST_FORMAT_TIME:
471       switch (*dest_format) {
472         case GST_FORMAT_BYTES:
473           if (pad == dvdec->videosrcpad)
474             *dest_value = src_value * 720 * dvdec->height * dvdec->bpp *
475                 dvdec->framerate / GST_SECOND;
476           else if (pad == dvdec->audiosrcpad)
477             *dest_value = 2 * src_value * dvdec->frequency *
478                 dvdec->channels / GST_SECOND;
479           break;
480         case GST_FORMAT_TIME:
481         case GST_FORMAT_DEFAULT:
482           *dest_format = GST_FORMAT_TIME;
483           *dest_value = src_value;
484           break;
485         default:
486           res = FALSE;
487       }
488       break;
489     default:
490       res = FALSE;
491   }
492   return res;
493 }
494
495 static gboolean
496 gst_dvdec_sink_convert (GstPad * pad, GstFormat src_format, gint64 src_value,
497     GstFormat * dest_format, gint64 * dest_value)
498 {
499   gboolean res = TRUE;
500   GstDVDec *dvdec;
501
502   dvdec = GST_DVDEC (gst_pad_get_parent (pad));
503
504   if (dvdec->length == 0)
505     return FALSE;
506
507   if (*dest_format == GST_FORMAT_DEFAULT)
508     *dest_format = GST_FORMAT_TIME;
509
510   switch (src_format) {
511     case GST_FORMAT_BYTES:
512       switch (*dest_format) {
513         case GST_FORMAT_TIME:
514         {
515           guint64 frame;
516
517           /* get frame number */
518           frame = src_value / dvdec->length;
519
520           *dest_value = (frame * GST_SECOND) / dvdec->framerate;
521           break;
522         }
523         case GST_FORMAT_BYTES:
524           *dest_value = src_value;
525           break;
526         default:
527           res = FALSE;
528       }
529       break;
530     case GST_FORMAT_TIME:
531       switch (*dest_format) {
532         case GST_FORMAT_BYTES:
533         {
534           guint64 frame;
535
536           /* calculate the frame */
537           frame = src_value * dvdec->framerate / GST_SECOND;
538           /* calculate the offset */
539           *dest_value = frame * dvdec->length;
540           break;
541         }
542         case GST_FORMAT_TIME:
543           *dest_value = src_value;
544           break;
545         default:
546           res = FALSE;
547       }
548       break;
549     default:
550       res = FALSE;
551   }
552   return res;
553 }
554
555 static const GstQueryType *
556 gst_dvdec_get_src_query_types (GstPad * pad)
557 {
558   static const GstQueryType src_query_types[] = {
559     GST_QUERY_TOTAL,
560     GST_QUERY_POSITION,
561     0
562   };
563
564   return src_query_types;
565 }
566
567 static gboolean
568 gst_dvdec_src_query (GstPad * pad, GstQueryType type,
569     GstFormat * format, gint64 * value)
570 {
571   gboolean res = TRUE;
572   GstDVDec *dvdec;
573
574   dvdec = GST_DVDEC (gst_pad_get_parent (pad));
575
576   switch (type) {
577     case GST_QUERY_TOTAL:
578       switch (*format) {
579         default:
580         {
581           guint64 len;
582           GstFormat tmp_format;
583
584           if (!dvdec->bs)
585             return FALSE;
586
587           len = gst_bytestream_length (dvdec->bs);
588           tmp_format = GST_FORMAT_TIME;
589           if (len == -1 || !gst_pad_convert (dvdec->sinkpad,
590                   GST_FORMAT_BYTES, len, &tmp_format, value)) {
591             return FALSE;
592           }
593           if (!gst_pad_convert (pad, GST_FORMAT_TIME, *value, format, value)) {
594             return FALSE;
595           }
596           break;
597         }
598       }
599       break;
600     case GST_QUERY_POSITION:
601       switch (*format) {
602         default:
603           res =
604               gst_pad_convert (pad, GST_FORMAT_TIME, dvdec->next_ts, format,
605               value);
606           break;
607       }
608       break;
609     default:
610       res = FALSE;
611       break;
612   }
613   return res;
614 }
615
616 static const GstEventMask *
617 gst_dvdec_get_event_masks (GstPad * pad)
618 {
619   static const GstEventMask src_event_masks[] = {
620     {GST_EVENT_SEEK, GST_SEEK_METHOD_SET | GST_SEEK_FLAG_FLUSH},
621     {0,}
622   };
623   static const GstEventMask sink_event_masks[] = {
624     {GST_EVENT_EOS, 0},
625     {GST_EVENT_DISCONTINUOUS, 0},
626     {GST_EVENT_FLUSH, 0},
627     {0,}
628   };
629
630   return (GST_PAD_IS_SRC (pad) ? src_event_masks : sink_event_masks);
631 }
632
633 static gboolean
634 gst_dvdec_handle_sink_event (GstDVDec * dvdec)
635 {
636   guint32 remaining;
637   GstEvent *event;
638   GstEventType type;
639
640   gst_bytestream_get_status (dvdec->bs, &remaining, &event);
641
642   type = event ? GST_EVENT_TYPE (event) : GST_EVENT_UNKNOWN;
643
644   switch (type) {
645     case GST_EVENT_FLUSH:
646     case GST_EVENT_EOS:
647     case GST_EVENT_FILLER:
648     {
649       /* Forward the event to output sinks */
650       if (GST_PAD_IS_LINKED (dvdec->videosrcpad)) {
651         gst_event_ref (event);
652         gst_pad_push (dvdec->videosrcpad, GST_DATA (event));
653       }
654       if (GST_PAD_IS_LINKED (dvdec->audiosrcpad)) {
655         gst_event_ref (event);
656         gst_pad_push (dvdec->audiosrcpad, GST_DATA (event));
657       }
658       break;
659     }
660     case GST_EVENT_DISCONTINUOUS:
661     {
662       gint i;
663       gboolean found = FALSE;
664       GstFormat format;
665
666       format = GST_FORMAT_TIME;
667       /* try to get a timestamp from the discont formats */
668       for (i = 0; i < GST_EVENT_DISCONT_OFFSET_LEN (event); i++) {
669         if (gst_pad_convert (dvdec->sinkpad,
670                 GST_EVENT_DISCONT_OFFSET (event, i).format,
671                 GST_EVENT_DISCONT_OFFSET (event, i).value,
672                 &format, &dvdec->next_ts)) {
673           found = TRUE;
674           break;
675         }
676       }
677       /* assume 0 then */
678       if (!found) {
679         dvdec->next_ts = 0LL;
680       }
681       dvdec->need_discont = TRUE;
682       break;
683     }
684     default:
685       return gst_pad_event_default (dvdec->sinkpad, event);
686       break;
687   }
688   gst_event_unref (event);
689   return TRUE;
690 }
691
692 static gboolean
693 gst_dvdec_handle_src_event (GstPad * pad, GstEvent * event)
694 {
695   gboolean res = TRUE;
696   GstDVDec *dvdec;
697
698   dvdec = GST_DVDEC (gst_pad_get_parent (pad));
699
700   switch (GST_EVENT_TYPE (event)) {
701     case GST_EVENT_SEEK_SEGMENT:
702     {
703       gint64 position;
704       GstFormat format;
705
706       /* first bring the format to time */
707       format = GST_FORMAT_TIME;
708       if (!gst_pad_convert (pad,
709               GST_EVENT_SEEK_FORMAT (event),
710               GST_EVENT_SEEK_ENDOFFSET (event), &format, &position)) {
711         /* could not convert seek format to time offset */
712         res = FALSE;
713         break;
714       }
715
716       dvdec->end_position = position;
717       dvdec->loop = GST_EVENT_SEEK_TYPE (event) & GST_SEEK_FLAG_SEGMENT_LOOP;
718     }
719     case GST_EVENT_SEEK:
720     {
721       gint64 position;
722       GstFormat format;
723
724       /* first bring the format to time */
725       format = GST_FORMAT_TIME;
726       if (!gst_pad_convert (pad,
727               GST_EVENT_SEEK_FORMAT (event),
728               GST_EVENT_SEEK_OFFSET (event), &format, &position)) {
729         /* could not convert seek format to time offset */
730         res = FALSE;
731         break;
732       }
733       dvdec->next_ts = position;
734       /* then try to figure out the byteoffset for this time */
735       format = GST_FORMAT_BYTES;
736       if (!gst_pad_convert (dvdec->sinkpad, GST_FORMAT_TIME, position,
737               &format, &position)) {
738         /* could not convert seek format to byte offset */
739         res = FALSE;
740         break;
741       }
742       /* seek to offset */
743       if (!gst_bytestream_seek (dvdec->bs, position, GST_SEEK_METHOD_SET)) {
744         res = FALSE;
745       }
746       if (GST_EVENT_TYPE (event) != GST_EVENT_SEEK_SEGMENT)
747         dvdec->end_position = -1;
748       break;
749     }
750     default:
751       res = FALSE;
752       break;
753   }
754   gst_event_unref (event);
755   return res;
756 }
757
758 static GstCaps *
759 gst_dvdec_video_getcaps (GstPad * pad)
760 {
761   GstDVDec *dvdec;
762   GstCaps *caps;
763   GstPadTemplate *src_pad_template;
764
765   dvdec = GST_DVDEC (gst_pad_get_parent (pad));
766   src_pad_template = gst_static_pad_template_get (&video_src_temp);
767   caps = gst_caps_copy (gst_pad_template_get_caps (src_pad_template));
768
769   if (dvdec->found_header) {
770     int i;
771     gint par_x, par_y;
772
773     if (dvdec->PAL) {
774       if (dv_format_wide (dvdec->decoder)) {
775         par_x = PAL_WIDE_PAR_X;
776         par_y = PAL_WIDE_PAR_Y;
777       } else {
778         par_x = PAL_NORMAL_PAR_X;
779         par_y = PAL_NORMAL_PAR_Y;
780       }
781     } else {
782       if (dv_format_wide (dvdec->decoder)) {
783         par_x = NTSC_WIDE_PAR_X;
784         par_y = NTSC_WIDE_PAR_Y;
785       } else {
786         par_x = NTSC_NORMAL_PAR_X;
787         par_y = NTSC_NORMAL_PAR_Y;
788       }
789     }
790     /* set the height */
791     for (i = 0; i < gst_caps_get_size (caps); i++) {
792       GstStructure *structure = gst_caps_get_structure (caps, i);
793
794       gst_structure_set (structure,
795           "height", G_TYPE_INT, dvdec->height,
796           "framerate", G_TYPE_DOUBLE, dvdec->framerate / dvdec->drop_factor,
797           "pixel-aspect-ratio", GST_TYPE_FRACTION, par_x, par_y, NULL);
798     }
799   }
800
801   return caps;
802 }
803
804 static GstPadLinkReturn
805 gst_dvdec_video_link (GstPad * pad, const GstCaps * caps)
806 {
807   GstDVDec *dvdec;
808   GstStructure *structure;
809   guint32 fourcc;
810   gint height;
811   gdouble framerate;
812
813   dvdec = GST_DVDEC (gst_pad_get_parent (pad));
814
815   /* if we did not find a header yet, return delayed */
816   if (!dvdec->found_header) {
817     return GST_PAD_LINK_DELAYED;
818   }
819
820   structure = gst_caps_get_structure (caps, 0);
821
822   if (!gst_structure_get_int (structure, "height", &height) ||
823       !gst_structure_get_double (structure, "framerate", &framerate))
824     return GST_PAD_LINK_REFUSED;
825
826   if ((height != dvdec->height)
827       || (framerate != dvdec->framerate / dvdec->drop_factor))
828     return GST_PAD_LINK_REFUSED;
829
830   if (strcmp (gst_structure_get_name (structure), "video/x-raw-rgb") == 0) {
831     gint bpp;
832
833     gst_structure_get_int (structure, "bpp", &bpp);
834     if (bpp == 24) {
835       dvdec->space = e_dv_color_rgb;
836       dvdec->bpp = 3;
837     } else {
838       dvdec->space = e_dv_color_bgr0;
839       dvdec->bpp = 4;
840     }
841   } else {
842     if (!gst_structure_get_fourcc (structure, "format", &fourcc))
843       return GST_PAD_LINK_REFUSED;
844
845     dvdec->space = e_dv_color_yuv;
846     dvdec->bpp = 2;
847   }
848
849   return GST_PAD_LINK_OK;
850 }
851
852 static void
853 gst_dvdec_push (GstDVDec * dvdec, GstBuffer * outbuf, GstPad * pad,
854     GstClockTime ts)
855 {
856   if ((dvdec->need_discont) || (dvdec->new_media)) {
857     GstEvent *discont;
858
859     discont = gst_event_new_discontinuous (FALSE, GST_FORMAT_TIME, ts, NULL);
860     GST_EVENT_DISCONT_NEW_MEDIA (discont) = dvdec->new_media;
861
862     gst_pad_push (pad, GST_DATA (discont));
863   }
864
865   gst_pad_push (pad, GST_DATA (outbuf));
866
867   if ((dvdec->end_position != -1) && (dvdec->next_ts >= dvdec->end_position)) {
868     if (dvdec->loop)
869       gst_pad_push (pad, GST_DATA (gst_event_new (GST_EVENT_SEGMENT_DONE)));
870     else
871       gst_pad_push (pad, GST_DATA (gst_event_new (GST_EVENT_EOS)));
872   }
873 }
874
875 static void
876 gst_dvdec_loop (GstElement * element)
877 {
878   GstDVDec *dvdec;
879   GstBuffer *buf, *outbuf;
880   guint8 *inframe;
881   gint height;
882   guint32 length, got_bytes;
883   GstClockTime ts, duration;
884   gdouble fps;
885
886   dvdec = GST_DVDEC (element);
887
888   /*
889    * Apparently dv_parse_header can read from the body of the frame
890    * too, so it needs more than header_size bytes. Wacky!
891    */
892   if (dvdec->found_header)
893     length = (dvdec->PAL ? PAL_BUFFER : NTSC_BUFFER);
894   else
895     length = NTSC_BUFFER;
896
897   /* first read enough bytes to parse the header */
898   got_bytes = gst_bytestream_peek_bytes (dvdec->bs, &inframe, length);
899   if (got_bytes < length) {
900     gst_dvdec_handle_sink_event (dvdec);
901     return;
902   }
903   if (dv_parse_header (dvdec->decoder, inframe) < 0) {
904     GST_ELEMENT_ERROR (dvdec, STREAM, DECODE, (NULL), (NULL));
905     return;
906   }
907
908   /* after parsing the header we know the length of the data */
909   dvdec->PAL = dv_system_50_fields (dvdec->decoder);
910   dvdec->found_header = TRUE;
911
912   fps = (dvdec->PAL ? PAL_FRAMERATE : NTSC_FRAMERATE);
913   height = (dvdec->PAL ? PAL_HEIGHT : NTSC_HEIGHT);
914   length = (dvdec->PAL ? PAL_BUFFER : NTSC_BUFFER);
915
916   if (length != dvdec->length) {
917     dvdec->length = length;
918     gst_bytestream_size_hint (dvdec->bs, length);
919   }
920
921   /* then read the read data */
922   got_bytes = gst_bytestream_read (dvdec->bs, &buf, length);
923   if (got_bytes < length) {
924     gst_dvdec_handle_sink_event (dvdec);
925     return;
926   }
927
928   ts = dvdec->next_ts;
929   dvdec->next_ts += GST_SECOND / fps;
930   duration = dvdec->next_ts - ts;
931
932   dv_parse_packs (dvdec->decoder, GST_BUFFER_DATA (buf));
933   if (dv_is_new_recording (dvdec->decoder, GST_BUFFER_DATA (buf)))
934     dvdec->new_media = TRUE;
935   if (GST_PAD_IS_LINKED (dvdec->audiosrcpad)) {
936     gint num_samples;
937
938     dv_decode_full_audio (dvdec->decoder, GST_BUFFER_DATA (buf),
939         dvdec->audio_buffers);
940
941     if ((dv_get_frequency (dvdec->decoder) != dvdec->frequency) ||
942         (dv_get_num_channels (dvdec->decoder) != dvdec->channels)) {
943       if (!gst_pad_set_explicit_caps (dvdec->audiosrcpad,
944               gst_caps_new_simple ("audio/x-raw-int",
945                   "rate", G_TYPE_INT, dv_get_frequency (dvdec->decoder),
946                   "depth", G_TYPE_INT, 16,
947                   "width", G_TYPE_INT, 16,
948                   "signed", G_TYPE_BOOLEAN, TRUE,
949                   "channels", G_TYPE_INT, dv_get_num_channels (dvdec->decoder),
950                   "endianness", G_TYPE_INT, G_LITTLE_ENDIAN, NULL))) {
951         gst_buffer_unref (buf);
952         GST_ELEMENT_ERROR (dvdec, CORE, NEGOTIATION, (NULL),
953             ("Failed to negotiate audio parameters for the DV audio stream"));
954         return;
955       }
956
957       dvdec->frequency = dv_get_frequency (dvdec->decoder);
958       dvdec->channels = dv_get_num_channels (dvdec->decoder);
959     }
960
961     num_samples = dv_get_num_samples (dvdec->decoder);
962
963     if (num_samples) {
964       gint16 *a_ptr;
965       gint i, j;
966
967       outbuf = gst_buffer_new ();
968       GST_BUFFER_SIZE (outbuf) = dv_get_num_samples (dvdec->decoder) *
969           sizeof (gint16) * dv_get_num_channels (dvdec->decoder);
970       GST_BUFFER_DATA (outbuf) = g_malloc (GST_BUFFER_SIZE (outbuf));
971
972       a_ptr = (gint16 *) GST_BUFFER_DATA (outbuf);
973
974       for (i = 0; i < num_samples; i++) {
975         for (j = 0; j < dv_get_num_channels (dvdec->decoder); j++) {
976           *(a_ptr++) = dvdec->audio_buffers[j][i];
977         }
978       }
979
980       GST_BUFFER_TIMESTAMP (outbuf) = ts;
981       GST_BUFFER_DURATION (outbuf) = duration;
982       GST_BUFFER_OFFSET (outbuf) = dvdec->audio_offset;
983       dvdec->audio_offset += num_samples;
984       GST_BUFFER_OFFSET_END (outbuf) = dvdec->audio_offset;
985
986       gst_dvdec_push (dvdec, outbuf, dvdec->audiosrcpad, ts);
987     }
988   } else {
989     dvdec->frequency = dv_get_frequency (dvdec->decoder);
990     dvdec->channels = dv_get_num_channels (dvdec->decoder);
991   }
992
993   if (GST_PAD_IS_LINKED (dvdec->videosrcpad)) {
994     guint8 *outframe;
995     guint8 *outframe_ptrs[3];
996     gint outframe_pitches[3];
997
998     dvdec->framecount++;
999     if (dvdec->framecount < dvdec->drop_factor) {
1000       /* don't decode */
1001       goto end;
1002     }
1003     dvdec->framecount = 0;
1004
1005     if ((dvdec->framerate != fps) || (dvdec->height != height)) {
1006       dvdec->height = height;
1007       dvdec->framerate = fps;
1008
1009       if (GST_PAD_LINK_FAILED (gst_pad_renegotiate (dvdec->videosrcpad))) {
1010         GST_ELEMENT_ERROR (dvdec, CORE, NEGOTIATION, (NULL), (NULL));
1011         return;
1012       }
1013     }
1014
1015     outbuf = gst_buffer_new_and_alloc ((720 * height) * dvdec->bpp);
1016
1017     outframe = GST_BUFFER_DATA (outbuf);
1018
1019     outframe_ptrs[0] = outframe;
1020     outframe_pitches[0] = 720 * dvdec->bpp;
1021
1022     /* the rest only matters for YUY2 */
1023     if (dvdec->bpp < 3) {
1024       outframe_ptrs[1] = outframe_ptrs[0] + 720 * height;
1025       outframe_ptrs[2] = outframe_ptrs[1] + 360 * height;
1026
1027       outframe_pitches[1] = height / 2;
1028       outframe_pitches[2] = outframe_pitches[1];
1029     }
1030
1031     dv_decode_full_frame (dvdec->decoder, GST_BUFFER_DATA (buf),
1032         dvdec->space, outframe_ptrs, outframe_pitches);
1033
1034     GST_BUFFER_TIMESTAMP (outbuf) = ts;
1035     GST_BUFFER_DURATION (outbuf) = duration * dvdec->drop_factor;
1036
1037     gst_dvdec_push (dvdec, outbuf, dvdec->videosrcpad, ts);
1038   } else {
1039     dvdec->height = height;
1040     dvdec->framerate = fps;
1041   }
1042
1043 end:
1044   if ((dvdec->end_position != -1) &&
1045       (dvdec->next_ts >= dvdec->end_position) && !dvdec->loop) {
1046     gst_element_set_eos (GST_ELEMENT (dvdec));
1047   }
1048
1049   dvdec->need_discont = FALSE;
1050   dvdec->new_media = FALSE;
1051
1052   gst_buffer_unref (buf);
1053 }
1054
1055 static GstElementStateReturn
1056 gst_dvdec_change_state (GstElement * element)
1057 {
1058   GstDVDec *dvdec = GST_DVDEC (element);
1059
1060   switch (GST_STATE_TRANSITION (element)) {
1061     case GST_STATE_NULL_TO_READY:
1062       break;
1063     case GST_STATE_READY_TO_PAUSED:
1064       dvdec->bs = gst_bytestream_new (dvdec->sinkpad);
1065       dvdec->decoder =
1066           dv_decoder_new (0, dvdec->clamp_luma, dvdec->clamp_chroma);
1067       dvdec->decoder->quality = qualities[dvdec->quality];
1068       dvdec->audio_offset = 0;
1069       dvdec->framecount = 0;
1070       /* 
1071        * Enable this function call when libdv2 0.100 or higher is more
1072        * common
1073        */
1074       /* dv_set_quality (dvdec->decoder, qualities [dvdec->quality]); */
1075       break;
1076     case GST_STATE_PAUSED_TO_PLAYING:
1077       break;
1078     case GST_STATE_PLAYING_TO_PAUSED:
1079       break;
1080     case GST_STATE_PAUSED_TO_READY:
1081       dv_decoder_free (dvdec->decoder);
1082       dvdec->decoder = NULL;
1083       dvdec->found_header = FALSE;
1084       gst_bytestream_destroy (dvdec->bs);
1085       dvdec->bs = NULL;
1086       break;
1087     case GST_STATE_READY_TO_NULL:
1088       break;
1089     default:
1090       break;
1091   }
1092
1093   return parent_class->change_state (element);
1094 }
1095
1096 /* Arguments are part of the Gtk+ object system, and these functions
1097  * enable the element to respond to various arguments.
1098  */
1099 static void
1100 gst_dvdec_set_property (GObject * object, guint prop_id, const GValue * value,
1101     GParamSpec * pspec)
1102 {
1103   GstDVDec *dvdec;
1104
1105   /* It's not null if we got it, but it might not be ours */
1106   g_return_if_fail (GST_IS_DVDEC (object));
1107
1108   /* Get a pointer of the right type. */
1109   dvdec = GST_DVDEC (object);
1110
1111   /* Check the argument id to see which argument we're setting. */
1112   switch (prop_id) {
1113     case ARG_CLAMP_LUMA:
1114       dvdec->clamp_luma = g_value_get_boolean (value);
1115       break;
1116     case ARG_CLAMP_CHROMA:
1117       dvdec->clamp_chroma = g_value_get_boolean (value);
1118       break;
1119     case ARG_QUALITY:
1120       dvdec->quality = g_value_get_enum (value);
1121       if ((dvdec->quality < 0) || (dvdec->quality > 5))
1122         dvdec->quality = 0;
1123       break;
1124     case ARG_DECODE_NTH:
1125       dvdec->drop_factor = g_value_get_int (value);
1126       break;
1127     default:
1128       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1129       break;
1130   }
1131 }
1132
1133 /* The set function is simply the inverse of the get fuction. */
1134 static void
1135 gst_dvdec_get_property (GObject * object, guint prop_id, GValue * value,
1136     GParamSpec * pspec)
1137 {
1138   GstDVDec *dvdec;
1139
1140   /* It's not null if we got it, but it might not be ours */
1141   g_return_if_fail (GST_IS_DVDEC (object));
1142   dvdec = GST_DVDEC (object);
1143
1144   switch (prop_id) {
1145     case ARG_CLAMP_LUMA:
1146       g_value_set_boolean (value, dvdec->clamp_luma);
1147       break;
1148     case ARG_CLAMP_CHROMA:
1149       g_value_set_boolean (value, dvdec->clamp_chroma);
1150       break;
1151     case ARG_QUALITY:
1152       g_value_set_enum (value, dvdec->quality);
1153       break;
1154     case ARG_DECODE_NTH:
1155       g_value_set_int (value, dvdec->drop_factor);
1156       break;
1157     default:
1158       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1159       break;
1160   }
1161 }
1162
1163 /* This is the entry into the plugin itself.  When the plugin loads,
1164  * this function is called to register everything that the plugin provides.
1165  */
1166 static gboolean
1167 plugin_init (GstPlugin * plugin)
1168 {
1169   if (!gst_library_load ("gstbytestream"))
1170     return FALSE;
1171
1172   if (!gst_element_register (plugin, "dvdec", GST_RANK_PRIMARY,
1173           gst_dvdec_get_type ()))
1174     return FALSE;
1175
1176   return TRUE;
1177 }
1178
1179 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
1180     GST_VERSION_MINOR,
1181     "dvdec",
1182     "Uses libdv to decode DV video (libdv.sourceforge.net)",
1183     plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN);