mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
a139c8c7e8
Some DPB management implementation is taken from gstreamer-vaapi
143 lines
5.2 KiB
C
143 lines
5.2 KiB
C
/* GStreamer
|
|
* Copyright (C) 2019 Seungha Yang <seungha.yang@navercorp.com>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __GST_H265_DECODER_H__
|
|
#define __GST_H265_DECODER_H__
|
|
|
|
#include <gst/gst.h>
|
|
#include <gst/video/video.h>
|
|
#include <gst/codecparsers/gsth265parser.h>
|
|
#include "gsth265picture.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GST_TYPE_H265_DECODER (gst_h265_decoder_get_type())
|
|
#define GST_H265_DECODER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_H265_DECODER,GstH265Decoder))
|
|
#define GST_H265_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_H265_DECODER,GstH265DecoderClass))
|
|
#define GST_H265_DECODER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_H265_DECODER,GstH265DecoderClass))
|
|
#define GST_IS_H265_DECODER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_H265_DECODER))
|
|
#define GST_IS_H265_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_H265_DECODER))
|
|
#define GST_H265_DECODER_CAST(obj) ((GstH265Decoder*)obj)
|
|
|
|
typedef struct _GstH265Decoder GstH265Decoder;
|
|
typedef struct _GstH265DecoderClass GstH265DecoderClass;
|
|
typedef struct _GstH265DecoderPrivate GstH265DecoderPrivate;
|
|
|
|
#define IS_IDR(nal_type) \
|
|
((nal_type) == GST_H265_NAL_SLICE_IDR_W_RADL || (nal_type) == GST_H265_NAL_SLICE_IDR_N_LP)
|
|
|
|
#define IS_IRAP(nal_type) \
|
|
((nal_type) >= GST_H265_NAL_SLICE_BLA_W_LP && (nal_type) <= RESERVED_IRAP_NAL_TYPE_MAX)
|
|
|
|
#define IS_BLA(nal_type) \
|
|
((nal_type) >= GST_H265_NAL_SLICE_BLA_W_LP && (nal_type) <= GST_H265_NAL_SLICE_BLA_N_LP)
|
|
|
|
#define IS_CRA(nal_type) \
|
|
((nal_type) == GST_H265_NAL_SLICE_CRA_NUT)
|
|
|
|
#define IS_RADL(nal_type) \
|
|
((nal_type) >= GST_H265_NAL_SLICE_RADL_N && (nal_type) <= GST_H265_NAL_SLICE_RADL_R)
|
|
|
|
#define IS_RASL(nal_type) \
|
|
((nal_type) >= GST_H265_NAL_SLICE_RASL_N && (nal_type) <= GST_H265_NAL_SLICE_RASL_R)
|
|
|
|
/**
|
|
* GstH265Decoder:
|
|
*
|
|
* The opaque #GstH265Decoder data structure.
|
|
*/
|
|
struct _GstH265Decoder
|
|
{
|
|
/*< private >*/
|
|
GstVideoDecoder parent;
|
|
|
|
/*< protected >*/
|
|
GstVideoCodecState * input_state;
|
|
|
|
GstH265Picture *RefPicSetStCurrBefore[16];
|
|
GstH265Picture *RefPicSetStCurrAfter[16];
|
|
GstH265Picture *RefPicSetStFoll[16];
|
|
GstH265Picture *RefPicSetLtCurr[16];
|
|
GstH265Picture *RefPicSetLtFoll[16];
|
|
|
|
guint NumPocStCurrBefore;
|
|
guint NumPocStCurrAfter;
|
|
guint NumPocStFoll;
|
|
guint NumPocLtCurr;
|
|
guint NumPocLtFoll;
|
|
guint NumPocTotalCurr;
|
|
|
|
/*< private >*/
|
|
GstH265DecoderPrivate *priv;
|
|
gpointer padding[GST_PADDING_LARGE];
|
|
};
|
|
|
|
/**
|
|
* GstH265DecoderClass:
|
|
* @new_sequence: Notifies subclass of SPS update
|
|
* @new_picture: Optional.
|
|
* Called whenever new #GstH265Picture is created.
|
|
* Subclass can set implementation specific user data
|
|
* on the #GstH265Picture via gst_h265_picture_set_user_data()
|
|
* @output_picture: Optional.
|
|
* Called just before gst_video_decoder_have_frame().
|
|
* Subclass should be prepared for handle_frame()
|
|
* @start_picture: Optional.
|
|
* Called per one #GstH265Picture to notify subclass to prepare
|
|
* decoding process for the #GstH265Picture
|
|
* @decode_slice: Provides per slice data with parsed slice header and
|
|
* required raw bitstream for subclass to decode it
|
|
* @end_picture: Optional.
|
|
* Called per one #GstH265Picture to notify subclass to finish
|
|
* decoding process for the #GstH265Picture
|
|
*/
|
|
struct _GstH265DecoderClass
|
|
{
|
|
GstVideoDecoderClass parent_class;
|
|
|
|
gboolean (*new_sequence) (GstH265Decoder * decoder,
|
|
const GstH265SPS * sps);
|
|
|
|
gboolean (*new_picture) (GstH265Decoder * decoder,
|
|
GstH265Picture * picture);
|
|
|
|
GstFlowReturn (*output_picture) (GstH265Decoder * decoder,
|
|
GstH265Picture * picture);
|
|
|
|
gboolean (*start_picture) (GstH265Decoder * decoder,
|
|
GstH265Picture * picture,
|
|
GstH265Slice * slice,
|
|
GstH265Dpb * dpb);
|
|
|
|
gboolean (*decode_slice) (GstH265Decoder * decoder,
|
|
GstH265Picture * picture,
|
|
GstH265Slice * slice);
|
|
|
|
gboolean (*end_picture) (GstH265Decoder * decoder,
|
|
GstH265Picture * picture);
|
|
|
|
/*< private >*/
|
|
gpointer padding[GST_PADDING_LARGE];
|
|
};
|
|
|
|
GType gst_h265_decoder_get_type (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_H265_DECODER_H__ */
|