summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@gmail.com>2009-04-28 02:36:59 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2009-04-28 02:36:59 +0100
commit3a6f3fb37fce7a217a4870f553a9daf70f16817b (patch)
treea5b5647e7e4cbfcaf6032ae99343404699d9a369 /tests
parentaf1422b9471feda6e64fcb8209aed806e5a35f41 (diff)
downloadclutter-gst-3a6f3fb37fce7a217a4870f553a9daf70f16817b.tar.gz
Move the tests into their own directory
Small unit tests should have their own directory separate from examples.
Diffstat (limited to 'tests')
-rw-r--r--tests/.gitignore1
-rw-r--r--tests/Makefile.am11
-rw-r--r--tests/test-yuv-upload.c133
3 files changed, 145 insertions, 0 deletions
diff --git a/tests/.gitignore b/tests/.gitignore
new file mode 100644
index 0000000..2d9cafd
--- /dev/null
+++ b/tests/.gitignore
@@ -0,0 +1 @@
+test-yuv-upload
diff --git a/tests/Makefile.am b/tests/Makefile.am
new file mode 100644
index 0000000..723b4dc
--- /dev/null
+++ b/tests/Makefile.am
@@ -0,0 +1,11 @@
+noinst_PROGRAMS = test-yuv-upload
+
+INCLUDES = -I$(top_srcdir)/
+
+test_yuv_upload_SOURCES = test-yuv-upload.c
+test_yuv_upload_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
+test_yuv_upload_LDFLAGS = \
+ $(CLUTTER_GST_LIBS) \
+ $(GST_LIBS) \
+ $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
+
diff --git a/tests/test-yuv-upload.c b/tests/test-yuv-upload.c
new file mode 100644
index 0000000..2948c9b
--- /dev/null
+++ b/tests/test-yuv-upload.c
@@ -0,0 +1,133 @@
+#include <string.h>
+
+#include <clutter-gst/clutter-gst.h>
+
+static gint opt_framerate = 25;
+static gchar *opt_fourcc = "I420";
+
+static GOptionEntry options[] =
+{
+ { "framerate",
+ 'f', 0,
+ G_OPTION_ARG_INT,
+ &opt_framerate,
+ "Number of frames per second",
+ NULL },
+ { "fourcc",
+ 'o', 0,
+ G_OPTION_ARG_STRING,
+ &opt_fourcc,
+ "Fourcc of the wanted YUV format",
+ NULL },
+
+ { NULL }
+};
+
+static guint32
+parse_fourcc (const gchar *fourcc)
+{
+ if (strlen (fourcc) != 4)
+ return 0;
+
+ return GST_STR_FOURCC (fourcc);
+}
+
+void
+size_change (ClutterTexture *texture,
+ gint width,
+ gint height,
+ gpointer user_data)
+{
+ gint new_x, new_y, new_width, new_height;
+
+ new_height = ( height * CLUTTER_STAGE_WIDTH() ) / width;
+ if (new_height <= CLUTTER_STAGE_HEIGHT())
+ {
+ new_width = CLUTTER_STAGE_WIDTH();
+
+ new_x = 0;
+ new_y = (CLUTTER_STAGE_HEIGHT() - new_height) / 2;
+ }
+ else
+ {
+ new_width = ( width * CLUTTER_STAGE_HEIGHT() ) / height;
+ new_height = CLUTTER_STAGE_HEIGHT();
+
+ new_x = (CLUTTER_STAGE_WIDTH() - new_width) / 2;
+ new_y = 0;
+ }
+
+ clutter_actor_set_position (CLUTTER_ACTOR (texture), new_x, new_y);
+
+ clutter_actor_set_size (CLUTTER_ACTOR (texture),
+ new_width,
+ new_height);
+}
+
+int
+main (int argc, char *argv[])
+{
+ GOptionContext *context;
+ gboolean result;
+ ClutterActor *stage;
+ ClutterActor *texture;
+ GstPipeline *pipeline;
+ GstElement *src;
+ GstElement *capsfilter;
+ GstElement *colorspace;
+ GstElement *sink;
+ GstCaps *caps;
+
+ if (!g_thread_supported ())
+ g_thread_init (NULL);
+
+ context = g_option_context_new (" - test-colorspace options");
+ g_option_context_add_group (context, gst_init_get_option_group ());
+ g_option_context_add_group (context, clutter_get_option_group ());
+ g_option_context_add_main_entries (context, options, NULL);
+ g_option_context_parse (context, &argc, &argv, NULL);
+
+ stage = clutter_stage_get_default ();
+
+ /* We need to set certain props on the target texture currently for
+ * efficient/corrent playback onto the texture (which sucks a bit)
+ */
+ texture = g_object_new (CLUTTER_TYPE_TEXTURE,
+ "sync-size", FALSE,
+ "disable-slicing", TRUE,
+ NULL);
+
+ g_signal_connect (CLUTTER_TEXTURE (texture),
+ "size-change",
+ G_CALLBACK (size_change), NULL);
+
+ /* Set up pipeline */
+ pipeline = GST_PIPELINE(gst_pipeline_new (NULL));
+
+ src = gst_element_factory_make ("videotestsrc", NULL);
+ capsfilter = gst_element_factory_make ("capsfilter", NULL);
+ colorspace = gst_element_factory_make ("ffmpegcolorspace", NULL);
+ sink = clutter_gst_video_sink_new (CLUTTER_TEXTURE (texture));
+
+ /* make videotestsrc spit the format we want */
+ caps = gst_caps_new_simple ("video/x-raw-yuv",
+ "format", GST_TYPE_FOURCC, parse_fourcc (opt_fourcc),
+ "framerate", GST_TYPE_FRACTION, opt_framerate, 1,
+ NULL);
+ g_object_set (capsfilter, "caps", caps, NULL);
+
+ g_printf ("%s: [caps] %s\n", __FILE__, gst_caps_to_string (caps));
+ gst_bin_add_many (GST_BIN (pipeline), src, capsfilter, sink, NULL);
+ result = gst_element_link_many (src, capsfilter, sink, NULL);
+ if (result == FALSE)
+ g_critical("Could not link elements");
+ gst_element_set_state (GST_ELEMENT(pipeline), GST_STATE_PLAYING);
+
+ clutter_group_add (CLUTTER_GROUP (stage), texture);
+ // clutter_actor_set_opacity (texture, 0x11);
+ clutter_actor_show_all (stage);
+
+ clutter_main();
+
+ return 0;
+}