Similar to lcevch264decodebin, these new elements are needed for LCEVC H265 and H266 video streams to be decoded properly with autoplugging elements. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9427>
73 lines
2.3 KiB
C
73 lines
2.3 KiB
C
/* GStreamer
|
|
* Copyright (C) <2025> V-Nova International Limited
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "gstlcevch265decodebin.h"
|
|
|
|
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
GST_PAD_SINK,
|
|
GST_PAD_ALWAYS,
|
|
GST_STATIC_CAPS ("video/x-h265, lcevc = (boolean) true")
|
|
);
|
|
|
|
struct _GstLcevcH265DecodeBin
|
|
{
|
|
GstLcevcDecodeBin parent;
|
|
};
|
|
|
|
#define gst_lcevc_h265_decode_bin_parent_class parent_class
|
|
G_DEFINE_TYPE (GstLcevcH265DecodeBin, gst_lcevc_h265_decode_bin,
|
|
GST_TYPE_LCEVC_DECODE_BIN);
|
|
|
|
GST_ELEMENT_REGISTER_DEFINE (lcevch265decodebin, "lcevch265decodebin",
|
|
GST_RANK_PRIMARY + GST_LCEVC_DECODE_BIN_RANK_OFFSET,
|
|
GST_TYPE_LCEVC_H265_DECODE_BIN);
|
|
|
|
static GstCaps *
|
|
gst_lcevc_h265_decode_bin_get_base_decoder_sink_caps (GstLcevcDecodeBin * base)
|
|
{
|
|
return gst_caps_new_simple ("video/x-h265",
|
|
"lcevc", G_TYPE_BOOLEAN, FALSE, NULL);
|
|
}
|
|
|
|
static void
|
|
gst_lcevc_h265_decode_bin_class_init (GstLcevcH265DecodeBinClass * klass)
|
|
{
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
GstLcevcDecodeBinClass *ldb_class = GST_LCEVC_DECODE_BIN_CLASS (klass);
|
|
|
|
gst_element_class_add_static_pad_template (element_class, &sink_template);
|
|
|
|
gst_element_class_set_static_metadata (element_class,
|
|
"H.265 + MPEG-5 LCEVC Decode Bin", "Codec/Decoder/Video",
|
|
"Wrapper bin to decode H265 with LCEVC data.",
|
|
"Julian Bouzas <julian.bouzas@collabora.com>");
|
|
|
|
ldb_class->get_base_decoder_sink_caps =
|
|
gst_lcevc_h265_decode_bin_get_base_decoder_sink_caps;
|
|
}
|
|
|
|
static void
|
|
gst_lcevc_h265_decode_bin_init (GstLcevcH265DecodeBin * self)
|
|
{
|
|
}
|