2011-05-23 10:06:01 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2007> Jan Schmidt <thaytan@mad.scientist.com>
|
|
|
|
* Copyright (C) <2011> Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
|
2011-06-23 16:54:43 +00:00
|
|
|
* Copyright (C) <2011> Thibault Saunier <thibault.saunier@collabora.com>
|
|
|
|
* Copyright (C) <2011> Collabora ltd
|
2011-05-23 10:06:01 +00:00
|
|
|
* Copyright (C) <2011> Nokia Corporation
|
2011-06-23 16:54:43 +00:00
|
|
|
* Copyright (C) <2011> Intel Corporation
|
2011-05-23 10:06:01 +00:00
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2011-05-23 10:06:01 +00:00
|
|
|
*/
|
2011-11-10 22:42:40 +00:00
|
|
|
|
2011-05-23 10:06:01 +00:00
|
|
|
#ifndef __GST_MPEGVIDEO_PARSE_H__
|
|
|
|
#define __GST_MPEGVIDEO_PARSE_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/base/gstbaseparse.h>
|
2019-05-08 15:04:49 +00:00
|
|
|
#include "gstvideoparseutils.h"
|
2011-06-23 16:54:43 +00:00
|
|
|
#include <gst/codecparsers/gstmpegvideoparser.h>
|
2011-05-23 10:06:01 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_MPEGVIDEO_PARSE (gst_mpegv_parse_get_type())
|
|
|
|
#define GST_MPEGVIDEO_PARSE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),\
|
|
|
|
GST_TYPE_MPEGVIDEO_PARSE, GstMpegvParse))
|
|
|
|
#define GST_MPEGVIDEO_PARSE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),\
|
|
|
|
GST_TYPE_MPEGVIDEO_PARSE, GstMpegvParseClass))
|
|
|
|
#define GST_MPEGVIDEO_PARSE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj),\
|
|
|
|
GST_TYPE_MPEGVIDEO_PARSE, GstMpegvParseClass))
|
|
|
|
#define GST_IS_MPEGVIDEO_PARSE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),\
|
|
|
|
GST_TYPE_MPEGVIDEO_PARSE))
|
|
|
|
#define GST_IS_MPEGVIDEO_PARSE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),\
|
|
|
|
GST_TYPE_MPEGVIDEO_PARSE))
|
|
|
|
|
|
|
|
typedef struct _GstMpegvParse GstMpegvParse;
|
|
|
|
typedef struct _GstMpegvParseClass GstMpegvParseClass;
|
|
|
|
|
2012-09-03 16:47:30 +00:00
|
|
|
/* Config/sequence flags. Reset each time config is re-parsed */
|
|
|
|
enum {
|
|
|
|
FLAG_NONE = 0,
|
|
|
|
FLAG_MPEG2 = 1,
|
|
|
|
FLAG_SEQUENCE_EXT = 2,
|
|
|
|
FLAG_SEQUENCE_DISPLAY_EXT = 4
|
|
|
|
};
|
|
|
|
|
2011-05-23 10:06:01 +00:00
|
|
|
struct _GstMpegvParse {
|
|
|
|
GstBaseParse element;
|
|
|
|
|
|
|
|
/* parse state */
|
2012-05-22 12:00:36 +00:00
|
|
|
gint ext_offsets[10];
|
|
|
|
gint ext_count;
|
2011-05-23 10:06:01 +00:00
|
|
|
gint last_sc;
|
|
|
|
gint seq_offset;
|
2012-05-21 17:22:19 +00:00
|
|
|
gint seq_size;
|
2011-05-23 10:06:01 +00:00
|
|
|
gint pic_offset;
|
2012-09-20 16:27:11 +00:00
|
|
|
guint slice_count;
|
|
|
|
guint slice_offset;
|
2011-05-23 10:06:01 +00:00
|
|
|
gboolean update_caps;
|
2011-09-14 14:14:24 +00:00
|
|
|
gboolean send_codec_tag;
|
2012-12-23 00:54:52 +00:00
|
|
|
gboolean send_mpeg_meta;
|
2011-05-23 10:06:01 +00:00
|
|
|
|
|
|
|
GstBuffer *config;
|
|
|
|
guint8 profile;
|
2012-09-03 16:47:30 +00:00
|
|
|
guint config_flags;
|
2011-06-23 16:54:43 +00:00
|
|
|
GstMpegVideoSequenceHdr sequencehdr;
|
|
|
|
GstMpegVideoSequenceExt sequenceext;
|
2012-09-03 16:47:30 +00:00
|
|
|
GstMpegVideoSequenceDisplayExt sequencedispext;
|
2011-06-23 16:54:43 +00:00
|
|
|
GstMpegVideoPictureHdr pichdr;
|
2012-09-20 16:27:11 +00:00
|
|
|
GstMpegVideoPictureExt picext;
|
|
|
|
GstMpegVideoQuantMatrixExt quantmatrext;
|
|
|
|
|
|
|
|
gboolean seqhdr_updated;
|
|
|
|
gboolean seqext_updated;
|
|
|
|
gboolean seqdispext_updated;
|
|
|
|
gboolean picext_updated;
|
|
|
|
gboolean quantmatrext_updated;
|
2011-05-23 10:06:01 +00:00
|
|
|
|
2019-05-08 15:04:49 +00:00
|
|
|
GstVideoParseUserData user_data;
|
2018-11-28 17:05:33 +00:00
|
|
|
|
2011-05-23 10:06:01 +00:00
|
|
|
/* properties */
|
|
|
|
gboolean drop;
|
|
|
|
gboolean gop_split;
|
2011-11-10 22:42:40 +00:00
|
|
|
|
|
|
|
int fps_num;
|
|
|
|
int fps_den;
|
|
|
|
int frame_repeat_count;
|
2011-05-23 10:06:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstMpegvParseClass {
|
|
|
|
GstBaseParseClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_mpegv_parse_get_type (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_MPEGVIDEO_PARSE_H__ */
|