2006-05-22 16:08:34 +00:00
|
|
|
/* GStreamer h264 parser
|
|
|
|
* Copyright (C) 2005 Michal Benes <michal.benes@itonis.tv>
|
|
|
|
*
|
|
|
|
* gsth264parse.h:
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_H264_PARSE_H__
|
|
|
|
#define __GST_H264_PARSE_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/base/gstadapter.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_H264PARSE \
|
|
|
|
(gst_h264_parse_get_type())
|
|
|
|
#define GST_H264PARSE(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_H264PARSE,GstH264Parse))
|
|
|
|
#define GST_H264PARSE_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_H264PARSE,GstH264ParseClass))
|
|
|
|
#define GST_IS_H264PARSE(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_H264PARSE))
|
|
|
|
#define GST_IS_H264PARSE_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_H264PARSE))
|
|
|
|
|
|
|
|
typedef struct _GstH264Parse GstH264Parse;
|
|
|
|
typedef struct _GstH264ParseClass GstH264ParseClass;
|
|
|
|
|
gst/h264parse/gsth264parse.*: Add reverse playback support for containers that don't know how to properly send data b...
Original commit message from CVS:
* gst/h264parse/gsth264parse.c: (gst_nal_list_new),
(gst_nal_list_prepend_link), (gst_nal_list_delete_head),
(gst_nal_bs_init), (gst_nal_bs_read), (gst_nal_bs_eos),
(gst_nal_bs_read_ue), (gst_h264_parse_class_init),
(gst_h264_parse_init), (gst_h264_parse_set_property),
(gst_h264_parse_get_property), (gst_h264_parse_sink_setcaps),
(gst_h264_parse_clear_queues), (gst_h264_parse_chain_forward),
(gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
(gst_h264_parse_find_start_reverse),
(gst_h264_parse_chain_reverse), (gst_h264_parse_chain),
(gst_h264_parse_sink_event), (gst_h264_parse_change_state):
* gst/h264parse/gsth264parse.h:
Add reverse playback support for containers that don't know how to
properly send data between I-frames.
2008-01-16 18:28:00 +00:00
|
|
|
typedef struct _GstNalList GstNalList;
|
|
|
|
|
2009-08-17 09:38:59 +00:00
|
|
|
typedef struct _GstH264Sps GstH264Sps;
|
2009-08-17 09:42:06 +00:00
|
|
|
typedef struct _GstH264Pps GstH264Pps;
|
2009-08-17 09:38:59 +00:00
|
|
|
|
|
|
|
#define MAX_SPS_COUNT 32
|
2009-08-17 09:42:06 +00:00
|
|
|
#define MAX_PPS_COUNT 32
|
2009-08-17 09:56:26 +00:00
|
|
|
|
|
|
|
#define CLOCK_BASE 9LL
|
|
|
|
#define CLOCK_FREQ (CLOCK_BASE * 10000)
|
|
|
|
|
|
|
|
#define MPEGTIME_TO_GSTTIME(time) (gst_util_uint64_scale ((time), \
|
|
|
|
GST_MSECOND/10, CLOCK_BASE))
|
|
|
|
#define GSTTIME_TO_MPEGTIME(time) (gst_util_uint64_scale ((time), \
|
|
|
|
CLOCK_BASE, GST_MSECOND/10))
|
|
|
|
|
2006-05-22 16:08:34 +00:00
|
|
|
struct _GstH264Parse
|
|
|
|
{
|
|
|
|
GstElement element;
|
|
|
|
|
gst/h264parse/gsth264parse.*: Add reverse playback support for containers that don't know how to properly send data b...
Original commit message from CVS:
* gst/h264parse/gsth264parse.c: (gst_nal_list_new),
(gst_nal_list_prepend_link), (gst_nal_list_delete_head),
(gst_nal_bs_init), (gst_nal_bs_read), (gst_nal_bs_eos),
(gst_nal_bs_read_ue), (gst_h264_parse_class_init),
(gst_h264_parse_init), (gst_h264_parse_set_property),
(gst_h264_parse_get_property), (gst_h264_parse_sink_setcaps),
(gst_h264_parse_clear_queues), (gst_h264_parse_chain_forward),
(gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
(gst_h264_parse_find_start_reverse),
(gst_h264_parse_chain_reverse), (gst_h264_parse_chain),
(gst_h264_parse_sink_event), (gst_h264_parse_change_state):
* gst/h264parse/gsth264parse.h:
Add reverse playback support for containers that don't know how to
properly send data between I-frames.
2008-01-16 18:28:00 +00:00
|
|
|
GstPad *sinkpad;
|
|
|
|
GstPad *srcpad;
|
|
|
|
|
|
|
|
gboolean split_packetized;
|
2009-11-20 17:49:56 +00:00
|
|
|
gboolean merge;
|
2008-06-03 11:10:32 +00:00
|
|
|
guint nal_length_size;
|
gst/h264parse/gsth264parse.*: Add reverse playback support for containers that don't know how to properly send data b...
Original commit message from CVS:
* gst/h264parse/gsth264parse.c: (gst_nal_list_new),
(gst_nal_list_prepend_link), (gst_nal_list_delete_head),
(gst_nal_bs_init), (gst_nal_bs_read), (gst_nal_bs_eos),
(gst_nal_bs_read_ue), (gst_h264_parse_class_init),
(gst_h264_parse_init), (gst_h264_parse_set_property),
(gst_h264_parse_get_property), (gst_h264_parse_sink_setcaps),
(gst_h264_parse_clear_queues), (gst_h264_parse_chain_forward),
(gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
(gst_h264_parse_find_start_reverse),
(gst_h264_parse_chain_reverse), (gst_h264_parse_chain),
(gst_h264_parse_sink_event), (gst_h264_parse_change_state):
* gst/h264parse/gsth264parse.h:
Add reverse playback support for containers that don't know how to
properly send data between I-frames.
2008-01-16 18:28:00 +00:00
|
|
|
|
|
|
|
GstSegment segment;
|
|
|
|
gboolean packetized;
|
|
|
|
gboolean discont;
|
|
|
|
|
2009-11-20 17:49:56 +00:00
|
|
|
gint width, height;
|
|
|
|
gint fps_num, fps_den;
|
|
|
|
|
gst/h264parse/gsth264parse.*: Add reverse playback support for containers that don't know how to properly send data b...
Original commit message from CVS:
* gst/h264parse/gsth264parse.c: (gst_nal_list_new),
(gst_nal_list_prepend_link), (gst_nal_list_delete_head),
(gst_nal_bs_init), (gst_nal_bs_read), (gst_nal_bs_eos),
(gst_nal_bs_read_ue), (gst_h264_parse_class_init),
(gst_h264_parse_init), (gst_h264_parse_set_property),
(gst_h264_parse_get_property), (gst_h264_parse_sink_setcaps),
(gst_h264_parse_clear_queues), (gst_h264_parse_chain_forward),
(gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
(gst_h264_parse_find_start_reverse),
(gst_h264_parse_chain_reverse), (gst_h264_parse_chain),
(gst_h264_parse_sink_event), (gst_h264_parse_change_state):
* gst/h264parse/gsth264parse.h:
Add reverse playback support for containers that don't know how to
properly send data between I-frames.
2008-01-16 18:28:00 +00:00
|
|
|
/* gather/decode queues for reverse playback */
|
|
|
|
GList *gather;
|
2008-01-17 18:39:24 +00:00
|
|
|
GstBuffer *prev;
|
gst/h264parse/gsth264parse.*: Add reverse playback support for containers that don't know how to properly send data b...
Original commit message from CVS:
* gst/h264parse/gsth264parse.c: (gst_nal_list_new),
(gst_nal_list_prepend_link), (gst_nal_list_delete_head),
(gst_nal_bs_init), (gst_nal_bs_read), (gst_nal_bs_eos),
(gst_nal_bs_read_ue), (gst_h264_parse_class_init),
(gst_h264_parse_init), (gst_h264_parse_set_property),
(gst_h264_parse_get_property), (gst_h264_parse_sink_setcaps),
(gst_h264_parse_clear_queues), (gst_h264_parse_chain_forward),
(gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
(gst_h264_parse_find_start_reverse),
(gst_h264_parse_chain_reverse), (gst_h264_parse_chain),
(gst_h264_parse_sink_event), (gst_h264_parse_change_state):
* gst/h264parse/gsth264parse.h:
Add reverse playback support for containers that don't know how to
properly send data between I-frames.
2008-01-16 18:28:00 +00:00
|
|
|
GstNalList *decode;
|
2008-01-17 18:39:24 +00:00
|
|
|
gint decode_len;
|
gst/h264parse/gsth264parse.*: Add reverse playback support for containers that don't know how to properly send data b...
Original commit message from CVS:
* gst/h264parse/gsth264parse.c: (gst_nal_list_new),
(gst_nal_list_prepend_link), (gst_nal_list_delete_head),
(gst_nal_bs_init), (gst_nal_bs_read), (gst_nal_bs_eos),
(gst_nal_bs_read_ue), (gst_h264_parse_class_init),
(gst_h264_parse_init), (gst_h264_parse_set_property),
(gst_h264_parse_get_property), (gst_h264_parse_sink_setcaps),
(gst_h264_parse_clear_queues), (gst_h264_parse_chain_forward),
(gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
(gst_h264_parse_find_start_reverse),
(gst_h264_parse_chain_reverse), (gst_h264_parse_chain),
(gst_h264_parse_sink_event), (gst_h264_parse_change_state):
* gst/h264parse/gsth264parse.h:
Add reverse playback support for containers that don't know how to
properly send data between I-frames.
2008-01-16 18:28:00 +00:00
|
|
|
gboolean have_sps;
|
|
|
|
gboolean have_pps;
|
|
|
|
gboolean have_i_frame;
|
2006-05-22 16:08:34 +00:00
|
|
|
|
|
|
|
GstAdapter *adapter;
|
2009-08-17 09:38:59 +00:00
|
|
|
|
|
|
|
/* SPS: sequential parameter set */
|
|
|
|
GstH264Sps *sps_buffers[MAX_SPS_COUNT];
|
|
|
|
GstH264Sps *sps; /* Current SPS */
|
2009-08-17 09:42:06 +00:00
|
|
|
/* PPS: sequential parameter set */
|
|
|
|
GstH264Pps *pps_buffers[MAX_PPS_COUNT];
|
|
|
|
GstH264Pps *pps; /* Current PPS */
|
2009-08-17 09:43:51 +00:00
|
|
|
|
2009-08-17 09:44:38 +00:00
|
|
|
/* slice header */
|
|
|
|
guint8 first_mb_in_slice;
|
|
|
|
guint8 slice_type;
|
|
|
|
guint8 pps_id;
|
|
|
|
guint32 frame_num;
|
|
|
|
gboolean field_pic_flag;
|
|
|
|
gboolean bottom_field_flag;
|
|
|
|
|
2009-08-17 09:43:51 +00:00
|
|
|
/* SEI: supplemental enhancement messages */
|
|
|
|
/* buffering period */
|
|
|
|
guint32 initial_cpb_removal_delay[32];
|
|
|
|
/* picture timing */
|
|
|
|
guint32 sei_cpb_removal_delay;
|
|
|
|
guint32 sei_dpb_output_delay;
|
|
|
|
guint8 sei_pic_struct;
|
|
|
|
guint8 sei_ct_type;
|
|
|
|
/* And more... */
|
2009-08-17 09:56:26 +00:00
|
|
|
|
|
|
|
/* cached timestamps */
|
|
|
|
GstClockTime dts;
|
|
|
|
GstClockTime last_outbuf_dts;
|
|
|
|
GstClockTime ts_trn_nb; /* dts of last buffering period */
|
|
|
|
GstClockTime cur_duration; /* duration of the current access unit */
|
|
|
|
|
|
|
|
/* for debug purpose */
|
|
|
|
guint32 frame_cnt;
|
2009-11-22 18:34:25 +00:00
|
|
|
|
|
|
|
/* NALU AU */
|
|
|
|
GstAdapter *picture_adapter;
|
|
|
|
gboolean picture_start;
|
2006-05-22 16:08:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstH264ParseClass
|
|
|
|
{
|
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_h264_parse_get_type (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_H264_PARSE_H__ */
|