2010-06-21 14:04:22 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2010 Brandon Lewis <brandon.lewis@collabora.co.uk>
|
|
|
|
*
|
|
|
|
* 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:25:20 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2010-06-21 14:04:22 +00:00
|
|
|
*/
|
|
|
|
|
2012-09-22 11:10:55 +00:00
|
|
|
#include "test-utils.h"
|
2010-06-21 14:04:22 +00:00
|
|
|
#include <ges/ges.h>
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
|
|
|
|
GST_START_TEST (test_overlay_basic)
|
|
|
|
{
|
2013-01-17 03:53:26 +00:00
|
|
|
GESTextOverlayClip *source;
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
2013-01-27 19:02:19 +00:00
|
|
|
source = ges_text_overlay_clip_new ();
|
2010-06-21 14:04:22 +00:00
|
|
|
fail_unless (source != NULL);
|
|
|
|
|
|
|
|
g_object_unref (source);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_overlay_properties)
|
|
|
|
{
|
|
|
|
GESTrack *track;
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *trackelement;
|
2013-01-20 15:42:29 +00:00
|
|
|
GESClip *object;
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
2012-12-24 12:29:48 +00:00
|
|
|
track = ges_track_new (GES_TRACK_TYPE_VIDEO, gst_caps_ref (GST_CAPS_ANY));
|
2010-06-21 14:04:22 +00:00
|
|
|
fail_unless (track != NULL);
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
object = (GESClip *)
|
2013-01-27 19:02:19 +00:00
|
|
|
ges_text_overlay_clip_new ();
|
2010-06-21 14:04:22 +00:00
|
|
|
fail_unless (object != NULL);
|
|
|
|
|
|
|
|
/* Set some properties */
|
|
|
|
g_object_set (object, "start", (guint64) 42, "duration", (guint64) 51,
|
|
|
|
"in-point", (guint64) 12, NULL);
|
2013-01-15 13:52:17 +00:00
|
|
|
assert_equals_uint64 (_START (object), 42);
|
|
|
|
assert_equals_uint64 (_DURATION (object), 51);
|
|
|
|
assert_equals_uint64 (_INPOINT (object), 12);
|
2010-06-21 14:04:22 +00:00
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
trackelement = ges_clip_create_track_element (object, track->type);
|
|
|
|
ges_clip_add_track_element (object, trackelement);
|
|
|
|
fail_unless (trackelement != NULL);
|
|
|
|
fail_unless (ges_track_element_set_track (trackelement, track));
|
2010-06-21 14:04:22 +00:00
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
/* Check that trackelement has the same properties */
|
|
|
|
assert_equals_uint64 (_START (trackelement), 42);
|
|
|
|
assert_equals_uint64 (_DURATION (trackelement), 51);
|
|
|
|
assert_equals_uint64 (_INPOINT (trackelement), 12);
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
/* And let's also check that it propagated correctly to GNonLin */
|
2013-01-26 15:31:33 +00:00
|
|
|
gnl_object_check (ges_track_element_get_gnlobject (trackelement), 42, 51, 12,
|
2010-12-16 14:00:46 +00:00
|
|
|
51, 0, TRUE);
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
/* Change more properties, see if they propagate */
|
|
|
|
g_object_set (object, "start", (guint64) 420, "duration", (guint64) 510,
|
|
|
|
"in-point", (guint64) 120, NULL);
|
2013-01-15 13:52:17 +00:00
|
|
|
assert_equals_uint64 (_START (object), 420);
|
|
|
|
assert_equals_uint64 (_DURATION (object), 510);
|
|
|
|
assert_equals_uint64 (_INPOINT (object), 120);
|
2013-01-26 15:31:33 +00:00
|
|
|
assert_equals_uint64 (_START (trackelement), 420);
|
|
|
|
assert_equals_uint64 (_DURATION (trackelement), 510);
|
|
|
|
assert_equals_uint64 (_INPOINT (trackelement), 120);
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
/* And let's also check that it propagated correctly to GNonLin */
|
2013-01-26 15:31:33 +00:00
|
|
|
gnl_object_check (ges_track_element_get_gnlobject (trackelement), 420, 510,
|
|
|
|
120, 510, 0, TRUE);
|
2010-06-21 14:04:22 +00:00
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
ges_clip_release_track_element (object, trackelement);
|
2010-06-21 14:04:22 +00:00
|
|
|
g_object_unref (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_overlay_in_layer)
|
|
|
|
{
|
|
|
|
GESTimeline *timeline;
|
|
|
|
GESTimelineLayer *layer;
|
|
|
|
GESTrack *a, *v;
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *trobj;
|
2013-01-17 03:53:26 +00:00
|
|
|
GESTextOverlayClip *source;
|
2010-06-21 14:04:22 +00:00
|
|
|
gchar *text;
|
2010-06-23 14:38:45 +00:00
|
|
|
gint halign, valign;
|
2011-08-03 10:20:27 +00:00
|
|
|
guint32 color;
|
2011-08-08 16:44:57 +00:00
|
|
|
gdouble xpos;
|
|
|
|
gdouble ypos;
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
timeline = ges_timeline_new ();
|
|
|
|
layer = (GESTimelineLayer *) ges_simple_timeline_layer_new ();
|
|
|
|
a = ges_track_audio_raw_new ();
|
|
|
|
v = ges_track_video_raw_new ();
|
|
|
|
|
|
|
|
ges_timeline_add_track (timeline, a);
|
|
|
|
ges_timeline_add_track (timeline, v);
|
|
|
|
ges_timeline_add_layer (timeline, layer);
|
|
|
|
|
2013-01-27 19:02:19 +00:00
|
|
|
source = ges_text_overlay_clip_new ();
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
g_object_set (source, "duration", (guint64) GST_SECOND, NULL);
|
|
|
|
|
|
|
|
ges_simple_timeline_layer_add_object ((GESSimpleTimelineLayer *) layer,
|
2013-01-20 15:42:29 +00:00
|
|
|
(GESClip *) source, 0);
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
/* specifically test the text property */
|
|
|
|
g_object_set (source, "text", (gchar *) "some text", NULL);
|
|
|
|
g_object_get (source, "text", &text, NULL);
|
|
|
|
assert_equals_string ("some text", text);
|
|
|
|
g_free (text);
|
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
trobj = ges_clip_find_track_element (GES_CLIP (source), v, G_TYPE_NONE);
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
/* test the font-desc property */
|
|
|
|
g_object_set (source, "font-desc", (gchar *) "sans 72", NULL);
|
|
|
|
g_object_get (source, "font-desc", &text, NULL);
|
|
|
|
assert_equals_string ("sans 72", text);
|
|
|
|
g_free (text);
|
|
|
|
|
2011-01-06 14:35:42 +00:00
|
|
|
assert_equals_string ("sans 72",
|
2013-01-27 15:24:44 +00:00
|
|
|
ges_text_overlay_get_font_desc (GES_TEXT_OVERLAY (trobj)));
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
/* test halign and valign */
|
|
|
|
g_object_set (source, "halignment", (gint)
|
2010-07-02 10:26:55 +00:00
|
|
|
GES_TEXT_HALIGN_LEFT, "valignment", (gint) GES_TEXT_VALIGN_TOP, NULL);
|
2010-06-21 14:04:22 +00:00
|
|
|
g_object_get (source, "halignment", &halign, "valignment", &valign, NULL);
|
2010-07-02 10:26:55 +00:00
|
|
|
assert_equals_int (halign, GES_TEXT_HALIGN_LEFT);
|
|
|
|
assert_equals_int (valign, GES_TEXT_VALIGN_TOP);
|
2010-06-21 14:04:22 +00:00
|
|
|
|
2013-01-27 15:24:44 +00:00
|
|
|
halign = ges_text_overlay_get_halignment (GES_TEXT_OVERLAY (trobj));
|
|
|
|
valign = ges_text_overlay_get_valignment (GES_TEXT_OVERLAY (trobj));
|
2010-07-02 10:26:55 +00:00
|
|
|
assert_equals_int (halign, GES_TEXT_HALIGN_LEFT);
|
|
|
|
assert_equals_int (valign, GES_TEXT_VALIGN_TOP);
|
2010-06-21 14:04:22 +00:00
|
|
|
|
2011-08-03 10:20:27 +00:00
|
|
|
/* test color */
|
|
|
|
g_object_set (source, "color", (gint) 2147483647, NULL);
|
|
|
|
g_object_get (source, "color", &color, NULL);
|
|
|
|
assert_equals_int (color, 2147483647);
|
|
|
|
|
2013-01-27 15:24:44 +00:00
|
|
|
color = ges_text_overlay_get_color (GES_TEXT_OVERLAY (trobj));
|
2011-08-03 10:20:27 +00:00
|
|
|
assert_equals_int (color, 2147483647);
|
|
|
|
|
2011-08-08 16:44:57 +00:00
|
|
|
/* test xpos */
|
|
|
|
g_object_set (source, "xpos", (gdouble) 0.5, NULL);
|
|
|
|
g_object_get (source, "xpos", &xpos, NULL);
|
2012-12-24 12:29:48 +00:00
|
|
|
assert_equals_float (xpos, 0.5);
|
2011-08-08 16:44:57 +00:00
|
|
|
|
2013-01-27 15:24:44 +00:00
|
|
|
xpos = ges_text_overlay_get_xpos (GES_TEXT_OVERLAY (trobj));
|
2012-12-24 12:29:48 +00:00
|
|
|
assert_equals_float (xpos, 0.5);
|
2011-08-08 16:44:57 +00:00
|
|
|
|
|
|
|
/* test ypos */
|
|
|
|
g_object_set (source, "ypos", (gdouble) 0.33, NULL);
|
|
|
|
g_object_get (source, "ypos", &ypos, NULL);
|
2012-12-24 12:29:48 +00:00
|
|
|
assert_equals_float (ypos, 0.33);
|
2011-08-08 16:44:57 +00:00
|
|
|
|
2013-01-27 15:24:44 +00:00
|
|
|
ypos = ges_text_overlay_get_ypos (GES_TEXT_OVERLAY (trobj));
|
2012-12-24 12:29:48 +00:00
|
|
|
assert_equals_float (ypos, 0.33);
|
2011-08-08 16:44:57 +00:00
|
|
|
|
2010-06-21 14:04:22 +00:00
|
|
|
GST_DEBUG ("removing the source");
|
|
|
|
|
2013-02-08 20:25:25 +00:00
|
|
|
ges_timeline_layer_remove_clip (layer, (GESClip *) source);
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("removing the layer");
|
|
|
|
|
|
|
|
g_object_unref (trobj);
|
|
|
|
g_object_unref (timeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
static Suite *
|
|
|
|
ges_suite (void)
|
|
|
|
{
|
2010-12-20 10:38:31 +00:00
|
|
|
Suite *s = suite_create ("ges-overlays");
|
|
|
|
TCase *tc_chain = tcase_create ("overlays");
|
2010-06-21 14:04:22 +00:00
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
|
|
|
|
tcase_add_test (tc_chain, test_overlay_basic);
|
|
|
|
tcase_add_test (tc_chain, test_overlay_properties);
|
|
|
|
tcase_add_test (tc_chain, test_overlay_in_layer);
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
int nf;
|
|
|
|
|
|
|
|
Suite *s = ges_suite ();
|
|
|
|
SRunner *sr = srunner_create (s);
|
|
|
|
|
|
|
|
gst_check_init (&argc, &argv);
|
|
|
|
|
|
|
|
srunner_run_all (sr, CK_NORMAL);
|
|
|
|
nf = srunner_ntests_failed (sr);
|
|
|
|
srunner_free (sr);
|
|
|
|
|
|
|
|
return nf;
|
|
|
|
}
|