2004-05-19 14:15:41 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2004 Benjamin Otte <otte@gnome.org>
|
|
|
|
*
|
|
|
|
* 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-05-19 14:15:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2005-10-05 11:38:29 +00:00
|
|
|
#include <gst/base/gstbasesink.h>
|
2004-05-19 14:15:41 +00:00
|
|
|
#include "tests.h"
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_test_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_test_debug
|
|
|
|
|
|
|
|
/* This plugin does all the tests registered in the tests.h file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define GST_TYPE_TEST \
|
|
|
|
(gst_test_get_type())
|
|
|
|
#define GST_TEST(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TEST,GstTest))
|
|
|
|
#define GST_TEST_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TEST,GstTestClass))
|
|
|
|
#define GST_TEST_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj),GST_TYPE_TEST,GstTestClass))
|
|
|
|
#define GST_IS_TEST(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TEST))
|
2006-09-16 21:57:29 +00:00
|
|
|
#define GST_IS_TEST_CLASS(klass) \
|
2004-05-19 14:15:41 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TEST))
|
|
|
|
|
|
|
|
typedef struct _GstTest GstTest;
|
|
|
|
typedef struct _GstTestClass GstTestClass;
|
|
|
|
|
|
|
|
struct _GstTest
|
|
|
|
{
|
2005-10-05 11:38:29 +00:00
|
|
|
GstBaseSink basesink;
|
2004-05-19 14:15:41 +00:00
|
|
|
|
|
|
|
gpointer tests[TESTS_COUNT];
|
|
|
|
GValue values[TESTS_COUNT];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstTestClass
|
|
|
|
{
|
2005-10-05 11:38:29 +00:00
|
|
|
GstBaseSinkClass parent_class;
|
2004-05-19 14:15:41 +00:00
|
|
|
|
|
|
|
gchar *param_names[2 * TESTS_COUNT];
|
|
|
|
};
|
|
|
|
|
Fix a bunch of leaks shown by the newly-added states test.
Original commit message from CVS:
* ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
(gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
* ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
(gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
(gst_gconf_audio_src_finalize), (do_toggle_element):
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
(gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
(do_toggle_element):
* ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
(gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
(gst_gconf_video_src_finalize), (do_toggle_element):
* ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
(gst_switch_sink_reset), (gst_switch_sink_set_child):
* ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
* ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
* ext/shout2/gstshout2.c: (gst_shout2send_class_init),
(gst_shout2send_init), (gst_shout2send_finalize):
* gst/debug/testplugin.c: (gst_test_class_init),
(gst_test_finalize):
* gst/flx/gstflxdec.c: (gst_flxdec_class_init),
(gst_flxdec_dispose):
* gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
* gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
(gst_rtspsrc_finalize):
* gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
* gst/rtsp/rtspextwms.h:
* gst/smpte/gstsmpte.c: (gst_smpte_class_init),
(gst_smpte_finalize):
* gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
* gst/udp/gstudpsink.c: (gst_udpsink_class_init),
(gst_udpsink_finalize):
* gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
(gst_wavparse_sink_activate):
* sys/oss/gstosssink.c: (gst_oss_sink_finalise):
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_finalize):
* sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
* sys/v4l2/gstv4l2object.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
(gst_v4l2src_finalize):
* sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
Fix a bunch of leaks shown by the newly-added states test.
2007-03-04 13:52:03 +00:00
|
|
|
static void gst_test_finalize (GstTest * test);
|
|
|
|
|
2005-10-05 11:38:29 +00:00
|
|
|
static gboolean gst_test_start (GstBaseSink * trans);
|
|
|
|
static gboolean gst_test_stop (GstBaseSink * trans);
|
|
|
|
static gboolean gst_test_sink_event (GstBaseSink * basesink, GstEvent * event);
|
|
|
|
static GstFlowReturn gst_test_render_buffer (GstBaseSink * basesink,
|
|
|
|
GstBuffer * buf);
|
|
|
|
|
|
|
|
static void gst_test_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_test_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
|
|
|
|
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
2010-03-17 17:23:00 +00:00
|
|
|
GType gst_test_get_type (void);
|
2011-06-07 10:06:08 +00:00
|
|
|
#define gst_test_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE (GstTest, gst_test, GST_TYPE_BASE_SINK);
|
2004-05-19 14:15:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_test_class_init (GstTestClass * klass)
|
|
|
|
{
|
2005-10-05 11:38:29 +00:00
|
|
|
GstBaseSinkClass *basesink_class = GST_BASE_SINK_CLASS (klass);
|
2011-06-07 10:06:08 +00:00
|
|
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
|
2005-10-05 11:38:29 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2004-05-19 14:15:41 +00:00
|
|
|
guint i;
|
|
|
|
|
2011-06-07 10:06:08 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_test_debug, "testsink", 0,
|
|
|
|
"debugging category for testsink element");
|
|
|
|
|
2010-06-06 15:52:40 +00:00
|
|
|
object_class->set_property = gst_test_set_property;
|
|
|
|
object_class->get_property = gst_test_get_property;
|
2004-05-19 14:15:41 +00:00
|
|
|
|
Fix a bunch of leaks shown by the newly-added states test.
Original commit message from CVS:
* ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
(gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
* ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
(gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
(gst_gconf_audio_src_finalize), (do_toggle_element):
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
(gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
(do_toggle_element):
* ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
(gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
(gst_gconf_video_src_finalize), (do_toggle_element):
* ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
(gst_switch_sink_reset), (gst_switch_sink_set_child):
* ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
* ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
* ext/shout2/gstshout2.c: (gst_shout2send_class_init),
(gst_shout2send_init), (gst_shout2send_finalize):
* gst/debug/testplugin.c: (gst_test_class_init),
(gst_test_finalize):
* gst/flx/gstflxdec.c: (gst_flxdec_class_init),
(gst_flxdec_dispose):
* gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
* gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
(gst_rtspsrc_finalize):
* gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
* gst/rtsp/rtspextwms.h:
* gst/smpte/gstsmpte.c: (gst_smpte_class_init),
(gst_smpte_finalize):
* gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
* gst/udp/gstudpsink.c: (gst_udpsink_class_init),
(gst_udpsink_finalize):
* gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
(gst_wavparse_sink_activate):
* sys/oss/gstosssink.c: (gst_oss_sink_finalise):
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_finalize):
* sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
* sys/v4l2/gstv4l2object.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
(gst_v4l2src_finalize):
* sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
Fix a bunch of leaks shown by the newly-added states test.
2007-03-04 13:52:03 +00:00
|
|
|
object_class->finalize = (GObjectFinalizeFunc) gst_test_finalize;
|
|
|
|
|
2004-05-19 14:15:41 +00:00
|
|
|
for (i = 0; i < TESTS_COUNT; i++) {
|
|
|
|
GParamSpec *spec;
|
|
|
|
|
|
|
|
spec = tests[i].get_spec (&tests[i], FALSE);
|
|
|
|
klass->param_names[2 * i] = g_strdup (g_param_spec_get_name (spec));
|
2005-10-05 11:38:29 +00:00
|
|
|
g_object_class_install_property (object_class, 2 * i + 1, spec);
|
2004-05-19 14:15:41 +00:00
|
|
|
spec = tests[i].get_spec (&tests[i], TRUE);
|
|
|
|
klass->param_names[2 * i + 1] = g_strdup (g_param_spec_get_name (spec));
|
2005-10-05 11:38:29 +00:00
|
|
|
g_object_class_install_property (object_class, 2 * i + 2, spec);
|
2004-05-19 14:15:41 +00:00
|
|
|
}
|
2005-10-05 11:38:29 +00:00
|
|
|
|
2016-03-04 01:30:12 +00:00
|
|
|
gst_element_class_add_static_pad_template (gstelement_class, &sinktemplate);
|
2011-06-07 10:06:08 +00:00
|
|
|
|
2012-04-09 23:51:41 +00:00
|
|
|
gst_element_class_set_static_metadata (gstelement_class, "Test plugin",
|
2011-06-07 10:06:08 +00:00
|
|
|
"Testing", "perform a number of tests", "Benjamin Otte <otte@gnome>");
|
|
|
|
|
2005-10-05 11:38:29 +00:00
|
|
|
basesink_class->render = GST_DEBUG_FUNCPTR (gst_test_render_buffer);
|
|
|
|
basesink_class->event = GST_DEBUG_FUNCPTR (gst_test_sink_event);
|
|
|
|
basesink_class->start = GST_DEBUG_FUNCPTR (gst_test_start);
|
|
|
|
basesink_class->stop = GST_DEBUG_FUNCPTR (gst_test_stop);
|
2004-05-19 14:15:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-07 10:06:08 +00:00
|
|
|
gst_test_init (GstTest * test)
|
2004-05-19 14:15:41 +00:00
|
|
|
{
|
|
|
|
GstTestClass *klass;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
klass = GST_TEST_GET_CLASS (test);
|
|
|
|
for (i = 0; i < TESTS_COUNT; i++) {
|
|
|
|
GParamSpec *spec = g_object_class_find_property (G_OBJECT_CLASS (klass),
|
|
|
|
klass->param_names[2 * i + 1]);
|
|
|
|
|
|
|
|
g_value_init (&test->values[i], G_PARAM_SPEC_VALUE_TYPE (spec));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Fix a bunch of leaks shown by the newly-added states test.
Original commit message from CVS:
* ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
(gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
* ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
(gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
(gst_gconf_audio_src_finalize), (do_toggle_element):
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
(gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
(do_toggle_element):
* ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
(gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
(gst_gconf_video_src_finalize), (do_toggle_element):
* ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
(gst_switch_sink_reset), (gst_switch_sink_set_child):
* ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
* ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
* ext/shout2/gstshout2.c: (gst_shout2send_class_init),
(gst_shout2send_init), (gst_shout2send_finalize):
* gst/debug/testplugin.c: (gst_test_class_init),
(gst_test_finalize):
* gst/flx/gstflxdec.c: (gst_flxdec_class_init),
(gst_flxdec_dispose):
* gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
* gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
(gst_rtspsrc_finalize):
* gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
* gst/rtsp/rtspextwms.h:
* gst/smpte/gstsmpte.c: (gst_smpte_class_init),
(gst_smpte_finalize):
* gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
* gst/udp/gstudpsink.c: (gst_udpsink_class_init),
(gst_udpsink_finalize):
* gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
(gst_wavparse_sink_activate):
* sys/oss/gstosssink.c: (gst_oss_sink_finalise):
* sys/oss/gstosssrc.c: (gst_oss_src_class_init),
(gst_oss_src_finalize):
* sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
* sys/v4l2/gstv4l2object.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
(gst_v4l2src_finalize):
* sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
Fix a bunch of leaks shown by the newly-added states test.
2007-03-04 13:52:03 +00:00
|
|
|
static void
|
|
|
|
gst_test_finalize (GstTest * test)
|
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < TESTS_COUNT; i++) {
|
|
|
|
g_value_unset (&test->values[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize ((GObject *) test);
|
|
|
|
}
|
|
|
|
|
2004-05-19 14:15:41 +00:00
|
|
|
static void
|
|
|
|
tests_unset (GstTest * test)
|
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < TESTS_COUNT; i++) {
|
|
|
|
if (test->tests[i]) {
|
|
|
|
tests[i].free (test->tests[i]);
|
|
|
|
test->tests[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tests_set (GstTest * test)
|
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < TESTS_COUNT; i++) {
|
|
|
|
g_assert (test->tests[i] == NULL);
|
|
|
|
test->tests[i] = tests[i].new (&tests[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-05 11:38:29 +00:00
|
|
|
static gboolean
|
|
|
|
gst_test_sink_event (GstBaseSink * basesink, GstEvent * event)
|
2004-05-19 14:15:41 +00:00
|
|
|
{
|
2005-10-05 11:38:29 +00:00
|
|
|
GstTestClass *klass = GST_TEST_GET_CLASS (basesink);
|
|
|
|
GstTest *test = GST_TEST (basesink);
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
/*
|
|
|
|
case GST_EVENT_NEWSEGMENT:
|
|
|
|
if (GST_EVENT_DISCONT_NEW_MEDIA (event)) {
|
|
|
|
tests_unset (test);
|
|
|
|
tests_set (test);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
*/
|
|
|
|
case GST_EVENT_EOS:{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (test));
|
|
|
|
for (i = 0; i < TESTS_COUNT; i++) {
|
|
|
|
if (test->tests[i]) {
|
|
|
|
if (!tests[i].finish (test->tests[i], &test->values[i])) {
|
|
|
|
GValue v = { 0, };
|
|
|
|
gchar *real, *expected;
|
|
|
|
|
|
|
|
expected = gst_value_serialize (&test->values[i]);
|
|
|
|
g_value_init (&v, G_VALUE_TYPE (&test->values[i]));
|
|
|
|
g_object_get_property (G_OBJECT (test), klass->param_names[2 * i],
|
|
|
|
&v);
|
|
|
|
real = gst_value_serialize (&v);
|
|
|
|
g_value_unset (&v);
|
|
|
|
GST_ELEMENT_ERROR (test, STREAM, FORMAT, (NULL),
|
|
|
|
("test %s returned value \"%s\" and not expected value \"%s\"",
|
|
|
|
klass->param_names[2 * i], real, expected));
|
|
|
|
g_free (real);
|
|
|
|
g_free (expected);
|
2004-05-19 14:15:41 +00:00
|
|
|
}
|
2005-10-05 11:38:29 +00:00
|
|
|
g_object_notify (G_OBJECT (test), klass->param_names[2 * i]);
|
2004-05-19 14:15:41 +00:00
|
|
|
}
|
2005-10-05 11:38:29 +00:00
|
|
|
}
|
|
|
|
g_object_thaw_notify (G_OBJECT (test));
|
|
|
|
break;
|
2004-05-19 14:15:41 +00:00
|
|
|
}
|
2005-10-05 11:38:29 +00:00
|
|
|
default:
|
|
|
|
break;
|
2004-05-19 14:15:41 +00:00
|
|
|
}
|
|
|
|
|
2011-12-02 21:25:17 +00:00
|
|
|
return GST_BASE_SINK_CLASS (parent_class)->event (basesink, event);
|
2005-10-05 11:38:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_test_render_buffer (GstBaseSink * basesink, GstBuffer * buf)
|
|
|
|
{
|
|
|
|
GstTest *test = GST_TEST (basesink);
|
|
|
|
guint i;
|
|
|
|
|
2004-05-19 14:15:41 +00:00
|
|
|
for (i = 0; i < TESTS_COUNT; i++) {
|
|
|
|
if (test->tests[i]) {
|
2005-10-05 11:38:29 +00:00
|
|
|
tests[i].add (test->tests[i], buf);
|
2004-05-19 14:15:41 +00:00
|
|
|
}
|
|
|
|
}
|
2005-10-05 11:38:29 +00:00
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_test_start (GstBaseSink * sink)
|
|
|
|
{
|
|
|
|
GstTest *test = GST_TEST (sink);
|
|
|
|
|
|
|
|
tests_set (test);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_test_stop (GstBaseSink * sink)
|
|
|
|
{
|
|
|
|
GstTest *test = GST_TEST (sink);
|
|
|
|
|
|
|
|
tests_unset (test);
|
|
|
|
return TRUE;
|
2004-05-19 14:15:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_test_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstTest *test = GST_TEST (object);
|
|
|
|
|
|
|
|
if (prop_id == 0 || prop_id > 2 * TESTS_COUNT) {
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prop_id % 2) {
|
|
|
|
/* real values can't be set */
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
} else {
|
|
|
|
/* expected values */
|
2005-11-21 16:36:05 +00:00
|
|
|
GST_OBJECT_LOCK (test);
|
2004-05-19 14:15:41 +00:00
|
|
|
g_value_copy (value, &test->values[prop_id / 2 - 1]);
|
2005-11-21 16:36:05 +00:00
|
|
|
GST_OBJECT_UNLOCK (test);
|
2004-05-19 14:15:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_test_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstTest *test = GST_TEST (object);
|
|
|
|
guint id = (prop_id - 1) / 2;
|
|
|
|
|
|
|
|
if (prop_id == 0 || prop_id > 2 * TESTS_COUNT) {
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-21 16:36:05 +00:00
|
|
|
GST_OBJECT_LOCK (test);
|
2005-10-05 11:38:29 +00:00
|
|
|
|
2004-05-19 14:15:41 +00:00
|
|
|
if (prop_id % 2) {
|
|
|
|
/* real values */
|
|
|
|
tests[id].get_value (test->tests[id], value);
|
|
|
|
} else {
|
|
|
|
/* expected values */
|
|
|
|
g_value_copy (&test->values[id], value);
|
|
|
|
}
|
2005-10-05 11:38:29 +00:00
|
|
|
|
2005-11-21 16:36:05 +00:00
|
|
|
GST_OBJECT_UNLOCK (test);
|
2004-05-19 14:15:41 +00:00
|
|
|
}
|