2002-11-18 22:29:38 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* Filter:
|
2003-01-20 23:32:39 +00:00
|
|
|
* Copyright (C) 2000 Donald A. Graft
|
2002-11-18 22:29:38 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2002-11-18 22:29:38 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <gst/gst.h>
|
2002-11-22 22:25:03 +00:00
|
|
|
#include "gstpngenc.h"
|
2003-11-02 00:21:14 +00:00
|
|
|
#include <gst/video/video.h>
|
2005-01-09 16:30:15 +00:00
|
|
|
#include <zlib.h>
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
#define MAX_HEIGHT 4096
|
2002-11-18 22:29:38 +00:00
|
|
|
|
|
|
|
|
2006-03-30 15:37:05 +00:00
|
|
|
static GstElementDetails gst_pngenc_details =
|
|
|
|
GST_ELEMENT_DETAILS ("PNG image encoder",
|
|
|
|
"Codec/Encoder/Image",
|
|
|
|
"Encode a video frame to a .png image",
|
|
|
|
"Jeremy SIMON <jsimon13@yahoo.fr>");
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2005-11-18 18:19:21 +00:00
|
|
|
GST_DEBUG_CATEGORY (pngenc_debug);
|
|
|
|
#define GST_CAT_DEFAULT pngenc_debug
|
2002-11-18 22:29:38 +00:00
|
|
|
|
|
|
|
/* Filter signals and args */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
#define DEFAULT_SNAPSHOT TRUE
|
|
|
|
/* #define DEFAULT_NEWMEDIA FALSE */
|
|
|
|
#define DEFAULT_COMPRESSION_LEVEL 6
|
2004-07-27 09:59:17 +00:00
|
|
|
|
2002-11-18 22:29:38 +00:00
|
|
|
enum
|
|
|
|
{
|
2004-07-27 09:59:17 +00:00
|
|
|
ARG_0,
|
2004-07-30 09:35:09 +00:00
|
|
|
ARG_SNAPSHOT,
|
2005-08-02 11:42:33 +00:00
|
|
|
/* ARG_NEWMEDIA, */
|
2005-01-09 16:30:15 +00:00
|
|
|
ARG_COMPRESSION_LEVEL
|
2002-11-18 22:29:38 +00:00
|
|
|
};
|
|
|
|
|
2005-01-07 10:27:20 +00:00
|
|
|
static GstStaticPadTemplate pngenc_src_template =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("image/png, "
|
|
|
|
"width = (int) [ 16, 4096 ], "
|
2005-11-22 22:21:37 +00:00
|
|
|
"height = (int) [ 16, 4096 ], " "framerate = (fraction) [ 0.0, MAX ]")
|
2005-01-07 10:27:20 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
static GstStaticPadTemplate pngenc_sink_template =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2005-08-02 11:42:33 +00:00
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_RGBA ";" GST_VIDEO_CAPS_RGB)
|
2005-01-07 10:27:20 +00:00
|
|
|
);
|
2004-01-03 13:14:20 +00:00
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
/* static GstElementClass *parent_class = NULL; */
|
|
|
|
|
|
|
|
GST_BOILERPLATE (GstPngEnc, gst_pngenc, GstElement, GST_TYPE_ELEMENT);
|
|
|
|
|
|
|
|
static void gst_pngenc_set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_pngenc_get_property (GObject * object,
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec);
|
|
|
|
|
|
|
|
static GstFlowReturn gst_pngenc_chain (GstPad * pad, GstBuffer * data);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void
|
|
|
|
user_error_fn (png_structp png_ptr, png_const_charp error_msg)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
g_warning ("%s", error_msg);
|
2002-11-18 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void
|
|
|
|
user_warning_fn (png_structp png_ptr, png_const_charp warning_msg)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
g_warning ("%s", warning_msg);
|
2002-11-18 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
2003-11-02 00:21:14 +00:00
|
|
|
static void
|
|
|
|
gst_pngenc_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2005-01-07 10:27:20 +00:00
|
|
|
gst_element_class_add_pad_template
|
|
|
|
(element_class, gst_static_pad_template_get (&pngenc_sink_template));
|
|
|
|
gst_element_class_add_pad_template
|
|
|
|
(element_class, gst_static_pad_template_get (&pngenc_src_template));
|
2003-11-02 00:21:14 +00:00
|
|
|
gst_element_class_set_details (element_class, &gst_pngenc_details);
|
|
|
|
}
|
|
|
|
|
2002-11-18 22:29:38 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_pngenc_class_init (GstPngEncClass * klass)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
|
|
|
|
2006-04-08 21:21:45 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2004-07-27 09:59:17 +00:00
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
gobject_class->get_property = gst_pngenc_get_property;
|
|
|
|
gobject_class->set_property = gst_pngenc_set_property;
|
|
|
|
|
2004-07-27 09:59:17 +00:00
|
|
|
g_object_class_install_property (gobject_class, ARG_SNAPSHOT,
|
|
|
|
g_param_spec_boolean ("snapshot", "Snapshot",
|
2004-07-30 09:35:09 +00:00
|
|
|
"Send EOS after encoding a frame, useful for snapshots",
|
|
|
|
DEFAULT_SNAPSHOT, (GParamFlags) G_PARAM_READWRITE));
|
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
/* g_object_class_install_property (gobject_class, ARG_NEWMEDIA, */
|
|
|
|
/* g_param_spec_boolean ("newmedia", "newmedia", */
|
|
|
|
/* "Send new media discontinuity after encoding each frame", */
|
|
|
|
/* DEFAULT_NEWMEDIA, (GParamFlags) G_PARAM_READWRITE)); */
|
2004-07-27 09:59:17 +00:00
|
|
|
|
2005-01-09 16:30:15 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
(gobject_class, ARG_COMPRESSION_LEVEL,
|
|
|
|
g_param_spec_uint ("compression-level", "compression-level",
|
|
|
|
"PNG compression level",
|
|
|
|
Z_NO_COMPRESSION, Z_BEST_COMPRESSION,
|
2005-08-02 11:42:33 +00:00
|
|
|
DEFAULT_COMPRESSION_LEVEL, (GParamFlags) G_PARAM_READWRITE));
|
2005-11-18 18:19:21 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (pngenc_debug, "pngenc", 0, "PNG image encoder");
|
2002-11-18 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
static gboolean
|
|
|
|
gst_pngenc_setcaps (GstPad * pad, GstCaps * caps)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
|
|
|
GstPngEnc *pngenc;
|
2005-11-22 22:21:37 +00:00
|
|
|
const GValue *fps;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2005-01-09 01:40:14 +00:00
|
|
|
GstCaps *pcaps;
|
2005-08-02 11:42:33 +00:00
|
|
|
gboolean ret = TRUE;
|
|
|
|
GstPad *opeer;
|
2002-11-18 22:29:38 +00:00
|
|
|
|
|
|
|
pngenc = GST_PNGENC (gst_pad_get_parent (pad));
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
gst_structure_get_int (structure, "width", &pngenc->width);
|
|
|
|
gst_structure_get_int (structure, "height", &pngenc->height);
|
2005-11-22 22:21:37 +00:00
|
|
|
fps = gst_structure_get_value (structure, "framerate");
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_structure_get_int (structure, "bpp", &pngenc->bpp);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
opeer = gst_pad_get_peer (pngenc->srcpad);
|
|
|
|
if (opeer) {
|
|
|
|
pcaps = gst_caps_new_simple ("image/png",
|
|
|
|
"width", G_TYPE_INT, pngenc->width,
|
|
|
|
"height", G_TYPE_INT, pngenc->height, NULL);
|
2005-11-22 22:21:37 +00:00
|
|
|
structure = gst_caps_get_structure (pcaps, 0);
|
|
|
|
gst_structure_set_value (structure, "framerate", fps);
|
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
if (gst_pad_accept_caps (opeer, pcaps)) {
|
|
|
|
gst_pad_set_caps (pngenc->srcpad, pcaps);
|
|
|
|
} else
|
|
|
|
ret = FALSE;
|
|
|
|
gst_caps_unref (pcaps);
|
|
|
|
gst_object_unref (opeer);
|
|
|
|
}
|
close #333784 unref the result of gst_pad_get_parent() by: Christophe Fergeau.
Original commit message from CVS:
* ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
* ext/esd/esdmon.c: (gst_esdmon_get):
* ext/flac/gstflactag.c: (gst_flac_tag_chain):
* ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
(gst_gdk_pixbuf_sink_getcaps):
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
(gst_jpegenc_setcaps):
* ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
* ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
(gst_smokeenc_setcaps):
* ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
(gst_mngdec_src_getcaps):
* ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
(gst_mngenc_chain):
* ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
* ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
* ext/speex/gstspeexdec.c: (speex_dec_convert),
(speex_dec_src_event), (speex_dec_chain):
* gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
(gst_avimux_audsinkconnect), (gst_avimux_handle_event):
* gst/debug/negotiation.c: (gst_negotiation_getcaps),
(gst_negotiation_pad_link), (gst_negotiation_chain):
* gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
(gst_flxdec_chain):
* gst/interleave/deinterleave.c: (deinterleave_sink_link),
(deinterleave_chain):
* gst/law/mulaw-encode.c: (mulawenc_setcaps):
* gst/median/gstmedian.c: (gst_median_link):
* gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
(gst_monoscope_chain):
* gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
* gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
* sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
* sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
close #333784 unref the result of gst_pad_get_parent()
by: Christophe Fergeau.
2006-03-13 15:49:08 +00:00
|
|
|
|
|
|
|
gst_object_unref (pngenc);
|
|
|
|
|
2005-01-09 01:40:14 +00:00
|
|
|
return ret;
|
2002-11-18 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-08-28 17:59:20 +00:00
|
|
|
gst_pngenc_init (GstPngEnc * pngenc, GstPngEncClass * g_class)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
2005-08-02 11:42:33 +00:00
|
|
|
/* sinkpad */
|
2006-03-15 16:17:12 +00:00
|
|
|
pngenc->sinkpad = gst_pad_new_from_static_template
|
|
|
|
(&pngenc_sink_template, "sink");
|
2005-08-02 11:42:33 +00:00
|
|
|
gst_pad_set_chain_function (pngenc->sinkpad, gst_pngenc_chain);
|
|
|
|
/* gst_pad_set_link_function (pngenc->sinkpad, gst_pngenc_sinklink); */
|
|
|
|
/* gst_pad_set_getcaps_function (pngenc->sinkpad, gst_pngenc_sink_getcaps); */
|
|
|
|
gst_pad_set_setcaps_function (pngenc->sinkpad, gst_pngenc_setcaps);
|
2002-11-18 22:29:38 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (pngenc), pngenc->sinkpad);
|
2003-01-20 23:32:39 +00:00
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
/* srcpad */
|
2006-03-15 16:17:12 +00:00
|
|
|
pngenc->srcpad = gst_pad_new_from_static_template
|
|
|
|
(&pngenc_src_template, "src");
|
2005-08-02 11:42:33 +00:00
|
|
|
/* pngenc->srcpad = gst_pad_new ("src", GST_PAD_SRC); */
|
|
|
|
/* gst_pad_set_getcaps_function (pngenc->srcpad, gst_pngenc_src_getcaps); */
|
|
|
|
/* gst_pad_set_setcaps_function (pngenc->srcpad, gst_pngenc_setcaps); */
|
2002-11-18 22:29:38 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (pngenc), pngenc->srcpad);
|
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
/* init settings */
|
2003-01-20 23:32:39 +00:00
|
|
|
pngenc->png_struct_ptr = NULL;
|
|
|
|
pngenc->png_info_ptr = NULL;
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2004-07-27 09:59:17 +00:00
|
|
|
pngenc->snapshot = DEFAULT_SNAPSHOT;
|
2005-08-02 11:42:33 +00:00
|
|
|
/* pngenc->newmedia = FALSE; */
|
|
|
|
pngenc->compression_level = DEFAULT_COMPRESSION_LEVEL;
|
2002-11-18 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
2004-07-27 09:59:17 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
user_flush_data (png_structp png_ptr)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
GstPngEnc *pngenc;
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2002-11-22 22:25:03 +00:00
|
|
|
pngenc = (GstPngEnc *) png_get_io_ptr (png_ptr);
|
2003-01-20 23:32:39 +00:00
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
gst_pad_push_event (pngenc->srcpad, gst_event_new_flush_start ());
|
|
|
|
gst_pad_push_event (pngenc->srcpad, gst_event_new_flush_stop ());
|
2002-11-18 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
2002-11-22 22:25:03 +00:00
|
|
|
|
2004-07-27 09:59:17 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
user_write_data (png_structp png_ptr, png_bytep data, png_uint_32 length)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
2003-01-20 23:32:39 +00:00
|
|
|
GstBuffer *buffer;
|
|
|
|
GstPngEnc *pngenc;
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2002-11-22 22:25:03 +00:00
|
|
|
pngenc = (GstPngEnc *) png_get_io_ptr (png_ptr);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
buffer = gst_buffer_new ();
|
2002-11-22 22:25:03 +00:00
|
|
|
GST_BUFFER_DATA (buffer) = g_memdup (data, length);
|
2002-11-18 22:29:38 +00:00
|
|
|
GST_BUFFER_SIZE (buffer) = length;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
if (pngenc->buffer_out) {
|
2004-03-06 20:56:27 +00:00
|
|
|
GstBuffer *merge;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2004-03-06 20:56:27 +00:00
|
|
|
merge = gst_buffer_merge (pngenc->buffer_out, buffer);
|
2003-01-20 23:32:39 +00:00
|
|
|
gst_buffer_unref (buffer);
|
2004-03-06 20:56:27 +00:00
|
|
|
gst_buffer_unref (pngenc->buffer_out);
|
|
|
|
pngenc->buffer_out = merge;
|
2004-03-14 22:34:33 +00:00
|
|
|
} else
|
2002-11-18 22:29:38 +00:00
|
|
|
pngenc->buffer_out = buffer;
|
|
|
|
}
|
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_pngenc_chain (GstPad * pad, GstBuffer * buf)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
|
|
|
GstPngEnc *pngenc;
|
2003-01-20 23:32:39 +00:00
|
|
|
gint row_index;
|
|
|
|
png_byte *row_pointers[MAX_HEIGHT];
|
2005-08-02 11:42:33 +00:00
|
|
|
GstFlowReturn ret = GST_FLOW_OK;
|
2003-01-20 23:32:39 +00:00
|
|
|
|
|
|
|
pngenc = GST_PNGENC (gst_pad_get_parent (pad));
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2005-11-18 18:19:21 +00:00
|
|
|
GST_DEBUG_OBJECT (pngenc, "BEGINNING");
|
|
|
|
|
2003-01-20 23:32:39 +00:00
|
|
|
pngenc->buffer_out = NULL;
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2003-01-20 23:32:39 +00:00
|
|
|
/* initialize png struct stuff */
|
|
|
|
pngenc->png_struct_ptr = png_create_write_struct (PNG_LIBPNG_VER_STRING,
|
2004-03-14 22:34:33 +00:00
|
|
|
(png_voidp) NULL, user_error_fn, user_warning_fn);
|
2005-01-09 01:40:14 +00:00
|
|
|
if (pngenc->png_struct_ptr == NULL) {
|
|
|
|
gst_buffer_unref (buf);
|
|
|
|
GST_ELEMENT_ERROR (pngenc, LIBRARY, INIT, (NULL),
|
|
|
|
("Failed to initialize png structure"));
|
2005-08-02 11:42:33 +00:00
|
|
|
ret = GST_FLOW_ERROR;
|
|
|
|
goto done;
|
2005-01-09 01:40:14 +00:00
|
|
|
}
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2003-01-20 23:32:39 +00:00
|
|
|
pngenc->png_info_ptr = png_create_info_struct (pngenc->png_struct_ptr);
|
2004-03-14 22:34:33 +00:00
|
|
|
if (!pngenc->png_info_ptr) {
|
2005-01-09 01:40:14 +00:00
|
|
|
gst_buffer_unref (buf);
|
|
|
|
png_destroy_write_struct (&(pngenc->png_struct_ptr), (png_infopp) NULL);
|
|
|
|
GST_ELEMENT_ERROR (pngenc, LIBRARY, INIT, (NULL),
|
|
|
|
("Failed to initialize the png info structure"));
|
2005-08-02 11:42:33 +00:00
|
|
|
ret = GST_FLOW_ERROR;
|
|
|
|
goto done;
|
2003-01-20 23:32:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* non-0 return is from a longjmp inside of libpng */
|
2004-03-14 22:34:33 +00:00
|
|
|
if (setjmp (pngenc->png_struct_ptr->jmpbuf) != 0) {
|
2005-01-09 01:40:14 +00:00
|
|
|
gst_buffer_unref (buf);
|
2003-01-20 23:32:39 +00:00
|
|
|
png_destroy_write_struct (&pngenc->png_struct_ptr, &pngenc->png_info_ptr);
|
2005-01-09 01:40:14 +00:00
|
|
|
GST_ELEMENT_ERROR (pngenc, LIBRARY, FAILED, (NULL),
|
|
|
|
("returning from longjmp"));
|
2005-08-02 11:42:33 +00:00
|
|
|
ret = GST_FLOW_ERROR;
|
|
|
|
goto done;
|
2003-01-20 23:32:39 +00:00
|
|
|
}
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2003-01-20 23:32:39 +00:00
|
|
|
png_set_filter (pngenc->png_struct_ptr, 0,
|
2004-03-14 22:34:33 +00:00
|
|
|
PNG_FILTER_NONE | PNG_FILTER_VALUE_NONE);
|
2005-01-09 16:30:15 +00:00
|
|
|
png_set_compression_level (pngenc->png_struct_ptr, pngenc->compression_level);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
png_set_IHDR (pngenc->png_struct_ptr,
|
|
|
|
pngenc->png_info_ptr,
|
|
|
|
pngenc->width,
|
|
|
|
pngenc->height,
|
2005-01-07 10:27:20 +00:00
|
|
|
8,
|
|
|
|
(pngenc->bpp == 32) ? PNG_COLOR_TYPE_RGBA : PNG_COLOR_TYPE_RGB,
|
2004-03-14 22:34:33 +00:00
|
|
|
PNG_INTERLACE_NONE,
|
|
|
|
PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2003-01-20 23:32:39 +00:00
|
|
|
png_set_write_fn (pngenc->png_struct_ptr, pngenc,
|
2004-03-14 22:34:33 +00:00
|
|
|
(png_rw_ptr) user_write_data, user_flush_data);
|
2003-01-20 23:32:39 +00:00
|
|
|
|
|
|
|
for (row_index = 0; row_index < pngenc->height; row_index++)
|
|
|
|
row_pointers[row_index] = GST_BUFFER_DATA (buf) +
|
2005-01-09 01:40:14 +00:00
|
|
|
(row_index * pngenc->png_info_ptr->rowbytes);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2002-11-22 22:25:03 +00:00
|
|
|
png_write_info (pngenc->png_struct_ptr, pngenc->png_info_ptr);
|
|
|
|
png_write_image (pngenc->png_struct_ptr, row_pointers);
|
|
|
|
png_write_end (pngenc->png_struct_ptr, NULL);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2002-11-22 22:25:03 +00:00
|
|
|
user_flush_data (pngenc->png_struct_ptr);
|
2003-01-20 23:32:39 +00:00
|
|
|
|
2002-11-22 22:25:03 +00:00
|
|
|
png_destroy_info_struct (pngenc->png_struct_ptr, &pngenc->png_info_ptr);
|
2003-01-20 23:32:39 +00:00
|
|
|
png_destroy_write_struct (&pngenc->png_struct_ptr, (png_infopp) NULL);
|
2004-11-23 14:24:03 +00:00
|
|
|
gst_buffer_stamp (pngenc->buffer_out, buf);
|
2004-07-27 09:59:17 +00:00
|
|
|
gst_buffer_unref (buf);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2005-08-02 11:42:33 +00:00
|
|
|
if ((ret = gst_pad_push (pngenc->srcpad, pngenc->buffer_out)) != GST_FLOW_OK)
|
|
|
|
goto done;
|
2003-06-07 00:17:53 +00:00
|
|
|
|
2004-07-27 09:59:17 +00:00
|
|
|
if (pngenc->snapshot) {
|
2006-01-23 09:59:03 +00:00
|
|
|
GstEvent *event;
|
|
|
|
|
2005-11-18 18:19:21 +00:00
|
|
|
GST_DEBUG_OBJECT (pngenc, "snapshot mode, sending EOS");
|
2004-07-27 09:59:17 +00:00
|
|
|
/* send EOS event, since a frame has been pushed out */
|
2006-01-23 09:59:03 +00:00
|
|
|
event = gst_event_new_eos ();
|
2005-08-02 11:42:33 +00:00
|
|
|
|
|
|
|
ret = gst_pad_push_event (pngenc->srcpad, event);
|
|
|
|
|
2005-11-18 18:19:21 +00:00
|
|
|
if (!(GST_FLOW_IS_FATAL (ret)))
|
|
|
|
ret = GST_FLOW_UNEXPECTED;
|
2004-07-27 09:59:17 +00:00
|
|
|
}
|
2005-08-02 11:42:33 +00:00
|
|
|
/* else if (pngenc->newmedia) { */
|
|
|
|
/* /\* send new media discont *\/ */
|
|
|
|
/* GstEvent *newmedia_event; */
|
|
|
|
|
|
|
|
/* newmedia_event = */
|
|
|
|
/* gst_event_new_discontinuous (TRUE, GST_FORMAT_TIME, (gint64) 0, */
|
|
|
|
/* GST_FORMAT_UNDEFINED); */
|
|
|
|
/* ret = gst_pad_push (pngenc->srcpad, GST_DATA (newmedia_event)); */
|
|
|
|
/* } */
|
|
|
|
done:
|
2005-11-18 18:19:21 +00:00
|
|
|
GST_DEBUG_OBJECT (pngenc, "END, ret:%d", ret);
|
|
|
|
|
|
|
|
gst_object_unref (pngenc);
|
2005-08-02 11:42:33 +00:00
|
|
|
return ret;
|
2004-07-27 09:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_pngenc_get_property (GObject * object,
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstPngEnc *pngenc;
|
|
|
|
|
|
|
|
pngenc = GST_PNGENC (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_SNAPSHOT:
|
|
|
|
g_value_set_boolean (value, pngenc->snapshot);
|
|
|
|
break;
|
2005-08-02 11:42:33 +00:00
|
|
|
/* case ARG_NEWMEDIA: */
|
|
|
|
/* g_value_set_boolean (value, pngenc->newmedia); */
|
|
|
|
/* break; */
|
2005-01-09 16:30:15 +00:00
|
|
|
case ARG_COMPRESSION_LEVEL:
|
|
|
|
g_value_set_uint (value, pngenc->compression_level);
|
|
|
|
break;
|
2004-07-27 09:59:17 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_pngenc_set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstPngEnc *pngenc;
|
|
|
|
|
|
|
|
pngenc = GST_PNGENC (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_SNAPSHOT:
|
|
|
|
pngenc->snapshot = g_value_get_boolean (value);
|
|
|
|
break;
|
2005-08-02 11:42:33 +00:00
|
|
|
/* case ARG_NEWMEDIA: */
|
|
|
|
/* pngenc->newmedia = g_value_get_boolean (value); */
|
|
|
|
/* break; */
|
2005-01-09 16:30:15 +00:00
|
|
|
case ARG_COMPRESSION_LEVEL:
|
|
|
|
pngenc->compression_level = g_value_get_uint (value);
|
|
|
|
break;
|
2004-07-27 09:59:17 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2002-11-18 22:29:38 +00:00
|
|
|
}
|