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>
|
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
|
|
|
|
};
|
|
|
|
|
2004-07-27 09:59:17 +00:00
|
|
|
#define DEFAULT_SNAPSHOT TRUE
|
|
|
|
|
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,
|
|
|
|
ARG_NEWMEDIA
|
2002-11-18 22:29:38 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_pngenc_base_init (gpointer g_class);
|
|
|
|
static void gst_pngenc_class_init (GstPngEncClass * klass);
|
|
|
|
static void gst_pngenc_init (GstPngEnc * pngenc);
|
2004-07-27 09:59:17 +00:00
|
|
|
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);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_pngenc_chain (GstPad * pad, GstData * _data);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2004-01-03 13:14:20 +00:00
|
|
|
GstPadTemplate *pngenc_src_template, *pngenc_sink_template;
|
|
|
|
|
2002-11-18 22:29:38 +00:00
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GType
|
|
|
|
gst_pngenc_get_type (void)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
|
|
|
static GType pngenc_type = 0;
|
|
|
|
|
|
|
|
if (!pngenc_type) {
|
|
|
|
static const GTypeInfo pngenc_info = {
|
2003-11-02 00:21:14 +00:00
|
|
|
sizeof (GstPngEncClass),
|
|
|
|
gst_pngenc_base_init,
|
2002-11-18 22:29:38 +00:00
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_pngenc_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof (GstPngEnc),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) gst_pngenc_init,
|
|
|
|
};
|
|
|
|
|
2003-01-20 23:32:39 +00:00
|
|
|
pngenc_type = g_type_register_static (GST_TYPE_ELEMENT, "GstPngEnc",
|
2004-03-15 19:32:27 +00:00
|
|
|
&pngenc_info, 0);
|
2002-11-18 22:29:38 +00:00
|
|
|
}
|
|
|
|
return pngenc_type;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static GstCaps *
|
2003-11-02 00:21:14 +00:00
|
|
|
png_caps_factory (void)
|
|
|
|
{
|
2003-12-22 01:47:09 +00:00
|
|
|
return gst_caps_new_simple ("video/x-png",
|
2004-03-14 22:34:33 +00:00
|
|
|
"width", GST_TYPE_INT_RANGE, 16, 4096,
|
|
|
|
"height", GST_TYPE_INT_RANGE, 16, 4096,
|
|
|
|
"framerate", GST_TYPE_DOUBLE_RANGE, 0.0, G_MAXDOUBLE, NULL);
|
2003-11-02 00:21:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static GstCaps *
|
2003-11-02 00:21:14 +00:00
|
|
|
raw_caps_factory (void)
|
2004-03-14 22:34:33 +00:00
|
|
|
{
|
2004-01-12 02:01:51 +00:00
|
|
|
return gst_caps_from_string (GST_VIDEO_CAPS_RGB);
|
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);
|
|
|
|
GstCaps *raw_caps, *png_caps;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-11-02 00:21:14 +00:00
|
|
|
raw_caps = raw_caps_factory ();
|
|
|
|
png_caps = png_caps_factory ();
|
|
|
|
|
|
|
|
pngenc_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PAD_ALWAYS, raw_caps);
|
|
|
|
|
2003-11-02 00:21:14 +00:00
|
|
|
pngenc_src_template = gst_pad_template_new ("src", GST_PAD_SRC,
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PAD_ALWAYS, png_caps);
|
|
|
|
|
2003-11-02 00:21:14 +00:00
|
|
|
gst_element_class_add_pad_template (element_class, pngenc_sink_template);
|
|
|
|
gst_element_class_add_pad_template (element_class, pngenc_src_template);
|
|
|
|
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
|
|
|
|
|
|
|
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));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, ARG_NEWMEDIA,
|
|
|
|
g_param_spec_boolean ("newmedia", "newmedia",
|
|
|
|
"Send new media discontinuity after encoding each frame",
|
2004-07-30 11:48:17 +00:00
|
|
|
FALSE, (GParamFlags) G_PARAM_READWRITE));
|
2004-07-27 09:59:17 +00:00
|
|
|
|
|
|
|
gstelement_class->get_property = gst_pngenc_get_property;
|
|
|
|
gstelement_class->set_property = gst_pngenc_set_property;
|
2002-11-18 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-01-10 13:38:32 +00:00
|
|
|
static GstPadLinkReturn
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_pngenc_sinklink (GstPad * pad, const GstCaps * caps)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
|
|
|
GstPngEnc *pngenc;
|
2003-12-22 01:47:09 +00:00
|
|
|
gdouble fps;
|
|
|
|
GstStructure *structure;
|
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
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
caps = gst_caps_new_simple ("video/x-png",
|
|
|
|
"framerate", G_TYPE_DOUBLE, fps,
|
2004-03-14 22:34:33 +00:00
|
|
|
"width", G_TYPE_INT, pngenc->width,
|
|
|
|
"height", G_TYPE_INT, pngenc->height, NULL);
|
2003-07-06 20:49:52 +00:00
|
|
|
|
2002-11-18 22:29:38 +00:00
|
|
|
return gst_pad_try_set_caps (pngenc->srcpad, caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_pngenc_init (GstPngEnc * pngenc)
|
|
|
|
{
|
2002-11-22 22:25:03 +00:00
|
|
|
pngenc->sinkpad = gst_pad_new_from_template (pngenc_sink_template, "sink");
|
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
|
|
|
|
|
|
|
pngenc->srcpad = gst_pad_new ("src", GST_PAD_SRC);
|
2002-11-18 22:29:38 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (pngenc), pngenc->srcpad);
|
|
|
|
|
|
|
|
gst_pad_set_chain_function (pngenc->sinkpad, gst_pngenc_chain);
|
2003-01-20 23:32:39 +00:00
|
|
|
gst_pad_set_link_function (pngenc->sinkpad, gst_pngenc_sinklink);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
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;
|
2004-07-30 09:35:09 +00:00
|
|
|
pngenc->newmedia = FALSE;
|
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
|
|
|
|
2003-10-08 16:08:18 +00:00
|
|
|
gst_pad_push (pngenc->srcpad, GST_DATA (gst_event_new (GST_EVENT_FLUSH)));
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_pngenc_chain (GstPad * pad, GstData * _data)
|
2002-11-18 22:29:38 +00:00
|
|
|
{
|
2003-10-08 16:08:18 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
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];
|
|
|
|
|
|
|
|
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;
|
2004-03-14 22:34:33 +00:00
|
|
|
if (!GST_PAD_IS_USABLE (pngenc->srcpad)) {
|
2002-11-18 22:29:38 +00:00
|
|
|
gst_buffer_unref (buf);
|
2003-01-20 23:32:39 +00:00
|
|
|
return;
|
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);
|
2003-01-20 23:32:39 +00:00
|
|
|
/* FIXME: better error handling */
|
|
|
|
if (pngenc->png_struct_ptr == NULL)
|
2004-03-14 22:34:33 +00:00
|
|
|
g_warning ("Failed to initialize png structure");
|
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) {
|
2003-01-20 23:32:39 +00:00
|
|
|
png_destroy_read_struct (&(pngenc->png_struct_ptr), (png_infopp) NULL,
|
2004-03-15 19:32:27 +00:00
|
|
|
(png_infopp) NULL);
|
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) {
|
2003-06-29 19:46:12 +00:00
|
|
|
GST_DEBUG ("returning from longjmp");
|
2003-01-20 23:32:39 +00:00
|
|
|
png_destroy_write_struct (&pngenc->png_struct_ptr, &pngenc->png_info_ptr);
|
|
|
|
return;
|
|
|
|
}
|
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);
|
2002-11-22 22:25:03 +00:00
|
|
|
png_set_compression_level (pngenc->png_struct_ptr, 9);
|
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,
|
|
|
|
pngenc->bpp / 3,
|
|
|
|
PNG_COLOR_TYPE_RGB,
|
|
|
|
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) +
|
2004-03-15 19:32:27 +00:00
|
|
|
(pngenc->width * row_index * pngenc->bpp / 8);
|
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
|
|
|
|
2003-10-08 16:08:18 +00:00
|
|
|
gst_pad_push (pngenc->srcpad, GST_DATA (pngenc->buffer_out));
|
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 */
|
|
|
|
GstEvent *event = gst_event_new (GST_EVENT_EOS);
|
2002-11-18 22:29:38 +00:00
|
|
|
|
2004-07-27 09:59:17 +00:00
|
|
|
gst_pad_push (pngenc->srcpad, GST_DATA (event));
|
|
|
|
gst_element_set_eos (GST_ELEMENT (pngenc));
|
2004-07-30 09:35:09 +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);
|
|
|
|
gst_pad_push (pngenc->srcpad, GST_DATA (newmedia_event));
|
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;
|
2004-07-30 09:35:09 +00:00
|
|
|
case ARG_NEWMEDIA:
|
|
|
|
g_value_set_boolean (value, pngenc->newmedia);
|
|
|
|
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;
|
2004-07-30 09:35:09 +00:00
|
|
|
case ARG_NEWMEDIA:
|
|
|
|
pngenc->newmedia = g_value_get_boolean (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
|
|
|
}
|