2009-08-19 10:22:30 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* jpegparse: a parser for JPEG streams
|
|
|
|
*
|
|
|
|
* Copyright (C) <2009> Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
|
2021-12-22 18:23:37 +00:00
|
|
|
* <2022> Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
|
2009-08-19 10:22:30 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser 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.
|
2009-08-19 10:22:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_JPEG_PARSE_H__
|
|
|
|
#define __GST_JPEG_PARSE_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2014-04-22 02:05:48 +00:00
|
|
|
#include <gst/base/gstbaseparse.h>
|
2009-08-19 10:22:30 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_JPEG_PARSE \
|
|
|
|
(gst_jpeg_parse_get_type())
|
|
|
|
#define GST_JPEG_PARSE(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_JPEG_PARSE,GstJpegParse))
|
|
|
|
#define GST_JPEG_PARSE_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_JPEG_PARSE,GstJpegParseClass))
|
|
|
|
#define GST_IS_JPEG_PARSE(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_JPEG_PARSE))
|
|
|
|
#define GST_IS_JPEG_PARSE_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_JPEG_PARSE))
|
2014-04-22 02:05:48 +00:00
|
|
|
#define GST_JPEG_PARSE_CAST(obj) ((GstJpegParse *)obj)
|
2009-08-19 10:22:30 +00:00
|
|
|
|
|
|
|
typedef struct _GstJpegParse GstJpegParse;
|
|
|
|
typedef struct _GstJpegParseClass GstJpegParseClass;
|
|
|
|
|
|
|
|
struct _GstJpegParse {
|
2014-04-22 02:05:48 +00:00
|
|
|
GstBaseParse parse;
|
2018-06-23 21:51:37 +00:00
|
|
|
|
|
|
|
guint last_offset;
|
2021-12-22 18:23:37 +00:00
|
|
|
gint state;
|
2018-06-23 21:51:37 +00:00
|
|
|
|
2021-12-22 18:23:37 +00:00
|
|
|
gint8 sof;
|
|
|
|
gint8 adobe_transform;
|
2018-06-23 21:51:37 +00:00
|
|
|
|
|
|
|
/* the parsed frame size */
|
|
|
|
guint16 width, height;
|
|
|
|
|
|
|
|
/* format color space */
|
2021-12-22 18:23:37 +00:00
|
|
|
guint colorspace;
|
|
|
|
guint sampling;
|
|
|
|
guint16 x_density;
|
|
|
|
guint16 y_density;
|
|
|
|
GstCaps *prev_caps;
|
2018-06-23 21:51:37 +00:00
|
|
|
|
2021-12-22 18:23:37 +00:00
|
|
|
/* fps */
|
2018-06-23 21:51:37 +00:00
|
|
|
gint framerate_numerator;
|
|
|
|
gint framerate_denominator;
|
|
|
|
|
|
|
|
/* tags */
|
|
|
|
GstTagList *tags;
|
2009-08-19 10:22:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstJpegParseClass {
|
2014-04-22 02:05:48 +00:00
|
|
|
GstBaseParseClass parent_class;
|
2009-08-19 10:22:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_jpeg_parse_get_type (void);
|
|
|
|
|
2021-02-25 14:22:15 +00:00
|
|
|
GST_ELEMENT_REGISTER_DECLARE (jpegparse);
|
|
|
|
|
2009-08-19 10:22:30 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_JPEG_PARSE_H__ */
|