1 /* GStreamer Intel MSDK plugin
2 * Copyright (c) 2020, Intel Corporation
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
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.
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.
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.
33 * SECTION: element-msdkav1dec
35 * @short_description: Intel MSDK AV1 decoder
37 * AV1 video decoder based on Intel MFX
39 * ## Example launch line
41 * gst-launch-1.0 filesrc location=sample.ivf ! ivfparse ! msdkav1dec ! glimagesink
52 #include "gstmsdkav1dec.h"
53 #include "gstmsdkvideomemory.h"
55 GST_DEBUG_CATEGORY_EXTERN (gst_msdkav1dec_debug);
56 #define GST_CAT_DEFAULT gst_msdkav1dec_debug
58 #define COMMON_FORMAT "{ NV12, P010_10LE, VUYA, Y410 }"
60 static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
63 GST_STATIC_CAPS ("video/x-av1")
66 static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
69 GST_STATIC_CAPS (GST_MSDK_CAPS_STR (COMMON_FORMAT, COMMON_FORMAT))
72 #define gst_msdkav1dec_parent_class parent_class
73 G_DEFINE_TYPE (GstMsdkAV1Dec, gst_msdkav1dec, GST_TYPE_MSDKDEC);
76 gst_msdkav1dec_configure (GstMsdkDec * decoder)
78 decoder->param.mfx.CodecId = MFX_CODEC_AV1;
79 /* Replaced with width and height rounded up to 16 */
80 decoder->param.mfx.FrameInfo.Width =
81 GST_ROUND_UP_16 (decoder->param.mfx.FrameInfo.CropW);
82 decoder->param.mfx.FrameInfo.Height =
83 GST_ROUND_UP_16 (decoder->param.mfx.FrameInfo.CropH);
85 decoder->force_reset_on_res_change = FALSE;
91 gst_msdkav1dec_preinit_decoder (GstMsdkDec * decoder)
93 decoder->param.mfx.FrameInfo.Width =
94 GST_ROUND_UP_16 (decoder->param.mfx.FrameInfo.Width);
95 decoder->param.mfx.FrameInfo.Height =
96 GST_ROUND_UP_16 (decoder->param.mfx.FrameInfo.Height);
98 decoder->param.mfx.FrameInfo.PicStruct =
99 decoder->param.mfx.FrameInfo.PicStruct ? decoder->param.mfx.
100 FrameInfo.PicStruct : MFX_PICSTRUCT_PROGRESSIVE;
106 gst_msdkav1dec_class_init (GstMsdkAV1DecClass * klass)
108 GstElementClass *element_class;
109 GstMsdkDecClass *decoder_class;
111 element_class = GST_ELEMENT_CLASS (klass);
112 decoder_class = GST_MSDKDEC_CLASS (klass);
114 decoder_class->configure = GST_DEBUG_FUNCPTR (gst_msdkav1dec_configure);
115 decoder_class->preinit_decoder =
116 GST_DEBUG_FUNCPTR (gst_msdkav1dec_preinit_decoder);
118 gst_element_class_set_static_metadata (element_class,
119 "Intel MSDK AV1 decoder",
120 "Codec/Decoder/Video/Hardware",
121 "AV1 video decoder based on " MFX_API_SDK,
122 "Haihao Xiang <haihao.xiang@intel.com>");
124 gst_element_class_add_static_pad_template (element_class, &sink_factory);
125 gst_element_class_add_static_pad_template (element_class, &src_factory);
129 gst_msdkav1dec_init (GstMsdkAV1Dec * thiz)