2004-07-16 10:56:31 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
2012-04-07 07:52:09 +00:00
|
|
|
* Copyright (C) 2012 Collabora Ltd.
|
|
|
|
* Author : Edward Hervey <edward@collabora.com>
|
2004-07-16 10:56:31 +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-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2004-07-16 10:56:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_PNGDEC_H__
|
|
|
|
#define __GST_PNGDEC_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2012-04-07 07:52:09 +00:00
|
|
|
#include <gst/video/gstvideodecoder.h>
|
2004-07-16 10:56:31 +00:00
|
|
|
#include <png.h>
|
|
|
|
|
2005-10-15 16:48:55 +00:00
|
|
|
G_BEGIN_DECLS
|
2004-07-16 10:56:31 +00:00
|
|
|
|
2005-10-15 16:48:55 +00:00
|
|
|
#define GST_TYPE_PNGDEC (gst_pngdec_get_type())
|
|
|
|
#define GST_PNGDEC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PNGDEC,GstPngDec))
|
2006-06-01 21:07:26 +00:00
|
|
|
#define GST_PNGDEC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PNGDEC,GstPngDecClass))
|
2005-10-15 16:48:55 +00:00
|
|
|
#define GST_IS_PNGDEC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PNGDEC))
|
2006-06-01 21:07:26 +00:00
|
|
|
#define GST_IS_PNGDEC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PNGDEC))
|
2004-07-16 10:56:31 +00:00
|
|
|
|
|
|
|
typedef struct _GstPngDec GstPngDec;
|
|
|
|
typedef struct _GstPngDecClass GstPngDecClass;
|
|
|
|
|
|
|
|
struct _GstPngDec
|
|
|
|
{
|
2012-04-07 07:52:09 +00:00
|
|
|
GstVideoDecoder parent;
|
2004-07-16 10:56:31 +00:00
|
|
|
|
2012-04-07 07:52:09 +00:00
|
|
|
GstVideoCodecState *input_state;
|
|
|
|
GstVideoCodecState *output_state;
|
2012-05-28 13:22:26 +00:00
|
|
|
GstMapInfo current_frame_map;
|
2012-04-07 07:52:09 +00:00
|
|
|
GstVideoCodecFrame *current_frame;
|
2004-07-16 10:56:31 +00:00
|
|
|
|
2012-04-07 07:52:09 +00:00
|
|
|
GstFlowReturn ret;
|
ext/libpng/gstpngdec.*: Handle more than one frame if the content is framed, like with png-in-quicktime (#331917).
Original commit message from CVS:
* ext/libpng/gstpngdec.c: (gst_pngdec_init),
(user_endrow_callback), (user_end_callback),
(gst_pngdec_caps_create_and_set), (gst_pngdec_chain),
(gst_pngdec_sink_setcaps), (gst_pngdec_sink_event),
(gst_pngdec_libpng_clear), (gst_pngdec_change_state):
* ext/libpng/gstpngdec.h:
Handle more than one frame if the content is framed,
like with png-in-quicktime (#331917).
2006-04-11 09:35:45 +00:00
|
|
|
|
2004-07-16 10:56:31 +00:00
|
|
|
png_structp png;
|
|
|
|
png_infop info;
|
|
|
|
png_infop endinfo;
|
|
|
|
|
|
|
|
gint color_type;
|
2006-07-17 10:22:54 +00:00
|
|
|
|
2007-11-20 12:20:38 +00:00
|
|
|
gboolean image_ready;
|
2014-11-04 02:48:41 +00:00
|
|
|
gsize read_data;
|
2004-07-16 10:56:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstPngDecClass
|
|
|
|
{
|
2012-04-07 07:52:09 +00:00
|
|
|
GstVideoDecoderClass parent_class;
|
2004-07-16 10:56:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_pngdec_get_type(void);
|
|
|
|
|
2005-10-15 16:48:55 +00:00
|
|
|
G_END_DECLS
|
2004-07-16 10:56:31 +00:00
|
|
|
|
|
|
|
#endif /* __GST_PNGDEC_H__ */
|