1 /* GStreamer Intel MSDK plugin
2 * Copyright (c) 2016, Intel Corporation
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 *
11 * 2. Redistributions in binary form must reproduce the above copyright notice,
12 * this list of conditions and the following disclaimer in the documentation
13 * and/or other materials provided with the distribution.
14 *
15 * 3. Neither the name of the copyright holder nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGDECE
28 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 /**
33 * SECTION: element-msdkh264dec
34 * @title: msdkh264dec
35 * @short_description: Intel MSDK H264 decoder
36 *
37 * H264 video decoder based on Intel MFX
38 *
39 * ## Example launch line
40 * ```
41 * gst-launch-1.0 filesrc location=sample.h264 ! h264parse ! msdkh264dec ! glimagesink
42 * ```
43 *
44 * Since: 1.12
45 *
46 */
47
48 #ifdef HAVE_CONFIG_H
49 # include <config.h>
50 #endif
51
52 #include "gstmsdkh264dec.h"
53
54 GST_DEBUG_CATEGORY_EXTERN (gst_msdkh264dec_debug);
55 #define GST_CAT_DEFAULT gst_msdkh264dec_debug
56
57 static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
58 GST_PAD_SINK,
59 GST_PAD_ALWAYS,
60 GST_STATIC_CAPS ("video/x-h264, "
61 "width = (int) [ 1, MAX ], height = (int) [ 1, MAX ], "
62 "stream-format = (string) byte-stream , alignment = (string) au , "
63 "profile = (string) { high, progressive-high, constrained-high, main, baseline, constrained-baseline }")
64 );
65
66 #define gst_msdkh264dec_parent_class parent_class
67 G_DEFINE_TYPE (GstMsdkH264Dec, gst_msdkh264dec, GST_TYPE_MSDKDEC);
68
69 static gboolean
gst_msdkh264dec_configure(GstMsdkDec * decoder)70 gst_msdkh264dec_configure (GstMsdkDec * decoder)
71 {
72 GstMsdkH264Dec *h264dec = GST_MSDKH264DEC (decoder);
73
74 decoder->param.mfx.CodecId = MFX_CODEC_AVC;
75
76 /* This is a deprecated attribute in msdk-2017 version, but some
77 * customers still using this for low-latency streaming of non-b-frame
78 * encoded streams */
79 decoder->param.mfx.DecodedOrder = h264dec->output_order;
80
81 #if (MFX_VERSION >= 1025)
82 if (decoder->report_error) {
83 decoder->error_report.Header.BufferId = MFX_EXTBUFF_DECODE_ERROR_REPORT;
84 decoder->error_report.Header.BufferSz = sizeof (decoder->error_report);
85 decoder->error_report.ErrorTypes = 0;
86 gst_msdkdec_add_bs_extra_param (decoder,
87 (mfxExtBuffer *) & decoder->error_report);
88 }
89 #endif
90
91 return TRUE;
92 }
93
94 static void
gst_msdkdec_h264_set_property(GObject * object,guint prop_id,const GValue * value,GParamSpec * pspec)95 gst_msdkdec_h264_set_property (GObject * object, guint prop_id,
96 const GValue * value, GParamSpec * pspec)
97 {
98 GstMsdkH264Dec *thiz = GST_MSDKH264DEC (object);
99 #if (MFX_VERSION >= 1025)
100 GstMsdkDec *dec = GST_MSDKDEC (object);
101 #endif
102 GstState state;
103
104 GST_OBJECT_LOCK (thiz);
105 state = GST_STATE (thiz);
106
107 if (!gst_msdkdec_prop_check_state (state, pspec)) {
108 GST_WARNING_OBJECT (thiz, "setting property in wrong state");
109 GST_OBJECT_UNLOCK (thiz);
110 return;
111 }
112 switch (prop_id) {
113 case GST_MSDKDEC_PROP_OUTPUT_ORDER:
114 thiz->output_order = g_value_get_enum (value);
115 break;
116 #if (MFX_VERSION >= 1025)
117 case GST_MSDKDEC_PROP_ERROR_REPORT:
118 dec->report_error = g_value_get_boolean (value);
119 break;
120 #endif
121 default:
122 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
123 break;
124 }
125 GST_OBJECT_UNLOCK (thiz);
126 return;
127 }
128
129 static void
gst_msdkdec_h264_get_property(GObject * object,guint prop_id,GValue * value,GParamSpec * pspec)130 gst_msdkdec_h264_get_property (GObject * object, guint prop_id, GValue * value,
131 GParamSpec * pspec)
132 {
133 GstMsdkH264Dec *thiz = GST_MSDKH264DEC (object);
134 #if (MFX_VERSION >= 1025)
135 GstMsdkDec *dec = GST_MSDKDEC (object);
136 #endif
137
138 GST_OBJECT_LOCK (thiz);
139 switch (prop_id) {
140 case GST_MSDKDEC_PROP_OUTPUT_ORDER:
141 g_value_set_enum (value, thiz->output_order);
142 break;
143 #if (MFX_VERSION >= 1025)
144 case GST_MSDKDEC_PROP_ERROR_REPORT:
145 g_value_set_boolean (value, dec->report_error);
146 break;
147 #endif
148 default:
149 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
150 break;
151 }
152 GST_OBJECT_UNLOCK (thiz);
153 }
154
155 static void
gst_msdkh264dec_class_init(GstMsdkH264DecClass * klass)156 gst_msdkh264dec_class_init (GstMsdkH264DecClass * klass)
157 {
158 GObjectClass *gobject_class;
159 GstElementClass *element_class;
160 GstMsdkDecClass *decoder_class;
161
162 gobject_class = G_OBJECT_CLASS (klass);
163 element_class = GST_ELEMENT_CLASS (klass);
164 decoder_class = GST_MSDKDEC_CLASS (klass);
165
166 gobject_class->set_property = gst_msdkdec_h264_set_property;
167 gobject_class->get_property = gst_msdkdec_h264_get_property;
168
169 decoder_class->configure = GST_DEBUG_FUNCPTR (gst_msdkh264dec_configure);
170
171 gst_element_class_set_static_metadata (element_class,
172 "Intel MSDK H264 decoder",
173 "Codec/Decoder/Video/Hardware",
174 "H264 video decoder based on " MFX_API_SDK,
175 "Scott D Phillips <scott.d.phillips@intel.com>");
176
177 gst_msdkdec_prop_install_output_oder_property (gobject_class);
178
179 #if (MFX_VERSION >= 1025)
180 gst_msdkdec_prop_install_error_report_property (gobject_class);
181 #endif
182
183 gst_element_class_add_static_pad_template (element_class, &sink_factory);
184 }
185
186 static void
gst_msdkh264dec_init(GstMsdkH264Dec * thiz)187 gst_msdkh264dec_init (GstMsdkH264Dec * thiz)
188 {
189 thiz->output_order = PROP_OUTPUT_ORDER_DEFAULT;
190 }
191