omxvideoenc: drain encoder on ALLOCATION and DRAIN queries
[platform/upstream/gstreamer.git] / omx / gstomxwmvdec.c
1 /*
2  * Copyright (C) 2011, Hewlett-Packard Development Company, L.P.
3  *   Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>, Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation
8  * version 2.1 of the License.
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  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24
25 #include <gst/gst.h>
26
27 #include "gstomxwmvdec.h"
28
29 GST_DEBUG_CATEGORY_STATIC (gst_omx_wmv_dec_debug_category);
30 #define GST_CAT_DEFAULT gst_omx_wmv_dec_debug_category
31
32 /* prototypes */
33 static gboolean gst_omx_wmv_dec_is_format_change (GstOMXVideoDec * dec,
34     GstOMXPort * port, GstVideoCodecState * state);
35 static gboolean gst_omx_wmv_dec_set_format (GstOMXVideoDec * dec,
36     GstOMXPort * port, GstVideoCodecState * state);
37
38 enum
39 {
40   PROP_0
41 };
42
43 /* class initialization */
44
45 #define DEBUG_INIT \
46   GST_DEBUG_CATEGORY_INIT (gst_omx_wmv_dec_debug_category, "omxwmvdec", 0, \
47       "debug category for gst-omx video decoder base class");
48
49 G_DEFINE_TYPE_WITH_CODE (GstOMXWMVDec, gst_omx_wmv_dec,
50     GST_TYPE_OMX_VIDEO_DEC, DEBUG_INIT);
51
52 static void
53 gst_omx_wmv_dec_class_init (GstOMXWMVDecClass * klass)
54 {
55   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
56   GstOMXVideoDecClass *videodec_class = GST_OMX_VIDEO_DEC_CLASS (klass);
57
58   videodec_class->is_format_change =
59       GST_DEBUG_FUNCPTR (gst_omx_wmv_dec_is_format_change);
60   videodec_class->set_format = GST_DEBUG_FUNCPTR (gst_omx_wmv_dec_set_format);
61
62   videodec_class->cdata.default_sink_template_caps = "video/x-wmv, "
63       "width=(int) [1,MAX], " "height=(int) [1,MAX]";
64
65   gst_element_class_set_static_metadata (element_class,
66       "OpenMAX WMV Video Decoder",
67       "Codec/Decoder/Video/Hardware",
68       "Decode WMV video streams",
69       "Sebastian Dröge <sebastian.droege@collabora.co.uk>");
70
71   gst_omx_set_default_role (&videodec_class->cdata, "video_decoder.wmv");
72 }
73
74 static void
75 gst_omx_wmv_dec_init (GstOMXWMVDec * self)
76 {
77 }
78
79 static gboolean
80 gst_omx_wmv_dec_is_format_change (GstOMXVideoDec * dec,
81     GstOMXPort * port, GstVideoCodecState * state)
82 {
83   return FALSE;
84 }
85
86 static gboolean
87 gst_omx_wmv_dec_set_format (GstOMXVideoDec * dec, GstOMXPort * port,
88     GstVideoCodecState * state)
89 {
90   gboolean ret;
91   OMX_PARAM_PORTDEFINITIONTYPE port_def;
92
93   gst_omx_port_get_port_definition (port, &port_def);
94   port_def.format.video.eCompressionFormat = OMX_VIDEO_CodingWMV;
95   ret = gst_omx_port_update_port_definition (port, &port_def) == OMX_ErrorNone;
96
97   return ret;
98 }