2010-06-02 10:34:57 +00:00
|
|
|
|
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2010 Edward Hervey <brandon@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-02 10:34:57 +00:00
|
|
|
*/
|
|
|
|
|
2012-09-22 11:10:55 +00:00
|
|
|
#include "test-utils.h"
|
2010-06-02 10:34:57 +00:00
|
|
|
#include <ges/ges.h>
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
|
|
|
|
/* This test uri will eventually have to be fixed */
|
|
|
|
#define TEST_URI "blahblahblah"
|
|
|
|
|
|
|
|
GST_START_TEST (test_transition_basic)
|
|
|
|
{
|
2010-12-09 16:09:11 +00:00
|
|
|
GESTimelineStandardTransition *tr1, *tr2;
|
2010-06-02 10:34:57 +00:00
|
|
|
GESTrackObject *trackobject;
|
|
|
|
GESTrack *track;
|
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
track = ges_track_video_raw_new ();
|
2010-06-02 13:18:55 +00:00
|
|
|
fail_unless (track != 0);
|
2010-06-02 10:34:57 +00:00
|
|
|
|
2010-12-09 16:09:11 +00:00
|
|
|
tr1 =
|
|
|
|
ges_timeline_standard_transition_new
|
|
|
|
(GES_VIDEO_STANDARD_TRANSITION_TYPE_CROSSFADE);
|
2010-06-02 13:18:55 +00:00
|
|
|
fail_unless (tr1 != 0);
|
2010-12-09 16:09:11 +00:00
|
|
|
fail_unless (tr1->vtype == GES_VIDEO_STANDARD_TRANSITION_TYPE_CROSSFADE);
|
2010-06-02 10:34:57 +00:00
|
|
|
|
2010-12-09 16:09:11 +00:00
|
|
|
tr2 = ges_timeline_standard_transition_new_for_nick ((gchar *) "bar-wipe-lr");
|
2010-06-02 13:18:55 +00:00
|
|
|
fail_unless (tr2 != 0);
|
2010-06-02 14:43:10 +00:00
|
|
|
fail_unless (tr2->vtype == 1);
|
2010-06-02 10:34:57 +00:00
|
|
|
|
|
|
|
/* Make sure track object is created and vtype is set */
|
|
|
|
trackobject =
|
|
|
|
ges_timeline_object_create_track_object (GES_TIMELINE_OBJECT (tr2),
|
|
|
|
track);
|
2011-07-27 00:02:20 +00:00
|
|
|
ges_timeline_object_add_track_object (GES_TIMELINE_OBJECT (tr2), trackobject);
|
2010-06-02 10:34:57 +00:00
|
|
|
|
2010-06-03 17:04:11 +00:00
|
|
|
fail_unless (trackobject != NULL);
|
2011-01-06 09:55:37 +00:00
|
|
|
fail_unless (ges_track_video_transition_get_transition_type
|
|
|
|
(GES_TRACK_VIDEO_TRANSITION (trackobject)) == 1);
|
2010-06-02 10:34:57 +00:00
|
|
|
|
2010-06-08 16:37:49 +00:00
|
|
|
fail_unless (ges_timeline_object_release_track_object (GES_TIMELINE_OBJECT
|
|
|
|
(tr2), trackobject) == TRUE);
|
|
|
|
|
2010-06-02 10:34:57 +00:00
|
|
|
g_object_unref (track);
|
|
|
|
g_object_unref (tr1);
|
|
|
|
g_object_unref (tr2);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_transition_properties)
|
|
|
|
{
|
|
|
|
GESTrack *track;
|
|
|
|
GESTrackObject *trackobject;
|
|
|
|
GESTimelineObject *object;
|
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
2010-07-01 16:50:30 +00:00
|
|
|
object =
|
2010-12-09 16:09:11 +00:00
|
|
|
GES_TIMELINE_OBJECT (ges_timeline_standard_transition_new
|
|
|
|
(GES_VIDEO_STANDARD_TRANSITION_TYPE_CROSSFADE));
|
2010-06-02 10:34:57 +00:00
|
|
|
|
2010-06-02 16:58:14 +00:00
|
|
|
track = ges_track_video_raw_new ();
|
2010-06-02 10:34:57 +00:00
|
|
|
fail_unless (track != NULL);
|
|
|
|
|
|
|
|
/* Set some properties */
|
|
|
|
g_object_set (object, "start", (guint64) 42, "duration", (guint64) 51,
|
2010-06-02 11:50:06 +00:00
|
|
|
"in-point", (guint64) 12, NULL);
|
2010-06-02 10:34:57 +00:00
|
|
|
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_START (object), 42);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_DURATION (object), 51);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_INPOINT (object), 12);
|
|
|
|
|
|
|
|
trackobject = ges_timeline_object_create_track_object (object, track);
|
2011-07-27 00:02:20 +00:00
|
|
|
ges_timeline_object_add_track_object (object, trackobject);
|
2010-06-02 10:34:57 +00:00
|
|
|
fail_unless (trackobject != NULL);
|
|
|
|
fail_unless (ges_track_object_set_track (trackobject, track));
|
|
|
|
|
|
|
|
/* Check that trackobject has the same properties */
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_START (trackobject), 42);
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_DURATION (trackobject), 51);
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_INPOINT (trackobject), 12);
|
|
|
|
|
|
|
|
/* And let's also check that it propagated correctly to GNonLin */
|
2010-12-16 14:00:46 +00:00
|
|
|
gnl_object_check (ges_track_object_get_gnlobject (trackobject), 42, 51, 12,
|
|
|
|
51, 0, TRUE);
|
2010-06-02 10:34:57 +00:00
|
|
|
|
|
|
|
/* Change more properties, see if they propagate */
|
|
|
|
g_object_set (object, "start", (guint64) 420, "duration", (guint64) 510,
|
|
|
|
"in-point", (guint64) 120, NULL);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_START (object), 420);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_DURATION (object), 510);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_INPOINT (object), 120);
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_START (trackobject), 420);
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_DURATION (trackobject), 510);
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_INPOINT (trackobject), 120);
|
|
|
|
|
|
|
|
/* And let's also check that it propagated correctly to GNonLin */
|
2010-12-16 14:00:46 +00:00
|
|
|
gnl_object_check (ges_track_object_get_gnlobject (trackobject), 420, 510, 120,
|
|
|
|
510, 0, TRUE);
|
2010-06-02 10:34:57 +00:00
|
|
|
|
|
|
|
/* test changing vtype */
|
2010-07-06 16:54:33 +00:00
|
|
|
GST_DEBUG ("Setting to crossfade");
|
2010-12-09 16:09:11 +00:00
|
|
|
g_object_set (object, "vtype", GES_VIDEO_STANDARD_TRANSITION_TYPE_CROSSFADE,
|
|
|
|
NULL);
|
|
|
|
assert_equals_int (GES_TIMELINE_STANDARD_TRANSITION (object)->vtype,
|
|
|
|
GES_VIDEO_STANDARD_TRANSITION_TYPE_CROSSFADE);
|
2011-01-06 09:55:37 +00:00
|
|
|
assert_equals_int (ges_track_video_transition_get_transition_type
|
|
|
|
(GES_TRACK_VIDEO_TRANSITION (trackobject)),
|
2010-12-09 16:09:11 +00:00
|
|
|
GES_VIDEO_STANDARD_TRANSITION_TYPE_CROSSFADE);
|
2010-07-06 16:54:33 +00:00
|
|
|
|
|
|
|
/* Check that changing from crossfade to anything else fails (it should
|
|
|
|
* still be using crossfade */
|
|
|
|
GST_DEBUG ("Setting back to 1 (should fail)");
|
2010-06-02 16:58:14 +00:00
|
|
|
g_object_set (object, "vtype", 1, NULL);
|
2012-05-01 23:08:08 +00:00
|
|
|
|
|
|
|
assert_equals_int (GES_TIMELINE_STANDARD_TRANSITION (object)->vtype, 1);
|
2011-01-06 09:55:37 +00:00
|
|
|
assert_equals_int (ges_track_video_transition_get_transition_type
|
2012-05-01 23:08:08 +00:00
|
|
|
(GES_TRACK_VIDEO_TRANSITION (trackobject)), 1);
|
2010-06-02 10:34:57 +00:00
|
|
|
|
2010-07-06 16:54:33 +00:00
|
|
|
GST_DEBUG ("Releasing track object");
|
2010-06-02 10:34:57 +00:00
|
|
|
ges_timeline_object_release_track_object (object, trackobject);
|
|
|
|
|
2010-07-06 16:54:33 +00:00
|
|
|
g_object_set (object, "vtype", 1, NULL);
|
|
|
|
|
|
|
|
GST_DEBUG ("creating track object");
|
|
|
|
trackobject = ges_timeline_object_create_track_object (object, track);
|
2011-07-27 00:02:20 +00:00
|
|
|
ges_timeline_object_add_track_object (object, trackobject);
|
2010-07-06 16:54:33 +00:00
|
|
|
fail_unless (trackobject != NULL);
|
|
|
|
fail_unless (ges_track_object_set_track (trackobject, track));
|
|
|
|
|
|
|
|
/* The new track object should have taken the previously set transition
|
|
|
|
* type (in this case 1) */
|
|
|
|
GST_DEBUG ("Setting to vtype:1");
|
2011-01-06 09:55:37 +00:00
|
|
|
assert_equals_int (ges_track_video_transition_get_transition_type
|
|
|
|
(GES_TRACK_VIDEO_TRANSITION (trackobject)), 1);
|
2010-12-09 16:09:11 +00:00
|
|
|
assert_equals_int (GES_TIMELINE_STANDARD_TRANSITION (object)->vtype, 1);
|
2010-07-06 16:54:33 +00:00
|
|
|
|
2010-07-08 15:10:19 +00:00
|
|
|
ges_timeline_object_release_track_object (object, trackobject);
|
2010-06-02 10:34:57 +00:00
|
|
|
g_object_unref (object);
|
|
|
|
g_object_unref (track);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static Suite *
|
|
|
|
ges_suite (void)
|
|
|
|
{
|
2010-12-20 10:38:31 +00:00
|
|
|
Suite *s = suite_create ("ges-transition");
|
2010-06-02 11:50:06 +00:00
|
|
|
TCase *tc_chain = tcase_create ("transition");
|
2010-06-02 10:34:57 +00:00
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
|
|
|
|
tcase_add_test (tc_chain, test_transition_basic);
|
|
|
|
tcase_add_test (tc_chain, test_transition_properties);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|