Release 1.12.0
[platform/upstream/gst-plugins-good.git] / ext / vpx / gstvp8dec.c
1 /* VP8
2  * Copyright (C) 2006 David Schleef <ds@schleef.org>
3  * Copyright (C) 2008,2009,2010 Entropy Wave Inc
4  * Copyright (C) 2010-2012 Sebastian Dröge <sebastian.droege@collabora.co.uk>
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., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  */
22 /**
23  * SECTION:element-vp8dec
24  * @see_also: vp8enc, matroskademux
25  *
26  * This element decodes VP8 streams into raw video.
27  * <ulink url="http://www.webmproject.org">VP8</ulink> is a royalty-free
28  * video codec maintained by <ulink url="http://www.google.com/">Google
29  * </ulink>. It's the successor of On2 VP3, which was the base of the
30  * Theora video codec.
31  *
32  * <refsect2>
33  * <title>Example pipeline</title>
34  * |[
35  * gst-launch-1.0 -v filesrc location=videotestsrc.webm ! matroskademux ! vp8dec ! videoconvert ! videoscale ! autovideosink
36  * ]| This example pipeline will decode a WebM stream and decodes the VP8 video.
37  * </refsect2>
38  */
39
40 #ifdef HAVE_CONFIG_H
41 #include "config.h"
42 #endif
43
44 #ifdef HAVE_VP8_DECODER
45
46 #include <string.h>
47
48 #include "gstvp8dec.h"
49 #include "gstvp8utils.h"
50
51 #include <gst/video/gstvideometa.h>
52 #include <gst/video/gstvideopool.h>
53
54 GST_DEBUG_CATEGORY_STATIC (gst_vp8dec_debug);
55 #define GST_CAT_DEFAULT gst_vp8dec_debug
56
57 #define VP8_DECODER_VIDEO_TAG "VP8 video"
58
59 static void gst_vp8_dec_set_default_format (GstVPXDec * dec, GstVideoFormat fmt,
60     int width, int height);
61 static void gst_vp8_dec_handle_resolution_change (GstVPXDec * dec,
62     vpx_image_t * img, GstVideoFormat fmt);
63
64 static GstStaticPadTemplate gst_vp8_dec_sink_template =
65 GST_STATIC_PAD_TEMPLATE ("sink",
66     GST_PAD_SINK,
67     GST_PAD_ALWAYS,
68     GST_STATIC_CAPS ("video/x-vp8")
69     );
70
71 static GstStaticPadTemplate gst_vp8_dec_src_template =
72 GST_STATIC_PAD_TEMPLATE ("src",
73     GST_PAD_SRC,
74     GST_PAD_ALWAYS,
75     GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("I420"))
76     );
77
78 #define parent_class gst_vp8_dec_parent_class
79 G_DEFINE_TYPE (GstVP8Dec, gst_vp8_dec, GST_TYPE_VPX_DEC);
80
81 static void
82 gst_vp8_dec_class_init (GstVP8DecClass * klass)
83 {
84   GstElementClass *element_class;
85   GstVPXDecClass *vpx_class;
86
87   element_class = GST_ELEMENT_CLASS (klass);
88   vpx_class = GST_VPX_DEC_CLASS (klass);
89
90   gst_element_class_add_static_pad_template (element_class,
91       &gst_vp8_dec_sink_template);
92   gst_element_class_add_static_pad_template (element_class,
93       &gst_vp8_dec_src_template);
94
95   gst_element_class_set_static_metadata (element_class,
96       "On2 VP8 Decoder",
97       "Codec/Decoder/Video",
98       "Decode VP8 video streams", "David Schleef <ds@entropywave.com>, "
99       "Sebastian Dröge <sebastian.droege@collabora.co.uk>");
100
101   vpx_class->video_codec_tag = VP8_DECODER_VIDEO_TAG;
102   vpx_class->codec_algo = &vpx_codec_vp8_dx_algo;
103   vpx_class->set_default_format =
104       GST_DEBUG_FUNCPTR (gst_vp8_dec_set_default_format);
105   vpx_class->handle_resolution_change =
106       GST_DEBUG_FUNCPTR (gst_vp8_dec_handle_resolution_change);
107
108   GST_DEBUG_CATEGORY_INIT (gst_vp8dec_debug, "vp8dec", 0, "VP8 Decoder");
109 }
110
111 static void
112 gst_vp8_dec_init (GstVP8Dec * gst_vp8_dec)
113 {
114   GST_DEBUG_OBJECT (gst_vp8_dec, "gst_vp8_dec_init");
115 }
116
117 static void
118 gst_vp8_dec_set_default_format (GstVPXDec * dec, GstVideoFormat fmt, int width,
119     int height)
120 {
121   GstVPXDecClass *vpxclass = GST_VPX_DEC_GET_CLASS (dec);
122   g_assert (dec->output_state == NULL);
123   dec->output_state =
124       gst_video_decoder_set_output_state (GST_VIDEO_DECODER (dec),
125       GST_VIDEO_FORMAT_I420, width, height, dec->input_state);
126   gst_video_decoder_negotiate (GST_VIDEO_DECODER (dec));
127   vpxclass->send_tags (dec);
128 }
129
130 static void
131 gst_vp8_dec_handle_resolution_change (GstVPXDec * dec, vpx_image_t * img,
132     GstVideoFormat fmt)
133 {
134   GstVideoInfo *info;
135   GstVideoCodecState *new_output_state;
136
137   info = &dec->output_state->info;
138   if (GST_VIDEO_INFO_WIDTH (info) != img->d_w
139       || GST_VIDEO_INFO_HEIGHT (info) != img->d_h) {
140     GST_DEBUG_OBJECT (dec,
141         "Changed output resolution was %d x %d now is got %u x %u (display %u x %u)",
142         GST_VIDEO_INFO_WIDTH (info), GST_VIDEO_INFO_HEIGHT (info), img->w,
143         img->h, img->d_w, img->d_h);
144
145     new_output_state =
146         gst_video_decoder_set_output_state (GST_VIDEO_DECODER (dec),
147         GST_VIDEO_FORMAT_I420, img->d_w, img->d_h, dec->output_state);
148     if (dec->output_state) {
149       gst_video_codec_state_unref (dec->output_state);
150     }
151     dec->output_state = new_output_state;
152     /* No need to call negotiate() here, it will be automatically called
153      * by allocate_output_frame()*/
154   }
155 }
156
157 #endif /* HAVE_VP8_DECODER */