make GstElementDetails const
[platform/upstream/gstreamer.git] / gst / ffmpegcolorspace / gstffmpegcolorspace.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * This file:
4  * Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 /**
23  * SECTION:element-ffmpegcolorspace
24  *
25  * <refsect2>
26  * <title>Example launch line</title>
27  * <para>
28  * <programlisting>
29  * gst-launch -v videotestsrc ! video/x-raw-yuv,format=\(fourcc\)YUY2 ! ffmpegcolorspace ! ximagesink
30  * </programlisting>
31  * </para>
32  * </refsect2>
33  */
34
35 #ifdef HAVE_CONFIG_H
36 #  include "config.h"
37 #endif
38
39 #include "gstffmpegcolorspace.h"
40 #include "gstffmpegcodecmap.h"
41
42 GST_DEBUG_CATEGORY (ffmpegcolorspace_debug);
43 #define GST_CAT_DEFAULT ffmpegcolorspace_debug
44
45 /* elementfactory information */
46 static const GstElementDetails ffmpegcsp_details =
47 GST_ELEMENT_DETAILS ("FFMPEG Colorspace converter",
48     "Filter/Converter/Video",
49     "Converts video from one colorspace to another",
50     "Ronald Bultje <rbultje@ronald.bitfreak.net>");
51
52
53 /* Stereo signals and args */
54 enum
55 {
56   /* FILL ME */
57   LAST_SIGNAL
58 };
59
60 enum
61 {
62   ARG_0,
63 };
64
65 static GType gst_ffmpegcsp_get_type (void);
66
67 static void gst_ffmpegcsp_base_init (GstFFMpegCspClass * klass);
68 static void gst_ffmpegcsp_class_init (GstFFMpegCspClass * klass);
69 static void gst_ffmpegcsp_init (GstFFMpegCsp * space);
70
71 static gboolean gst_ffmpegcsp_set_caps (GstBaseTransform * btrans,
72     GstCaps * incaps, GstCaps * outcaps);
73 static gboolean gst_ffmpegcsp_get_unit_size (GstBaseTransform * btrans,
74     GstCaps * caps, guint * size);
75 static GstFlowReturn gst_ffmpegcsp_transform (GstBaseTransform * btrans,
76     GstBuffer * inbuf, GstBuffer * outbuf);
77 #if 0
78 static GstFlowReturn gst_ffmpegcsp_transform_ip (GstBaseTransform * btrans,
79     GstBuffer * inbuf);
80 #endif
81
82 static GstPadTemplate *sinktempl, *srctempl;
83 static GstElementClass *parent_class = NULL;
84
85 /*static guint gst_ffmpegcsp_signals[LAST_SIGNAL] = { 0 }; */
86
87 /* copies the given caps */
88 static GstCaps *
89 gst_ffmpegcsp_caps_remove_format_info (GstCaps * caps)
90 {
91   int i;
92   GstStructure *structure;
93   GstCaps *rgbcaps;
94   GstCaps *graycaps;
95
96   caps = gst_caps_copy (caps);
97
98   for (i = 0; i < gst_caps_get_size (caps); i++) {
99     structure = gst_caps_get_structure (caps, i);
100
101     gst_structure_set_name (structure, "video/x-raw-yuv");
102     gst_structure_remove_field (structure, "format");
103     gst_structure_remove_field (structure, "endianness");
104     gst_structure_remove_field (structure, "depth");
105     gst_structure_remove_field (structure, "bpp");
106     gst_structure_remove_field (structure, "red_mask");
107     gst_structure_remove_field (structure, "green_mask");
108     gst_structure_remove_field (structure, "blue_mask");
109     gst_structure_remove_field (structure, "alpha_mask");
110     gst_structure_remove_field (structure, "palette_data");
111   }
112
113   gst_caps_do_simplify (caps);
114   rgbcaps = gst_caps_copy (caps);
115
116   for (i = 0; i < gst_caps_get_size (rgbcaps); i++) {
117     structure = gst_caps_get_structure (rgbcaps, i);
118
119     gst_structure_set_name (structure, "video/x-raw-rgb");
120   }
121   graycaps = gst_caps_copy (caps);
122
123   for (i = 0; i < gst_caps_get_size (graycaps); i++) {
124     structure = gst_caps_get_structure (graycaps, i);
125
126     gst_structure_set_name (structure, "video/x-raw-gray");
127   }
128
129   gst_caps_append (caps, graycaps);
130   gst_caps_append (caps, rgbcaps);
131
132   return caps;
133 }
134
135 /* The caps can be transformed into any other caps with format info removed.
136  * However, we should prefer passthrough, so if passthrough is possible,
137  * put it first in the list. */
138 static GstCaps *
139 gst_ffmpegcsp_transform_caps (GstBaseTransform * btrans,
140     GstPadDirection direction, GstCaps * caps)
141 {
142   GstFFMpegCsp *space;
143   GstCaps *template;
144   GstCaps *result;
145
146   space = GST_FFMPEGCSP (btrans);
147
148   template = gst_ffmpegcsp_codectype_to_caps (CODEC_TYPE_VIDEO, NULL);
149   result = gst_caps_intersect (caps, template);
150   gst_caps_unref (template);
151
152   gst_caps_append (result, gst_ffmpegcsp_caps_remove_format_info (caps));
153
154   GST_DEBUG_OBJECT (btrans, "transformed %" GST_PTR_FORMAT " into %"
155       GST_PTR_FORMAT, caps, result);
156
157   return result;
158 }
159
160 static gboolean
161 gst_ffmpegcsp_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
162     GstCaps * outcaps)
163 {
164   GstFFMpegCsp *space;
165   GstStructure *structure;
166   gint in_height, in_width;
167   gint out_height, out_width;
168   const GValue *in_framerate = NULL;
169   const GValue *out_framerate = NULL;
170   const GValue *in_par = NULL;
171   const GValue *out_par = NULL;
172   AVCodecContext *ctx;
173   gboolean res;
174
175   space = GST_FFMPEGCSP (btrans);
176
177   /* parse in and output values */
178   structure = gst_caps_get_structure (incaps, 0);
179
180   /* we have to have width and height */
181   res = gst_structure_get_int (structure, "width", &in_width);
182   res &= gst_structure_get_int (structure, "height", &in_height);
183   if (!res)
184     goto no_width_height;
185
186   /* and framerate */
187   in_framerate = gst_structure_get_value (structure, "framerate");
188   if (in_framerate == NULL || !GST_VALUE_HOLDS_FRACTION (in_framerate))
189     goto no_framerate;
190
191   /* this is optional */
192   in_par = gst_structure_get_value (structure, "pixel-aspect-ratio");
193
194   structure = gst_caps_get_structure (outcaps, 0);
195
196   /* we have to have width and height */
197   res = gst_structure_get_int (structure, "width", &out_width);
198   res &= gst_structure_get_int (structure, "height", &out_height);
199   if (!res)
200     goto no_width_height;
201
202   /* and framerate */
203   out_framerate = gst_structure_get_value (structure, "framerate");
204   if (out_framerate == NULL || !GST_VALUE_HOLDS_FRACTION (out_framerate))
205     goto no_framerate;
206
207   /* this is optional */
208   out_par = gst_structure_get_value (structure, "pixel-aspect-ratio");
209
210   /* these must match */
211   if (in_width != out_width || in_height != out_height ||
212       gst_value_compare (in_framerate, out_framerate) != GST_VALUE_EQUAL)
213     goto format_mismatch;
214
215   /* if present, these must match too */
216   if (in_par && out_par
217       && gst_value_compare (in_par, out_par) != GST_VALUE_EQUAL)
218     goto format_mismatch;
219
220   ctx = avcodec_alloc_context ();
221
222   space->width = ctx->width = in_width;
223   space->height = ctx->height = in_height;
224
225   /* get from format */
226   ctx->pix_fmt = PIX_FMT_NB;
227   gst_ffmpegcsp_caps_with_codectype (CODEC_TYPE_VIDEO, incaps, ctx);
228   if (ctx->pix_fmt == PIX_FMT_NB)
229     goto invalid_in_caps;
230   space->from_pixfmt = ctx->pix_fmt;
231
232   /* palette, only for from data */
233   if (space->palette)
234     av_free (space->palette);
235   space->palette = ctx->palctrl;
236   ctx->palctrl = NULL;
237
238   /* get to format */
239   ctx->pix_fmt = PIX_FMT_NB;
240   gst_ffmpegcsp_caps_with_codectype (CODEC_TYPE_VIDEO, outcaps, ctx);
241   if (ctx->pix_fmt == PIX_FMT_NB)
242     goto invalid_out_caps;
243   space->to_pixfmt = ctx->pix_fmt;
244
245   GST_DEBUG ("reconfigured %d %d", space->from_pixfmt, space->to_pixfmt);
246
247   av_free (ctx);
248
249   return TRUE;
250
251   /* ERRORS */
252 no_width_height:
253   {
254     GST_DEBUG_OBJECT (space, "did not specify width or height");
255     space->from_pixfmt = PIX_FMT_NB;
256     space->to_pixfmt = PIX_FMT_NB;
257     return FALSE;
258   }
259 no_framerate:
260   {
261     GST_DEBUG_OBJECT (space, "did not specify framerate");
262     space->from_pixfmt = PIX_FMT_NB;
263     space->to_pixfmt = PIX_FMT_NB;
264     return FALSE;
265   }
266 format_mismatch:
267   {
268     GST_DEBUG_OBJECT (space, "input and output formats do not match");
269     space->from_pixfmt = PIX_FMT_NB;
270     space->to_pixfmt = PIX_FMT_NB;
271     return FALSE;
272   }
273 invalid_in_caps:
274   {
275     GST_DEBUG_OBJECT (space, "could not configure context for input format");
276     av_free (ctx);
277     space->from_pixfmt = PIX_FMT_NB;
278     space->to_pixfmt = PIX_FMT_NB;
279     return FALSE;
280   }
281 invalid_out_caps:
282   {
283     GST_DEBUG_OBJECT (space, "could not configure context for output format");
284     av_free (ctx);
285     space->from_pixfmt = PIX_FMT_NB;
286     space->to_pixfmt = PIX_FMT_NB;
287     return FALSE;
288   }
289 }
290
291 static GType
292 gst_ffmpegcsp_get_type (void)
293 {
294   static GType ffmpegcsp_type = 0;
295
296   if (!ffmpegcsp_type) {
297     static const GTypeInfo ffmpegcsp_info = {
298       sizeof (GstFFMpegCspClass),
299       (GBaseInitFunc) gst_ffmpegcsp_base_init,
300       NULL,
301       (GClassInitFunc) gst_ffmpegcsp_class_init,
302       NULL,
303       NULL,
304       sizeof (GstFFMpegCsp),
305       0,
306       (GInstanceInitFunc) gst_ffmpegcsp_init,
307     };
308
309     ffmpegcsp_type = g_type_register_static (GST_TYPE_BASE_TRANSFORM,
310         "GstFFMpegCsp", &ffmpegcsp_info, 0);
311   }
312
313   return ffmpegcsp_type;
314 }
315
316 static void
317 gst_ffmpegcsp_base_init (GstFFMpegCspClass * klass)
318 {
319   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
320
321   gst_element_class_add_pad_template (element_class, srctempl);
322   gst_element_class_add_pad_template (element_class, sinktempl);
323   gst_element_class_set_details (element_class, &ffmpegcsp_details);
324 }
325
326 static void
327 gst_ffmpegcsp_finalize (GObject * obj)
328 {
329   GstFFMpegCsp *space = GST_FFMPEGCSP (obj);
330
331   if (space->palette)
332     av_free (space->palette);
333
334   G_OBJECT_CLASS (parent_class)->finalize (obj);
335 }
336
337 static void
338 gst_ffmpegcsp_class_init (GstFFMpegCspClass * klass)
339 {
340   GObjectClass *gobject_class;
341   GstElementClass *gstelement_class;
342   GstBaseTransformClass *gstbasetransform_class;
343
344   gobject_class = (GObjectClass *) klass;
345   gstelement_class = (GstElementClass *) klass;
346   gstbasetransform_class = (GstBaseTransformClass *) klass;
347
348   parent_class = g_type_class_peek_parent (klass);
349
350   gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_ffmpegcsp_finalize);
351
352   gstbasetransform_class->transform_caps =
353       GST_DEBUG_FUNCPTR (gst_ffmpegcsp_transform_caps);
354   gstbasetransform_class->set_caps = GST_DEBUG_FUNCPTR (gst_ffmpegcsp_set_caps);
355   gstbasetransform_class->get_unit_size =
356       GST_DEBUG_FUNCPTR (gst_ffmpegcsp_get_unit_size);
357   gstbasetransform_class->transform =
358       GST_DEBUG_FUNCPTR (gst_ffmpegcsp_transform);
359 #if 0
360   gstbasetransform_class->transform_ip =
361       GST_DEBUG_FUNCPTR (gst_ffmpegcsp_transform_ip);
362 #endif
363
364   gstbasetransform_class->passthrough_on_same_caps = TRUE;
365
366   GST_DEBUG_CATEGORY_INIT (ffmpegcolorspace_debug, "ffmpegcolorspace", 0,
367       "FFMPEG-based colorspace converter");
368 }
369
370 static void
371 gst_ffmpegcsp_init (GstFFMpegCsp * space)
372 {
373   gst_base_transform_set_qos_enabled (GST_BASE_TRANSFORM (space), TRUE);
374   space->from_pixfmt = space->to_pixfmt = PIX_FMT_NB;
375   space->palette = NULL;
376 }
377
378 static gboolean
379 gst_ffmpegcsp_get_unit_size (GstBaseTransform * btrans, GstCaps * caps,
380     guint * size)
381 {
382   GstFFMpegCsp *space = NULL;
383   GstStructure *structure = NULL;
384   AVCodecContext *ctx = NULL;
385   gint width, height;
386
387   g_return_val_if_fail (size, FALSE);
388
389   space = GST_FFMPEGCSP (btrans);
390
391   structure = gst_caps_get_structure (caps, 0);
392   gst_structure_get_int (structure, "width", &width);
393   gst_structure_get_int (structure, "height", &height);
394
395   ctx = avcodec_alloc_context ();
396
397   g_assert (ctx != NULL);
398
399   gst_ffmpegcsp_caps_with_codectype (CODEC_TYPE_VIDEO, caps, ctx);
400
401   *size = avpicture_get_size (ctx->pix_fmt, width, height);
402
403   /* ffmpeg frames have the palette after the frame data, whereas
404    * GStreamer currently puts it into the caps as 'palette_data' field,
405    * so for paletted data the frame size avpicture_get_size() returns is
406    * 1024 bytes larger than what GStreamer expects. */
407   if (gst_structure_has_field (structure, "palette_data")) {
408     *size -= 4 * 256;           /* = AVPALETTE_SIZE */
409   }
410
411   if (ctx->palctrl)
412     av_free (ctx->palctrl);
413   av_free (ctx);
414
415   return TRUE;
416 }
417
418 #if 0
419 /* FIXME: Could use transform_ip to implement endianness swap type operations */
420 static GstFlowReturn
421 gst_ffmpegcsp_transform_ip (GstBaseTransform * btrans, GstBuffer * inbuf)
422 {
423   /* do nothing */
424   return GST_FLOW_OK;
425 }
426 #endif
427
428 static GstFlowReturn
429 gst_ffmpegcsp_transform (GstBaseTransform * btrans, GstBuffer * inbuf,
430     GstBuffer * outbuf)
431 {
432   GstFFMpegCsp *space;
433   gint result;
434
435   space = GST_FFMPEGCSP (btrans);
436
437   GST_DEBUG ("from %d -> to %d", space->from_pixfmt, space->to_pixfmt);
438   if (space->from_pixfmt == PIX_FMT_NB || space->to_pixfmt == PIX_FMT_NB)
439     goto unknown_format;
440
441   /* fill from with source data */
442   gst_ffmpegcsp_avpicture_fill (&space->from_frame,
443       GST_BUFFER_DATA (inbuf), space->from_pixfmt, space->width, space->height);
444
445   /* fill optional palette */
446   if (space->palette)
447     space->from_frame.data[1] = (uint8_t *) space->palette->palette;
448
449   /* fill target frame */
450   gst_ffmpegcsp_avpicture_fill (&space->to_frame,
451       GST_BUFFER_DATA (outbuf), space->to_pixfmt, space->width, space->height);
452
453   /* and convert */
454   result = img_convert (&space->to_frame, space->to_pixfmt,
455       &space->from_frame, space->from_pixfmt, space->width, space->height);
456   if (result == -1)
457     goto not_supported;
458
459   /* copy timestamps */
460   gst_buffer_stamp (outbuf, inbuf);
461   GST_DEBUG ("from %d -> to %d done", space->from_pixfmt, space->to_pixfmt);
462
463   return GST_FLOW_OK;
464
465   /* ERRORS */
466 unknown_format:
467   {
468     GST_ELEMENT_ERROR (space, CORE, NOT_IMPLEMENTED, (NULL),
469         ("attempting to convert colorspaces between unknown formats"));
470     return GST_FLOW_NOT_NEGOTIATED;
471   }
472 not_supported:
473   {
474     GST_ELEMENT_ERROR (space, CORE, NOT_IMPLEMENTED, (NULL),
475         ("cannot convert between formats"));
476     return GST_FLOW_NOT_SUPPORTED;
477   }
478 }
479
480 gboolean
481 gst_ffmpegcolorspace_register (GstPlugin * plugin)
482 {
483   GstCaps *caps;
484
485   /* template caps */
486   caps = gst_ffmpegcsp_codectype_to_caps (CODEC_TYPE_VIDEO, NULL);
487
488   /* build templates */
489   srctempl = gst_pad_template_new ("src",
490       GST_PAD_SRC, GST_PAD_ALWAYS, gst_caps_copy (caps));
491
492   /* the sink template will do palette handling as well... */
493   sinktempl = gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, caps);
494
495   return gst_element_register (plugin, "ffmpegcolorspace",
496       GST_RANK_NONE, GST_TYPE_FFMPEGCSP);
497 }