2016-04-01 17:25:25 +00:00
|
|
|
/* GStreamer Intel MSDK plugin
|
|
|
|
* Copyright (c) 2016, Oblong Industries, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
|
|
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
2017-10-30 16:17:40 +00:00
|
|
|
|
2018-11-27 07:55:51 +00:00
|
|
|
#include <gst/allocators/gstdmabuf.h>
|
|
|
|
|
2016-04-01 17:25:25 +00:00
|
|
|
#include "gstmsdkh265enc.h"
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_EXTERN (gst_msdkh265enc_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_msdkh265enc_debug
|
|
|
|
|
2019-01-16 02:44:21 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_LOW_POWER = GST_MSDKENC_PROP_MAX,
|
2019-10-24 07:26:33 +00:00
|
|
|
PROP_TILE_ROW,
|
|
|
|
PROP_TILE_COL,
|
2019-01-16 02:44:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define PROP_LOWPOWER_DEFAULT FALSE
|
2019-10-24 07:26:33 +00:00
|
|
|
#define PROP_TILE_ROW_DEFAULT 1
|
|
|
|
#define PROP_TILE_COL_DEFAULT 1
|
2019-01-16 02:44:21 +00:00
|
|
|
|
2019-10-01 09:00:02 +00:00
|
|
|
#define RAW_FORMATS "NV12, I420, YV12, YUY2, UYVY, BGRA, P010_10LE, VUYA"
|
|
|
|
|
|
|
|
#if (MFX_VERSION >= 1027)
|
|
|
|
#define COMMON_FORMAT "{ " RAW_FORMATS ", Y410 }"
|
|
|
|
#else
|
|
|
|
#define COMMON_FORMAT "{ " RAW_FORMATS " }"
|
|
|
|
#endif
|
2019-08-26 05:54:13 +00:00
|
|
|
|
2018-11-27 07:55:51 +00:00
|
|
|
static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2019-10-18 04:26:26 +00:00
|
|
|
GST_STATIC_CAPS (GST_MSDK_CAPS_STR (COMMON_FORMAT,
|
|
|
|
"{ NV12, P010_10LE }")));
|
2018-11-27 07:55:51 +00:00
|
|
|
|
2016-04-01 17:25:25 +00:00
|
|
|
static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("video/x-h265, "
|
|
|
|
"framerate = (fraction) [0/1, MAX], "
|
|
|
|
"width = (int) [ 1, MAX ], height = (int) [ 1, MAX ], "
|
|
|
|
"stream-format = (string) byte-stream , alignment = (string) au , "
|
2019-10-08 01:40:06 +00:00
|
|
|
"profile = (string) { main, main-10, main-444, main-444-10 } ")
|
2016-04-01 17:25:25 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
#define gst_msdkh265enc_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE (GstMsdkH265Enc, gst_msdkh265enc, GST_TYPE_MSDKENC);
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_msdkh265enc_set_format (GstMsdkEnc * encoder)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_msdkh265enc_configure (GstMsdkEnc * encoder)
|
|
|
|
{
|
2016-09-27 21:21:34 +00:00
|
|
|
GstMsdkH265Enc *h265enc = GST_MSDKH265ENC (encoder);
|
|
|
|
mfxSession session;
|
|
|
|
const mfxPluginUID *uid;
|
|
|
|
|
2018-02-13 21:41:28 +00:00
|
|
|
session = gst_msdk_context_get_session (encoder->context);
|
2016-09-27 21:21:34 +00:00
|
|
|
|
|
|
|
if (encoder->hardware)
|
|
|
|
uid = &MFX_PLUGINID_HEVCE_HW;
|
|
|
|
else
|
|
|
|
uid = &MFX_PLUGINID_HEVCE_SW;
|
|
|
|
|
2019-11-07 07:54:47 +00:00
|
|
|
if (!gst_msdk_load_plugin (session, uid, 1, "msdkh265enc"))
|
2016-09-27 21:21:34 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2016-04-01 17:25:25 +00:00
|
|
|
encoder->param.mfx.CodecId = MFX_CODEC_HEVC;
|
2018-11-27 07:56:03 +00:00
|
|
|
|
2019-09-30 00:57:42 +00:00
|
|
|
switch (encoder->param.mfx.FrameInfo.FourCC) {
|
|
|
|
case MFX_FOURCC_P010:
|
|
|
|
encoder->param.mfx.CodecProfile = MFX_PROFILE_HEVC_MAIN10;
|
|
|
|
break;
|
2019-09-30 01:48:26 +00:00
|
|
|
case MFX_FOURCC_AYUV:
|
2019-10-01 09:00:02 +00:00
|
|
|
#if (MFX_VERSION >= 1027)
|
2019-09-30 02:13:56 +00:00
|
|
|
case MFX_FOURCC_Y410:
|
2019-10-01 09:00:02 +00:00
|
|
|
#endif
|
2019-09-30 01:48:26 +00:00
|
|
|
encoder->param.mfx.CodecProfile = MFX_PROFILE_HEVC_REXT;
|
|
|
|
break;
|
2019-09-30 00:57:42 +00:00
|
|
|
default:
|
|
|
|
encoder->param.mfx.CodecProfile = MFX_PROFILE_HEVC_MAIN;
|
|
|
|
}
|
2016-04-01 17:25:25 +00:00
|
|
|
|
2018-02-14 14:29:57 +00:00
|
|
|
/* IdrInterval field of MediaSDK HEVC encoder behaves differently
|
|
|
|
* than other encoders. IdrInteval == 1 indicate every
|
|
|
|
* I-frame should be an IDR, IdrInteval == 2 means every other
|
|
|
|
* I-frame is an IDR etc. So we generalize the behaviour of property
|
|
|
|
* "i-frames" by incrementing the value by one in each case*/
|
|
|
|
encoder->param.mfx.IdrInterval += 1;
|
|
|
|
|
2018-03-29 19:56:19 +00:00
|
|
|
/* Enable Extended coding options */
|
|
|
|
gst_msdkenc_ensure_extended_coding_options (encoder);
|
|
|
|
|
2019-10-24 07:26:33 +00:00
|
|
|
if (h265enc->num_tile_rows > 1 || h265enc->num_tile_cols > 1) {
|
|
|
|
h265enc->ext_tiles.Header.BufferId = MFX_EXTBUFF_HEVC_TILES;
|
|
|
|
h265enc->ext_tiles.Header.BufferSz = sizeof (h265enc->ext_tiles);
|
|
|
|
h265enc->ext_tiles.NumTileRows = h265enc->num_tile_rows;
|
|
|
|
h265enc->ext_tiles.NumTileColumns = h265enc->num_tile_cols;
|
|
|
|
|
|
|
|
gst_msdkenc_add_extra_param (encoder,
|
|
|
|
(mfxExtBuffer *) & h265enc->ext_tiles);
|
|
|
|
|
|
|
|
/* Set a valid value to NumSlice */
|
|
|
|
if (encoder->param.mfx.NumSlice == 0)
|
|
|
|
encoder->param.mfx.NumSlice =
|
|
|
|
h265enc->num_tile_rows * h265enc->num_tile_cols;
|
|
|
|
}
|
|
|
|
|
2019-01-16 02:44:21 +00:00
|
|
|
encoder->param.mfx.LowPower =
|
|
|
|
(h265enc->lowpower ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF);
|
|
|
|
|
2016-04-01 17:25:25 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline const gchar *
|
|
|
|
level_to_string (gint level)
|
|
|
|
{
|
|
|
|
switch (level) {
|
|
|
|
case MFX_LEVEL_HEVC_1:
|
|
|
|
return "1";
|
|
|
|
case MFX_LEVEL_HEVC_2:
|
|
|
|
return "2";
|
|
|
|
case MFX_LEVEL_HEVC_21:
|
|
|
|
return "2.1";
|
|
|
|
case MFX_LEVEL_HEVC_3:
|
|
|
|
return "3";
|
|
|
|
case MFX_LEVEL_HEVC_31:
|
|
|
|
return "3.1";
|
|
|
|
case MFX_LEVEL_HEVC_4:
|
|
|
|
return "4";
|
|
|
|
case MFX_LEVEL_HEVC_41:
|
|
|
|
return "4.1";
|
|
|
|
case MFX_LEVEL_HEVC_5:
|
|
|
|
return "5";
|
|
|
|
case MFX_LEVEL_HEVC_51:
|
|
|
|
return "5.1";
|
|
|
|
case MFX_LEVEL_HEVC_52:
|
|
|
|
return "5.2";
|
|
|
|
case MFX_LEVEL_HEVC_6:
|
|
|
|
return "6";
|
|
|
|
case MFX_LEVEL_HEVC_61:
|
|
|
|
return "6.1";
|
|
|
|
case MFX_LEVEL_HEVC_62:
|
|
|
|
return "6.2";
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps *
|
|
|
|
gst_msdkh265enc_set_src_caps (GstMsdkEnc * encoder)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
GstStructure *structure;
|
|
|
|
const gchar *level;
|
|
|
|
|
|
|
|
caps = gst_caps_new_empty_simple ("video/x-h265");
|
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
gst_structure_set (structure, "stream-format", G_TYPE_STRING, "byte-stream",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
gst_structure_set (structure, "alignment", G_TYPE_STRING, "au", NULL);
|
|
|
|
|
2019-09-30 00:57:42 +00:00
|
|
|
switch (encoder->param.mfx.FrameInfo.FourCC) {
|
|
|
|
case MFX_FOURCC_P010:
|
|
|
|
gst_structure_set (structure, "profile", G_TYPE_STRING, "main-10", NULL);
|
|
|
|
break;
|
2019-09-30 01:48:26 +00:00
|
|
|
case MFX_FOURCC_AYUV:
|
|
|
|
gst_structure_set (structure, "profile", G_TYPE_STRING, "main-444", NULL);
|
|
|
|
break;
|
2019-10-01 09:00:02 +00:00
|
|
|
#if (MFX_VERSION >= 1027)
|
2019-09-30 02:13:56 +00:00
|
|
|
case MFX_FOURCC_Y410:
|
|
|
|
gst_structure_set (structure, "profile", G_TYPE_STRING, "main-444-10",
|
|
|
|
NULL);
|
|
|
|
break;
|
2019-10-01 09:00:02 +00:00
|
|
|
#endif
|
2019-09-30 00:57:42 +00:00
|
|
|
default:
|
|
|
|
gst_structure_set (structure, "profile", G_TYPE_STRING, "main", NULL);
|
|
|
|
break;
|
|
|
|
}
|
2016-04-01 17:25:25 +00:00
|
|
|
|
|
|
|
level = level_to_string (encoder->param.mfx.CodecLevel);
|
|
|
|
if (level)
|
|
|
|
gst_structure_set (structure, "level", G_TYPE_STRING, level, NULL);
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2018-02-14 11:42:55 +00:00
|
|
|
static void
|
|
|
|
gst_msdkh265enc_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstMsdkH265Enc *thiz = GST_MSDKH265ENC (object);
|
|
|
|
|
2019-01-16 02:44:21 +00:00
|
|
|
if (gst_msdkenc_set_common_property (object, prop_id, value, pspec))
|
|
|
|
return;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (thiz);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_LOW_POWER:
|
|
|
|
thiz->lowpower = g_value_get_boolean (value);
|
|
|
|
break;
|
2019-10-24 07:26:33 +00:00
|
|
|
|
|
|
|
case PROP_TILE_ROW:
|
|
|
|
thiz->num_tile_rows = g_value_get_uint (value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_TILE_COL:
|
|
|
|
thiz->num_tile_cols = g_value_get_uint (value);
|
|
|
|
break;
|
|
|
|
|
2019-01-16 02:44:21 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (thiz);
|
2018-02-14 11:42:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_msdkh265enc_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstMsdkH265Enc *thiz = GST_MSDKH265ENC (object);
|
|
|
|
|
2019-01-16 02:44:21 +00:00
|
|
|
if (gst_msdkenc_get_common_property (object, prop_id, value, pspec))
|
|
|
|
return;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (thiz);
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_LOW_POWER:
|
|
|
|
g_value_set_boolean (value, thiz->lowpower);
|
|
|
|
break;
|
2019-10-24 07:26:33 +00:00
|
|
|
|
|
|
|
case PROP_TILE_ROW:
|
|
|
|
g_value_set_uint (value, thiz->num_tile_rows);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_TILE_COL:
|
|
|
|
g_value_set_uint (value, thiz->num_tile_cols);
|
|
|
|
break;
|
|
|
|
|
2019-01-16 02:44:21 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (thiz);
|
2018-02-14 11:42:55 +00:00
|
|
|
}
|
|
|
|
|
2019-11-27 08:00:59 +00:00
|
|
|
static gboolean
|
|
|
|
gst_msdkh265enc_need_reconfig (GstMsdkEnc * encoder, GstVideoCodecFrame * frame)
|
|
|
|
{
|
|
|
|
GstMsdkH265Enc *h265enc = GST_MSDKH265ENC (encoder);
|
|
|
|
|
|
|
|
return gst_msdkenc_get_roi_params (encoder, frame, h265enc->roi);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_msdkh265enc_set_extra_params (GstMsdkEnc * encoder,
|
|
|
|
GstVideoCodecFrame * frame)
|
|
|
|
{
|
|
|
|
GstMsdkH265Enc *h265enc = GST_MSDKH265ENC (encoder);
|
|
|
|
|
|
|
|
if (h265enc->roi[0].NumROI)
|
|
|
|
gst_msdkenc_add_extra_param (encoder, (mfxExtBuffer *) & h265enc->roi[0]);
|
|
|
|
}
|
|
|
|
|
2016-04-01 17:25:25 +00:00
|
|
|
static void
|
|
|
|
gst_msdkh265enc_class_init (GstMsdkH265EncClass * klass)
|
|
|
|
{
|
2018-02-14 11:42:55 +00:00
|
|
|
GObjectClass *gobject_class;
|
2016-04-01 17:25:25 +00:00
|
|
|
GstElementClass *element_class;
|
|
|
|
GstMsdkEncClass *encoder_class;
|
|
|
|
|
2018-02-14 11:42:55 +00:00
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
2016-04-01 17:25:25 +00:00
|
|
|
element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
encoder_class = GST_MSDKENC_CLASS (klass);
|
|
|
|
|
2018-02-14 11:42:55 +00:00
|
|
|
gobject_class->set_property = gst_msdkh265enc_set_property;
|
|
|
|
gobject_class->get_property = gst_msdkh265enc_get_property;
|
|
|
|
|
2016-04-01 17:25:25 +00:00
|
|
|
encoder_class->set_format = gst_msdkh265enc_set_format;
|
|
|
|
encoder_class->configure = gst_msdkh265enc_configure;
|
|
|
|
encoder_class->set_src_caps = gst_msdkh265enc_set_src_caps;
|
2019-11-27 08:00:59 +00:00
|
|
|
encoder_class->need_reconfig = gst_msdkh265enc_need_reconfig;
|
|
|
|
encoder_class->set_extra_params = gst_msdkh265enc_set_extra_params;
|
2016-04-01 17:25:25 +00:00
|
|
|
|
2018-02-14 11:42:55 +00:00
|
|
|
gst_msdkenc_install_common_properties (encoder_class);
|
|
|
|
|
2019-01-16 02:44:21 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_LOW_POWER,
|
|
|
|
g_param_spec_boolean ("low-power", "Low power", "Enable low power mode",
|
|
|
|
PROP_LOWPOWER_DEFAULT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
2019-10-24 07:26:33 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_TILE_ROW,
|
|
|
|
g_param_spec_uint ("num-tile-rows", "number of rows for tiled encoding",
|
|
|
|
"number of rows for tiled encoding",
|
|
|
|
1, 8192, PROP_TILE_ROW_DEFAULT,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_TILE_COL,
|
|
|
|
g_param_spec_uint ("num-tile-cols",
|
|
|
|
"number of columns for tiled encoding",
|
|
|
|
"number of columns for tiled encoding", 1, 8192,
|
|
|
|
PROP_TILE_COL_DEFAULT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
2016-04-01 17:25:25 +00:00
|
|
|
gst_element_class_set_static_metadata (element_class,
|
|
|
|
"Intel MSDK H265 encoder",
|
2019-02-14 09:47:29 +00:00
|
|
|
"Codec/Encoder/Video/Hardware",
|
2016-04-01 17:25:25 +00:00
|
|
|
"H265 video encoder based on Intel Media SDK",
|
|
|
|
"Josep Torra <jtorra@oblong.com>");
|
|
|
|
|
2018-11-27 07:55:51 +00:00
|
|
|
gst_element_class_add_static_pad_template (element_class, &sink_factory);
|
2016-04-01 17:25:25 +00:00
|
|
|
gst_element_class_add_static_pad_template (element_class, &src_factory);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_msdkh265enc_init (GstMsdkH265Enc * thiz)
|
|
|
|
{
|
2019-09-09 05:42:56 +00:00
|
|
|
GstMsdkEnc *msdk_enc = (GstMsdkEnc *) thiz;
|
2019-01-16 02:44:21 +00:00
|
|
|
thiz->lowpower = PROP_LOWPOWER_DEFAULT;
|
2019-10-24 07:26:33 +00:00
|
|
|
thiz->num_tile_rows = PROP_TILE_ROW_DEFAULT;
|
|
|
|
thiz->num_tile_cols = PROP_TILE_COL_DEFAULT;
|
2019-09-09 05:42:56 +00:00
|
|
|
msdk_enc->num_extra_frames = 1;
|
2016-04-01 17:25:25 +00:00
|
|
|
}
|