mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 09:29:42 +00:00
225 lines
6.9 KiB
C
225 lines
6.9 KiB
C
/* 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
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "test-utils.h"
|
|
#include <ges/ges.h>
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
GST_START_TEST (test_title_source_basic)
|
|
{
|
|
GESTitleClip *source;
|
|
|
|
ges_init ();
|
|
|
|
source = ges_title_clip_new ();
|
|
fail_unless (source != NULL);
|
|
|
|
gst_object_unref (source);
|
|
|
|
ges_deinit ();
|
|
}
|
|
|
|
GST_END_TEST;
|
|
|
|
GST_START_TEST (test_title_source_properties)
|
|
{
|
|
GESClip *clip;
|
|
GESTrack *track;
|
|
GESTimeline *timeline;
|
|
GESLayer *layer;
|
|
GESTrackElement *trackelement;
|
|
|
|
ges_init ();
|
|
|
|
track = GES_TRACK (ges_video_track_new ());
|
|
fail_unless (track != NULL);
|
|
layer = ges_layer_new ();
|
|
fail_unless (layer != NULL);
|
|
timeline = ges_timeline_new ();
|
|
fail_unless (timeline != NULL);
|
|
fail_unless (ges_timeline_add_layer (timeline, layer));
|
|
fail_unless (ges_timeline_add_track (timeline, track));
|
|
ASSERT_OBJECT_REFCOUNT (timeline, "timeline", 1);
|
|
|
|
clip = (GESClip *) ges_title_clip_new ();
|
|
fail_unless (clip != NULL);
|
|
|
|
/* Set some properties */
|
|
g_object_set (clip, "start", (guint64) 42, "duration", (guint64) 51,
|
|
"in-point", (guint64) 12, NULL);
|
|
assert_equals_uint64 (_START (clip), 42);
|
|
assert_equals_uint64 (_DURATION (clip), 51);
|
|
/* the clip can have a non-zero in-point, but this won't affect any
|
|
* of the core children because they have their has-internal-source set
|
|
* to FALSE */
|
|
assert_equals_uint64 (_INPOINT (clip), 12);
|
|
|
|
ges_layer_add_clip (layer, GES_CLIP (clip));
|
|
ges_timeline_commit (timeline);
|
|
assert_equals_int (g_list_length (GES_CONTAINER_CHILDREN (clip)), 1);
|
|
trackelement = GES_CONTAINER_CHILDREN (clip)->data;
|
|
fail_unless (trackelement != NULL);
|
|
fail_unless (GES_TIMELINE_ELEMENT_PARENT (trackelement) ==
|
|
GES_TIMELINE_ELEMENT (clip));
|
|
fail_unless (ges_track_element_get_track (trackelement) == track);
|
|
|
|
/* Check that trackelement has the same properties */
|
|
assert_equals_uint64 (_START (trackelement), 42);
|
|
assert_equals_uint64 (_DURATION (trackelement), 51);
|
|
assert_equals_uint64 (_INPOINT (trackelement), 0);
|
|
|
|
/* And let's also check that it propagated correctly to GNonLin */
|
|
nle_object_check (ges_track_element_get_nleobject (trackelement), 42, 51, 0,
|
|
51, MIN_NLE_PRIO + TRANSITIONS_HEIGHT, TRUE);
|
|
|
|
/* Change more properties, see if they propagate */
|
|
g_object_set (clip, "start", (guint64) 420, "duration", (guint64) 510,
|
|
"in-point", (guint64) 120, NULL);
|
|
ges_timeline_commit (timeline);
|
|
assert_equals_uint64 (_START (clip), 420);
|
|
assert_equals_uint64 (_DURATION (clip), 510);
|
|
assert_equals_uint64 (_INPOINT (clip), 120);
|
|
assert_equals_uint64 (_START (trackelement), 420);
|
|
assert_equals_uint64 (_DURATION (trackelement), 510);
|
|
assert_equals_uint64 (_INPOINT (trackelement), 0);
|
|
|
|
/* And let's also check that it propagated correctly to GNonLin */
|
|
nle_object_check (ges_track_element_get_nleobject (trackelement), 420, 510,
|
|
0, 510, MIN_NLE_PRIO + TRANSITIONS_HEIGHT + 0, TRUE);
|
|
|
|
ges_container_remove (GES_CONTAINER (clip),
|
|
GES_TIMELINE_ELEMENT (trackelement));
|
|
gst_object_unref (clip);
|
|
|
|
ges_deinit ();
|
|
}
|
|
|
|
GST_END_TEST;
|
|
|
|
GST_START_TEST (test_title_source_in_layer)
|
|
{
|
|
GESTimeline *timeline;
|
|
GESLayer *layer;
|
|
GESTrack *a, *v;
|
|
GESTrackElement *track_element;
|
|
GESTitleClip *source;
|
|
gchar *text;
|
|
gint halign, valign;
|
|
guint32 color;
|
|
gdouble xpos;
|
|
gdouble ypos;
|
|
|
|
ges_init ();
|
|
|
|
timeline = ges_timeline_new ();
|
|
layer = ges_layer_new ();
|
|
a = GES_TRACK (ges_audio_track_new ());
|
|
v = GES_TRACK (ges_video_track_new ());
|
|
|
|
ges_timeline_add_track (timeline, a);
|
|
ges_timeline_add_track (timeline, v);
|
|
ges_timeline_add_layer (timeline, layer);
|
|
|
|
source = ges_title_clip_new ();
|
|
|
|
g_object_set (source, "duration", (guint64) GST_SECOND, NULL);
|
|
|
|
ges_layer_add_clip (layer, (GESClip *) source);
|
|
|
|
/* 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);
|
|
|
|
track_element =
|
|
ges_clip_find_track_element (GES_CLIP (source), v, GES_TYPE_TITLE_SOURCE);
|
|
|
|
/* 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);
|
|
|
|
/* test halign and valign */
|
|
g_object_set (source, "halignment", (gint)
|
|
GES_TEXT_HALIGN_LEFT, "valignment", (gint) GES_TEXT_VALIGN_TOP, NULL);
|
|
g_object_get (source, "halignment", &halign, "valignment", &valign, NULL);
|
|
assert_equals_int (halign, GES_TEXT_HALIGN_LEFT);
|
|
assert_equals_int (valign, GES_TEXT_VALIGN_TOP);
|
|
|
|
assert_equals_int (ges_title_source_get_halignment
|
|
(GES_TITLE_SOURCE (track_element)), GES_TEXT_HALIGN_LEFT);
|
|
assert_equals_int (ges_title_source_get_valignment
|
|
(GES_TITLE_SOURCE (track_element)), GES_TEXT_VALIGN_TOP);
|
|
|
|
/* test color */
|
|
g_object_set (source, "color", (gint) 2147483647, NULL);
|
|
g_object_get (source, "color", &color, NULL);
|
|
assert_equals_int (color, 2147483647);
|
|
|
|
color = ges_title_source_get_text_color (GES_TITLE_SOURCE (track_element));
|
|
assert_equals_int (color, 2147483647);
|
|
|
|
/* test xpos */
|
|
g_object_set (source, "xpos", (gdouble) 0.25, NULL);
|
|
g_object_get (source, "xpos", &xpos, NULL);
|
|
assert_equals_float (xpos, 0.25);
|
|
|
|
xpos = ges_title_source_get_xpos (GES_TITLE_SOURCE (track_element));
|
|
assert_equals_float (xpos, 0.25);
|
|
|
|
/* test ypos */
|
|
g_object_set (source, "ypos", (gdouble) 0.66, NULL);
|
|
g_object_get (source, "ypos", &ypos, NULL);
|
|
assert_equals_float (ypos, 0.66);
|
|
|
|
xpos = ges_title_source_get_xpos (GES_TITLE_SOURCE (track_element));
|
|
assert_equals_float (ypos, 0.66);
|
|
|
|
GST_DEBUG ("removing the source");
|
|
|
|
ges_layer_remove_clip (layer, (GESClip *) source);
|
|
|
|
GST_DEBUG ("removing the layer");
|
|
|
|
gst_object_unref (track_element);
|
|
gst_object_unref (timeline);
|
|
|
|
ges_deinit ();
|
|
}
|
|
|
|
GST_END_TEST;
|
|
|
|
static Suite *
|
|
ges_suite (void)
|
|
{
|
|
Suite *s = suite_create ("ges-titles");
|
|
TCase *tc_chain = tcase_create ("titles");
|
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
tcase_add_test (tc_chain, test_title_source_basic);
|
|
tcase_add_test (tc_chain, test_title_source_properties);
|
|
tcase_add_test (tc_chain, test_title_source_in_layer);
|
|
|
|
return s;
|
|
}
|
|
|
|
GST_CHECK_MAIN (ges);
|