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
|
|
|
|
2003-01-20 23:32:39 +00:00
|
|
|
#define MAX_HEIGHT 4096
|
2002-11-18 22:29:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
GstElementDetails gst_pngenc_details = {
|
2003-07-19 23:25:25 +00:00
|
|
|
"PNG encoder",
|
2003-11-16 22:02:22 +00:00
|
|
|
"Codec/Encoder/Image",
|
2003-07-08 17:19:52 +00:00
|
|
|
"Encode a video frame to a .png image",
|
2002-11-18 22:29:38 +00:00
|
|
|
"Jeremy SIMON <jsimon13@yahoo.fr>",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Filter signals and args */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2005-08-02 11:42:33 +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 ], "
|
|
|
|
"height = (int) [ 16, 4096 ], " "framerate = (double) [ 0.0, MAX ]")
|
|
|
|
);
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
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));
|
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;
|
2003-12-22 01:47:09 +00:00
|
|
|
gdouble fps;
|
|
|
|
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);
|
|
|
|
gst_structure_get_double (structure, "framerate", &fps);
|
|
|
|
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",
|
|
|
|
"framerate", G_TYPE_DOUBLE, fps,
|
|
|
|
"width", G_TYPE_INT, pngenc->width,
|
|
|
|
"height", G_TYPE_INT, pngenc->height, NULL);
|
|
|
|
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);
|
|
|
|
}
|
2005-01-09 01:40:14 +00:00
|
|
|
return ret;
|
2002-11-18 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_pngenc_init (GstPngEnc * pngenc)
|
|
|
|
{
|
2005-08-02 11:42:33 +00:00
|
|
|
/* sinkpad */
|
2005-01-07 10:27:20 +00:00
|
|
|
pngenc->sinkpad = gst_pad_new_from_template
|
|
|
|
(gst_static_pad_template_get (&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 */
|
|
|
|
pngenc->srcpad = gst_pad_new_from_template
|
|
|
|
(gst_static_pad_template_get (&pngenc_src_template), "src");
|
|
|
|
/* 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
|
|
|
|
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) {
|
|
|
|
/* send EOS event, since a frame has been pushed out */
|
2005-08-02 11:42:33 +00:00
|
|
|
GstEvent *event = gst_event_new_eos ();
|
|
|
|
|
|
|
|
ret = gst_pad_push_event (pngenc->srcpad, event);
|
|
|
|
|
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:
|
|
|
|
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
|
|
|
}
|