2019-12-26 05:24:46 +00:00
|
|
|
/* 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_H264_DECODER_H__
|
|
|
|
#define __GST_H264_DECODER_H__
|
|
|
|
|
2020-01-31 22:54:57 +00:00
|
|
|
#include <gst/codecs/codecs-prelude.h>
|
|
|
|
|
2019-12-26 05:24:46 +00:00
|
|
|
#include <gst/video/video.h>
|
|
|
|
#include <gst/codecparsers/gsth264parser.h>
|
2020-01-31 22:54:57 +00:00
|
|
|
#include <gst/codecs/gsth264picture.h>
|
2019-12-26 05:24:46 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_H264_DECODER (gst_h264_decoder_get_type())
|
|
|
|
#define GST_H264_DECODER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_H264_DECODER,GstH264Decoder))
|
|
|
|
#define GST_H264_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_H264_DECODER,GstH264DecoderClass))
|
|
|
|
#define GST_H264_DECODER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_H264_DECODER,GstH264DecoderClass))
|
|
|
|
#define GST_IS_H264_DECODER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_H264_DECODER))
|
|
|
|
#define GST_IS_H264_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_H264_DECODER))
|
|
|
|
#define GST_H264_DECODER_CAST(obj) ((GstH264Decoder*)obj)
|
|
|
|
|
|
|
|
typedef struct _GstH264Decoder GstH264Decoder;
|
|
|
|
typedef struct _GstH264DecoderClass GstH264DecoderClass;
|
|
|
|
typedef struct _GstH264DecoderPrivate GstH264DecoderPrivate;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstH264Decoder:
|
|
|
|
*
|
|
|
|
* The opaque #GstH264Decoder data structure.
|
|
|
|
*/
|
|
|
|
struct _GstH264Decoder
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GstVideoDecoder parent;
|
|
|
|
|
|
|
|
/*< protected >*/
|
|
|
|
GstVideoCodecState * input_state;
|
|
|
|
|
|
|
|
/*< private >*/
|
|
|
|
GstH264DecoderPrivate *priv;
|
|
|
|
gpointer padding[GST_PADDING_LARGE];
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstH264DecoderClass:
|
|
|
|
* @new_sequence: Notifies subclass of SPS update
|
|
|
|
* @new_picture: Optional.
|
|
|
|
* Called whenever new #GstH264Picture is created.
|
|
|
|
* Subclass can set implementation specific user data
|
|
|
|
* on the #GstH264Picture via gst_h264_picture_set_user_data()
|
|
|
|
* @start_picture: Optional.
|
|
|
|
* Called per one #GstH264Picture to notify subclass to prepare
|
|
|
|
* decoding process for the #GstH264Picture
|
|
|
|
* @decode_slice: Provides per slice data with parsed slice header and
|
2020-05-03 15:30:34 +00:00
|
|
|
* required raw bitstream for subclass to decode it.
|
|
|
|
* if gst_h264_decoder_set_process_ref_pic_lists() is called
|
|
|
|
* with %TRUE by the subclass, @ref_pic_list0 and @ref_pic_list1
|
|
|
|
* are non-%NULL.
|
2019-12-26 05:24:46 +00:00
|
|
|
* @end_picture: Optional.
|
|
|
|
* Called per one #GstH264Picture to notify subclass to finish
|
|
|
|
* decoding process for the #GstH264Picture
|
2020-03-29 13:35:06 +00:00
|
|
|
* @output_picture: Called with a #GstH264Picture which is required to be outputted.
|
2020-07-28 22:32:03 +00:00
|
|
|
* The #GstVideoCodecFrame must be consumed by subclass via
|
2020-03-29 13:35:06 +00:00
|
|
|
* gst_video_decoder_{finish,drop,release}_frame().
|
2019-12-26 05:24:46 +00:00
|
|
|
*/
|
|
|
|
struct _GstH264DecoderClass
|
|
|
|
{
|
|
|
|
GstVideoDecoderClass parent_class;
|
|
|
|
|
|
|
|
gboolean (*new_sequence) (GstH264Decoder * decoder,
|
2020-02-13 04:48:16 +00:00
|
|
|
const GstH264SPS * sps,
|
|
|
|
gint max_dpb_size);
|
2019-12-26 05:24:46 +00:00
|
|
|
|
2020-07-20 08:45:12 +00:00
|
|
|
/**
|
2020-07-21 13:36:14 +00:00
|
|
|
* GstH264Decoder:new_picture:
|
2020-07-20 08:45:12 +00:00
|
|
|
* @decoder: a #GstH264Decoder
|
|
|
|
* @frame: (transfer none): a #GstVideoCodecFrame
|
|
|
|
* @picture: (transfer none): a #GstH264Picture
|
|
|
|
*/
|
2019-12-26 05:24:46 +00:00
|
|
|
gboolean (*new_picture) (GstH264Decoder * decoder,
|
2020-07-20 08:45:12 +00:00
|
|
|
GstVideoCodecFrame * frame,
|
2019-12-26 05:24:46 +00:00
|
|
|
GstH264Picture * picture);
|
|
|
|
|
|
|
|
gboolean (*start_picture) (GstH264Decoder * decoder,
|
|
|
|
GstH264Picture * picture,
|
|
|
|
GstH264Slice * slice,
|
|
|
|
GstH264Dpb * dpb);
|
|
|
|
|
|
|
|
gboolean (*decode_slice) (GstH264Decoder * decoder,
|
|
|
|
GstH264Picture * picture,
|
2020-05-03 15:30:34 +00:00
|
|
|
GstH264Slice * slice,
|
|
|
|
GArray * ref_pic_list0,
|
|
|
|
GArray * ref_pic_list1);
|
2019-12-26 05:24:46 +00:00
|
|
|
|
|
|
|
gboolean (*end_picture) (GstH264Decoder * decoder,
|
|
|
|
GstH264Picture * picture);
|
|
|
|
|
2020-07-20 09:24:09 +00:00
|
|
|
/**
|
2020-07-21 13:36:14 +00:00
|
|
|
* GstH264Decoder:output_picture:
|
2020-07-20 09:24:09 +00:00
|
|
|
* @decoder: a #GstH264Decoder
|
|
|
|
* @frame: (transfer full): a #GstVideoCodecFrame
|
|
|
|
* @picture: (transfer full): a #GstH264Picture
|
|
|
|
*/
|
2020-03-29 13:35:06 +00:00
|
|
|
GstFlowReturn (*output_picture) (GstH264Decoder * decoder,
|
2020-07-20 09:24:09 +00:00
|
|
|
GstVideoCodecFrame * frame,
|
2020-03-29 13:35:06 +00:00
|
|
|
GstH264Picture * picture);
|
|
|
|
|
2019-12-26 05:24:46 +00:00
|
|
|
/*< private >*/
|
|
|
|
gpointer padding[GST_PADDING_LARGE];
|
|
|
|
};
|
|
|
|
|
2020-02-09 16:20:16 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstH264Decoder, gst_object_unref)
|
|
|
|
|
2020-01-31 22:54:57 +00:00
|
|
|
GST_CODECS_API
|
2019-12-26 05:24:46 +00:00
|
|
|
GType gst_h264_decoder_get_type (void);
|
|
|
|
|
2020-04-27 14:53:45 +00:00
|
|
|
GST_CODECS_API
|
2020-07-21 08:53:29 +00:00
|
|
|
void gst_h264_decoder_set_process_ref_pic_lists (GstH264Decoder * decoder,
|
2020-04-27 14:53:45 +00:00
|
|
|
gboolean process);
|
|
|
|
|
2020-07-20 20:48:32 +00:00
|
|
|
GST_CODECS_API
|
2020-07-21 08:53:29 +00:00
|
|
|
GstH264Picture * gst_h264_decoder_get_picture (GstH264Decoder * decoder,
|
2020-07-20 20:48:32 +00:00
|
|
|
guint32 system_frame_number);
|
|
|
|
|
2019-12-26 05:24:46 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_H264_DECODER_H__ */
|