2010-11-05 11:12:24 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2010 Thibault Saunier <tsaunier@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.
|
|
|
|
*
|
2011-02-01 20:22:04 +00:00
|
|
|
* You should have received a copy of the GNU Library General Public
|
2010-11-05 11:12:24 +00:00
|
|
|
* 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-11-05 11:12:24 +00:00
|
|
|
*/
|
|
|
|
|
2013-01-15 13:52:17 +00:00
|
|
|
#include "test-utils.h"
|
2010-11-05 11:12:24 +00:00
|
|
|
#include <ges/ges.h>
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
void effect_added_cb (GESClip * obj, GESTrackEffect * trop, gpointer data);
|
2011-02-08 14:29:21 +00:00
|
|
|
void
|
|
|
|
deep_prop_changed_cb (GESTrackObject * obj, GstElement * element,
|
|
|
|
GParamSpec * spec);
|
2011-02-08 13:04:39 +00:00
|
|
|
|
2010-11-05 11:12:24 +00:00
|
|
|
GST_START_TEST (test_effect_basic)
|
|
|
|
{
|
2011-02-10 11:17:50 +00:00
|
|
|
GESTrackParseLaunchEffect *effect;
|
2010-11-05 11:12:24 +00:00
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
2011-02-11 08:14:33 +00:00
|
|
|
effect = ges_track_parse_launch_effect_new ("agingtv");
|
2010-11-05 11:12:24 +00:00
|
|
|
fail_unless (effect != NULL);
|
|
|
|
g_object_unref (effect);
|
2010-11-15 22:32:23 +00:00
|
|
|
}
|
2010-11-05 11:12:24 +00:00
|
|
|
|
2010-11-15 22:32:23 +00:00
|
|
|
GST_END_TEST;
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
GST_START_TEST (test_add_effect_to_clip)
|
2010-11-15 22:32:23 +00:00
|
|
|
{
|
|
|
|
GESTimeline *timeline;
|
|
|
|
GESTimelineLayer *layer;
|
|
|
|
GESTrack *track_audio, *track_video;
|
2011-02-10 11:17:50 +00:00
|
|
|
GESTrackParseLaunchEffect *track_effect;
|
2010-11-15 22:32:23 +00:00
|
|
|
GESTimelineTestSource *source;
|
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
timeline = ges_timeline_new ();
|
|
|
|
layer = (GESTimelineLayer *) ges_simple_timeline_layer_new ();
|
|
|
|
track_audio = ges_track_audio_raw_new ();
|
|
|
|
track_video = ges_track_video_raw_new ();
|
|
|
|
|
|
|
|
ges_timeline_add_track (timeline, track_audio);
|
|
|
|
ges_timeline_add_track (timeline, track_video);
|
|
|
|
ges_timeline_add_layer (timeline, layer);
|
|
|
|
|
|
|
|
source = ges_timeline_test_source_new ();
|
|
|
|
|
|
|
|
g_object_set (source, "duration", 10 * GST_SECOND, NULL);
|
|
|
|
|
|
|
|
ges_simple_timeline_layer_add_object ((GESSimpleTimelineLayer *) (layer),
|
2013-01-20 15:42:29 +00:00
|
|
|
(GESClip *) source, 0);
|
2010-11-15 22:32:23 +00:00
|
|
|
|
|
|
|
|
2011-01-18 19:05:54 +00:00
|
|
|
GST_DEBUG ("Create effect");
|
2011-02-11 08:14:33 +00:00
|
|
|
track_effect = ges_track_parse_launch_effect_new ("agingtv");
|
2010-11-15 22:32:23 +00:00
|
|
|
|
2011-01-18 19:05:54 +00:00
|
|
|
fail_unless (GES_IS_TRACK_EFFECT (track_effect));
|
|
|
|
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_add_track_object (GES_CLIP
|
2011-01-18 19:05:54 +00:00
|
|
|
(source), GES_TRACK_OBJECT (track_effect)));
|
|
|
|
fail_unless (ges_track_add_object (track_video,
|
|
|
|
GES_TRACK_OBJECT (track_effect)));
|
|
|
|
|
|
|
|
assert_equals_int (GES_TRACK_OBJECT (track_effect)->active, TRUE);
|
2010-11-15 22:32:23 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
ges_timeline_layer_remove_object (layer, (GESClip *) source);
|
2010-11-15 22:32:23 +00:00
|
|
|
|
|
|
|
g_object_unref (timeline);
|
2010-11-05 11:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2011-01-31 10:32:14 +00:00
|
|
|
GST_START_TEST (test_get_effects_from_tl)
|
|
|
|
{
|
|
|
|
GESTimeline *timeline;
|
|
|
|
GESTimelineLayer *layer;
|
|
|
|
GESTrack *track_video;
|
2011-02-10 11:17:50 +00:00
|
|
|
GESTrackParseLaunchEffect *track_effect, *track_effect1, *track_effect2;
|
2011-01-31 10:32:14 +00:00
|
|
|
GESTimelineTestSource *source;
|
|
|
|
GList *effects, *tmp = NULL;
|
|
|
|
gint effect_prio = -1;
|
2013-01-20 15:42:29 +00:00
|
|
|
guint clip_height = 0;
|
2011-01-31 10:32:14 +00:00
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
timeline = ges_timeline_new ();
|
|
|
|
layer = (GESTimelineLayer *) ges_simple_timeline_layer_new ();
|
|
|
|
track_video = ges_track_video_raw_new ();
|
|
|
|
|
|
|
|
ges_timeline_add_track (timeline, track_video);
|
|
|
|
ges_timeline_add_layer (timeline, layer);
|
|
|
|
|
|
|
|
source = ges_timeline_test_source_new ();
|
|
|
|
|
|
|
|
g_object_set (source, "duration", 10 * GST_SECOND, NULL);
|
|
|
|
|
|
|
|
ges_simple_timeline_layer_add_object ((GESSimpleTimelineLayer *) (layer),
|
2013-01-20 15:42:29 +00:00
|
|
|
(GESClip *) source, 0);
|
2011-01-31 10:32:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
GST_DEBUG ("Create effect");
|
2011-02-11 08:14:33 +00:00
|
|
|
track_effect = ges_track_parse_launch_effect_new ("agingtv");
|
|
|
|
track_effect1 = ges_track_parse_launch_effect_new ("agingtv");
|
|
|
|
track_effect2 = ges_track_parse_launch_effect_new ("agingtv");
|
2011-01-31 10:32:14 +00:00
|
|
|
|
|
|
|
fail_unless (GES_IS_TRACK_EFFECT (track_effect));
|
|
|
|
fail_unless (GES_IS_TRACK_EFFECT (track_effect1));
|
|
|
|
fail_unless (GES_IS_TRACK_EFFECT (track_effect2));
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_add_track_object (GES_CLIP
|
2011-01-31 10:32:14 +00:00
|
|
|
(source), GES_TRACK_OBJECT (track_effect)));
|
|
|
|
fail_unless (ges_track_add_object (track_video,
|
|
|
|
GES_TRACK_OBJECT (track_effect)));
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_add_track_object (GES_CLIP
|
2011-01-31 10:32:14 +00:00
|
|
|
(source), GES_TRACK_OBJECT (track_effect1)));
|
|
|
|
fail_unless (ges_track_add_object (track_video,
|
|
|
|
GES_TRACK_OBJECT (track_effect1)));
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_add_track_object (GES_CLIP
|
2011-01-31 10:32:14 +00:00
|
|
|
(source), GES_TRACK_OBJECT (track_effect2)));
|
|
|
|
fail_unless (ges_track_add_object (track_video,
|
|
|
|
GES_TRACK_OBJECT (track_effect2)));
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
g_object_get (G_OBJECT (source), "height", &clip_height, NULL);
|
|
|
|
fail_unless (clip_height == 4);
|
2011-01-31 10:32:14 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
effects = ges_clip_get_top_effects (GES_CLIP (source));
|
2011-02-16 16:45:05 +00:00
|
|
|
fail_unless (g_list_length (effects) == 3);
|
2011-01-31 10:32:14 +00:00
|
|
|
for (tmp = effects; tmp; tmp = tmp->next) {
|
2013-01-20 15:42:29 +00:00
|
|
|
gint priority = ges_clip_get_top_effect_position (GES_CLIP (source),
|
2011-02-16 13:05:14 +00:00
|
|
|
GES_TRACK_EFFECT (tmp->data));
|
2011-01-31 10:32:14 +00:00
|
|
|
fail_unless (priority > effect_prio);
|
|
|
|
fail_unless (GES_IS_TRACK_EFFECT (tmp->data));
|
|
|
|
effect_prio = priority;
|
|
|
|
|
|
|
|
g_object_unref (tmp->data);
|
|
|
|
}
|
|
|
|
g_list_free (effects);
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
ges_timeline_layer_remove_object (layer, (GESClip *) source);
|
2011-01-31 10:32:14 +00:00
|
|
|
|
|
|
|
g_object_unref (timeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
GST_START_TEST (test_effect_clip)
|
2011-02-01 20:22:04 +00:00
|
|
|
{
|
|
|
|
GESTimeline *timeline;
|
|
|
|
GESTimelineLayer *layer;
|
|
|
|
GESTrack *track_audio, *track_video;
|
2013-01-20 15:42:29 +00:00
|
|
|
GESTimelineParseLaunchEffect *effect_clip;
|
2011-02-10 11:17:50 +00:00
|
|
|
GESTrackParseLaunchEffect *tck_effect, *tck_effect1;
|
2011-02-01 20:22:04 +00:00
|
|
|
GList *effects, *tmp;
|
2013-01-20 15:42:29 +00:00
|
|
|
gint i, clip_height;
|
2011-02-01 20:22:04 +00:00
|
|
|
gint effect_prio = -1;
|
|
|
|
/* FIXME the order of track type is not well defined */
|
2011-02-03 15:03:10 +00:00
|
|
|
guint track_type[4] = { GES_TRACK_TYPE_AUDIO,
|
|
|
|
GES_TRACK_TYPE_VIDEO, GES_TRACK_TYPE_VIDEO,
|
|
|
|
GES_TRACK_TYPE_AUDIO
|
|
|
|
};
|
2011-02-01 20:22:04 +00:00
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
timeline = ges_timeline_new ();
|
|
|
|
layer = (GESTimelineLayer *) ges_simple_timeline_layer_new ();
|
|
|
|
track_audio = ges_track_audio_raw_new ();
|
|
|
|
track_video = ges_track_video_raw_new ();
|
|
|
|
|
|
|
|
ges_timeline_add_track (timeline, track_audio);
|
|
|
|
ges_timeline_add_track (timeline, track_video);
|
|
|
|
ges_timeline_add_layer (timeline, layer);
|
|
|
|
|
|
|
|
GST_DEBUG ("Create effect");
|
2013-01-20 15:42:29 +00:00
|
|
|
effect_clip = ges_timeline_parse_launch_effect_new ("identity", "identity");
|
2011-02-01 20:22:04 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
g_object_set (effect_clip, "duration", 25 * GST_SECOND, NULL);
|
2011-02-01 20:22:04 +00:00
|
|
|
|
|
|
|
ges_simple_timeline_layer_add_object ((GESSimpleTimelineLayer *) (layer),
|
2013-01-20 15:42:29 +00:00
|
|
|
(GESClip *) effect_clip, 0);
|
2011-02-01 20:22:04 +00:00
|
|
|
|
2011-02-11 08:14:33 +00:00
|
|
|
tck_effect = ges_track_parse_launch_effect_new ("identity");
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_add_track_object (GES_CLIP
|
|
|
|
(effect_clip), GES_TRACK_OBJECT (tck_effect)));
|
2011-02-03 15:03:10 +00:00
|
|
|
fail_unless (ges_track_add_object (track_video,
|
|
|
|
GES_TRACK_OBJECT (tck_effect)));
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
g_object_get (effect_clip, "height", &clip_height, NULL);
|
|
|
|
assert_equals_int (clip_height, 3);
|
2011-02-03 15:03:10 +00:00
|
|
|
|
2011-02-11 08:14:33 +00:00
|
|
|
tck_effect1 = ges_track_parse_launch_effect_new ("identity");
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_add_track_object (GES_CLIP
|
|
|
|
(effect_clip), GES_TRACK_OBJECT (tck_effect1)));
|
2011-02-03 15:03:10 +00:00
|
|
|
fail_unless (ges_track_add_object (track_audio,
|
|
|
|
GES_TRACK_OBJECT (tck_effect1)));
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
g_object_get (effect_clip, "height", &clip_height, NULL);
|
|
|
|
assert_equals_int (clip_height, 4);
|
2011-02-01 20:22:04 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
effects = ges_clip_get_top_effects (GES_CLIP (effect_clip));
|
2011-02-01 20:22:04 +00:00
|
|
|
for (tmp = effects, i = 0; tmp; tmp = tmp->next, i++) {
|
2013-01-20 15:42:29 +00:00
|
|
|
gint priority = ges_clip_get_top_effect_position (GES_CLIP (effect_clip),
|
2011-02-16 13:05:14 +00:00
|
|
|
GES_TRACK_EFFECT (tmp->data));
|
2011-02-01 20:22:04 +00:00
|
|
|
fail_unless (priority > effect_prio);
|
|
|
|
fail_unless (GES_IS_TRACK_EFFECT (tmp->data));
|
2013-01-20 15:44:57 +00:00
|
|
|
fail_unless (ges_track_object_get_track (GES_TRACK_OBJECT (tmp->data))->
|
|
|
|
type == track_type[i]);
|
2011-02-04 10:44:19 +00:00
|
|
|
effect_prio = priority;
|
|
|
|
|
|
|
|
g_object_unref (tmp->data);
|
|
|
|
}
|
|
|
|
g_list_free (effects);
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
ges_timeline_layer_remove_object (layer, (GESClip *) effect_clip);
|
2011-02-04 10:44:19 +00:00
|
|
|
|
|
|
|
g_object_unref (timeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
GST_START_TEST (test_priorities_clip)
|
2011-02-04 10:44:19 +00:00
|
|
|
{
|
|
|
|
GESTimeline *timeline;
|
|
|
|
GESTimelineLayer *layer;
|
|
|
|
GESTrack *track_audio, *track_video;
|
2013-01-20 15:42:29 +00:00
|
|
|
GESTimelineParseLaunchEffect *effect_clip;
|
2011-02-10 11:17:50 +00:00
|
|
|
GESTrackParseLaunchEffect *tck_effect, *tck_effect1;
|
2011-02-04 10:44:19 +00:00
|
|
|
GList *effects, *tmp;
|
2013-01-20 15:42:29 +00:00
|
|
|
gint i, clip_height;
|
2011-02-04 10:44:19 +00:00
|
|
|
gint effect_prio = -1;
|
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
timeline = ges_timeline_new ();
|
|
|
|
layer = (GESTimelineLayer *) ges_simple_timeline_layer_new ();
|
|
|
|
track_audio = ges_track_audio_raw_new ();
|
|
|
|
track_video = ges_track_video_raw_new ();
|
|
|
|
|
|
|
|
ges_timeline_add_track (timeline, track_audio);
|
|
|
|
ges_timeline_add_track (timeline, track_video);
|
|
|
|
ges_timeline_add_layer (timeline, layer);
|
|
|
|
|
|
|
|
GST_DEBUG ("Create effect");
|
2013-01-20 15:42:29 +00:00
|
|
|
effect_clip = ges_timeline_parse_launch_effect_new ("identity", "identity");
|
2011-02-04 10:44:19 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
g_object_set (effect_clip, "duration", 25 * GST_SECOND, NULL);
|
2011-02-04 10:44:19 +00:00
|
|
|
|
|
|
|
ges_simple_timeline_layer_add_object ((GESSimpleTimelineLayer *) (layer),
|
2013-01-20 15:42:29 +00:00
|
|
|
(GESClip *) effect_clip, 0);
|
2011-02-04 10:44:19 +00:00
|
|
|
|
2011-02-11 08:14:33 +00:00
|
|
|
tck_effect = ges_track_parse_launch_effect_new ("identity");
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_add_track_object (GES_CLIP
|
|
|
|
(effect_clip), GES_TRACK_OBJECT (tck_effect)));
|
2011-02-04 10:44:19 +00:00
|
|
|
fail_unless (ges_track_add_object (track_video,
|
|
|
|
GES_TRACK_OBJECT (tck_effect)));
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
g_object_get (effect_clip, "height", &clip_height, NULL);
|
|
|
|
fail_unless (clip_height == 3);
|
2011-02-04 10:44:19 +00:00
|
|
|
|
2011-02-11 08:14:33 +00:00
|
|
|
tck_effect1 = ges_track_parse_launch_effect_new ("identity");
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_add_track_object (GES_CLIP
|
|
|
|
(effect_clip), GES_TRACK_OBJECT (tck_effect1)));
|
2011-02-04 10:44:19 +00:00
|
|
|
fail_unless (ges_track_add_object (track_audio,
|
|
|
|
GES_TRACK_OBJECT (tck_effect1)));
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_set_top_effect_priority (GES_CLIP
|
|
|
|
(effect_clip), GES_TRACK_EFFECT (tck_effect1), 0));
|
2011-02-04 10:44:19 +00:00
|
|
|
|
2013-01-15 13:52:17 +00:00
|
|
|
fail_unless (_PRIORITY (tck_effect), 3);
|
2011-02-04 10:44:19 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_set_top_effect_priority (GES_CLIP
|
|
|
|
(effect_clip), GES_TRACK_EFFECT (tck_effect1), 3));
|
2013-01-15 13:52:17 +00:00
|
|
|
fail_unless (_PRIORITY (tck_effect) == 2);
|
2011-02-04 10:44:19 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
g_object_get (effect_clip, "height", &clip_height, NULL);
|
|
|
|
fail_unless (clip_height == 4);
|
2011-02-04 10:44:19 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
effects = ges_clip_get_top_effects (GES_CLIP (effect_clip));
|
2011-02-04 10:44:19 +00:00
|
|
|
for (tmp = effects, i = 0; tmp; tmp = tmp->next, i++) {
|
2013-01-20 15:42:29 +00:00
|
|
|
gint priority = ges_clip_get_top_effect_position (GES_CLIP (effect_clip),
|
2011-02-16 13:05:14 +00:00
|
|
|
GES_TRACK_EFFECT (tmp->data));
|
2011-02-04 10:44:19 +00:00
|
|
|
fail_unless (priority > effect_prio);
|
|
|
|
fail_unless (GES_IS_TRACK_EFFECT (tmp->data));
|
2011-02-01 20:22:04 +00:00
|
|
|
effect_prio = priority;
|
|
|
|
|
|
|
|
g_object_unref (tmp->data);
|
|
|
|
}
|
|
|
|
g_list_free (effects);
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
ges_timeline_layer_remove_object (layer, (GESClip *) effect_clip);
|
2011-02-01 20:22:04 +00:00
|
|
|
|
|
|
|
g_object_unref (timeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2011-02-08 09:25:41 +00:00
|
|
|
GST_START_TEST (test_track_effect_set_properties)
|
|
|
|
{
|
|
|
|
GESTimeline *timeline;
|
|
|
|
GESTimelineLayer *layer;
|
|
|
|
GESTrack *track_video;
|
2013-01-20 15:42:29 +00:00
|
|
|
GESTimelineParseLaunchEffect *effect_clip;
|
2011-02-25 16:10:00 +00:00
|
|
|
GESTrackObject *tck_effect;
|
|
|
|
guint scratch_line, n_props, i;
|
2011-02-25 11:13:03 +00:00
|
|
|
gboolean color_aging;
|
2011-02-25 16:10:00 +00:00
|
|
|
GParamSpec **pspecs, *spec;
|
|
|
|
GValue val = { 0 };
|
|
|
|
GValue nval = { 0 };
|
2011-02-08 09:25:41 +00:00
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
timeline = ges_timeline_new ();
|
|
|
|
layer = (GESTimelineLayer *) ges_simple_timeline_layer_new ();
|
|
|
|
track_video = ges_track_video_raw_new ();
|
|
|
|
|
|
|
|
ges_timeline_add_track (timeline, track_video);
|
|
|
|
ges_timeline_add_layer (timeline, layer);
|
|
|
|
|
|
|
|
GST_DEBUG ("Create effect");
|
2013-01-20 15:42:29 +00:00
|
|
|
effect_clip = ges_timeline_parse_launch_effect_new ("agingtv", NULL);
|
2011-02-08 09:25:41 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
g_object_set (effect_clip, "duration", 25 * GST_SECOND, NULL);
|
2011-02-08 09:25:41 +00:00
|
|
|
|
|
|
|
ges_simple_timeline_layer_add_object ((GESSimpleTimelineLayer *) (layer),
|
2013-01-20 15:42:29 +00:00
|
|
|
(GESClip *) effect_clip, 0);
|
2011-02-08 09:25:41 +00:00
|
|
|
|
2011-02-25 16:10:00 +00:00
|
|
|
tck_effect = GES_TRACK_OBJECT (ges_track_parse_launch_effect_new ("agingtv"));
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_add_track_object (GES_CLIP (effect_clip), tck_effect));
|
2011-02-25 16:10:00 +00:00
|
|
|
fail_unless (ges_track_add_object (track_video, tck_effect));
|
2011-02-08 09:25:41 +00:00
|
|
|
|
2012-12-19 13:37:02 +00:00
|
|
|
ges_track_object_set_child_properties (tck_effect,
|
2011-02-25 11:13:03 +00:00
|
|
|
"GstAgingTV::scratch-lines", 17, "color-aging", FALSE, NULL);
|
2012-12-19 13:37:02 +00:00
|
|
|
ges_track_object_get_child_properties (tck_effect,
|
2011-02-25 11:13:03 +00:00
|
|
|
"GstAgingTV::scratch-lines", &scratch_line,
|
|
|
|
"color-aging", &color_aging, NULL);
|
|
|
|
fail_unless (scratch_line == 17);
|
|
|
|
fail_unless (color_aging == FALSE);
|
2011-02-08 09:25:41 +00:00
|
|
|
|
2011-02-25 16:10:00 +00:00
|
|
|
pspecs = ges_track_object_list_children_properties (tck_effect, &n_props);
|
2011-12-30 16:16:29 +00:00
|
|
|
fail_unless (n_props == 7);
|
2011-02-25 16:10:00 +00:00
|
|
|
|
|
|
|
spec = pspecs[0];
|
|
|
|
i = 1;
|
|
|
|
while (g_strcmp0 (spec->name, "scratch-lines")) {
|
|
|
|
spec = pspecs[i++];
|
|
|
|
}
|
|
|
|
|
|
|
|
g_value_init (&val, G_TYPE_UINT);
|
|
|
|
g_value_init (&nval, G_TYPE_UINT);
|
|
|
|
g_value_set_uint (&val, 10);
|
|
|
|
|
|
|
|
ges_track_object_set_child_property_by_pspec (tck_effect, spec, &val);
|
|
|
|
ges_track_object_get_child_property_by_pspec (tck_effect, spec, &nval);
|
|
|
|
fail_unless (g_value_get_uint (&nval) == 10);
|
|
|
|
|
|
|
|
for (i = 0; i < n_props; i++) {
|
|
|
|
g_param_spec_unref (pspecs[i]);
|
|
|
|
}
|
2011-05-06 20:21:22 +00:00
|
|
|
g_free (pspecs);
|
2011-02-25 16:10:00 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
ges_timeline_layer_remove_object (layer, (GESClip *) effect_clip);
|
2011-02-08 09:25:41 +00:00
|
|
|
|
|
|
|
g_object_unref (timeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2011-02-08 13:04:39 +00:00
|
|
|
void
|
2013-01-20 15:42:29 +00:00
|
|
|
effect_added_cb (GESClip * obj, GESTrackEffect * trop, gpointer data)
|
2011-02-08 13:04:39 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG ("Effect added");
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (GES_IS_CLIP (obj));
|
2011-02-16 13:05:14 +00:00
|
|
|
fail_unless (GES_IS_TRACK_EFFECT (trop));
|
2011-02-08 13:04:39 +00:00
|
|
|
}
|
|
|
|
|
2011-02-08 14:29:21 +00:00
|
|
|
void
|
|
|
|
deep_prop_changed_cb (GESTrackObject * obj, GstElement * element,
|
|
|
|
GParamSpec * spec)
|
|
|
|
{
|
|
|
|
GST_DEBUG ("%s property changed", g_param_spec_get_name (spec));
|
|
|
|
fail_unless (GES_IS_TRACK_OBJECT (obj));
|
|
|
|
fail_unless (GST_IS_ELEMENT (element));
|
|
|
|
}
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
GST_START_TEST (test_clip_signals)
|
2011-02-08 13:04:39 +00:00
|
|
|
{
|
|
|
|
GESTimeline *timeline;
|
|
|
|
GESTimelineLayer *layer;
|
|
|
|
GESTrack *track_video;
|
2013-01-20 15:42:29 +00:00
|
|
|
GESTimelineParseLaunchEffect *effect_clip;
|
2011-02-10 11:17:50 +00:00
|
|
|
GESTrackParseLaunchEffect *tck_effect;
|
2012-12-19 13:37:02 +00:00
|
|
|
GValue val = { 0, };
|
2011-02-08 13:04:39 +00:00
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
timeline = ges_timeline_new ();
|
|
|
|
layer = (GESTimelineLayer *) ges_simple_timeline_layer_new ();
|
|
|
|
track_video = ges_track_video_raw_new ();
|
|
|
|
|
|
|
|
ges_timeline_add_track (timeline, track_video);
|
|
|
|
ges_timeline_add_layer (timeline, layer);
|
|
|
|
|
|
|
|
GST_DEBUG ("Create effect");
|
2013-01-20 15:42:29 +00:00
|
|
|
effect_clip = ges_timeline_parse_launch_effect_new ("agingtv", NULL);
|
|
|
|
g_signal_connect (effect_clip, "effect-added", (GCallback) effect_added_cb,
|
|
|
|
effect_clip);
|
2011-02-08 13:04:39 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
g_object_set (effect_clip, "duration", 25 * GST_SECOND, NULL);
|
2011-02-08 13:04:39 +00:00
|
|
|
|
|
|
|
ges_simple_timeline_layer_add_object ((GESSimpleTimelineLayer *) (layer),
|
2013-01-20 15:42:29 +00:00
|
|
|
(GESClip *) effect_clip, 0);
|
2011-02-08 13:04:39 +00:00
|
|
|
|
2011-02-11 08:14:33 +00:00
|
|
|
tck_effect = ges_track_parse_launch_effect_new ("agingtv");
|
2013-01-20 15:42:29 +00:00
|
|
|
fail_unless (ges_clip_add_track_object (GES_CLIP
|
|
|
|
(effect_clip), GES_TRACK_OBJECT (tck_effect)));
|
2011-02-08 13:04:39 +00:00
|
|
|
fail_unless (ges_track_add_object (track_video,
|
|
|
|
GES_TRACK_OBJECT (tck_effect)));
|
2011-02-08 14:29:21 +00:00
|
|
|
g_signal_connect (tck_effect, "deep-notify", (GCallback) deep_prop_changed_cb,
|
|
|
|
tck_effect);
|
2011-02-08 13:04:39 +00:00
|
|
|
|
2012-12-19 13:37:02 +00:00
|
|
|
ges_track_object_set_child_properties (GES_TRACK_OBJECT (tck_effect),
|
2011-02-25 11:13:03 +00:00
|
|
|
"GstAgingTV::scratch-lines", 17, NULL);
|
2012-12-19 13:37:02 +00:00
|
|
|
|
|
|
|
g_value_init (&val, G_TYPE_UINT);
|
2011-02-08 13:04:39 +00:00
|
|
|
ges_track_object_get_child_property (GES_TRACK_OBJECT (tck_effect),
|
2012-12-19 13:37:02 +00:00
|
|
|
"GstAgingTV::scratch-lines", &val);
|
|
|
|
fail_unless (G_VALUE_HOLDS_UINT (&val));
|
|
|
|
g_value_unset (&val);
|
2011-02-08 13:04:39 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
ges_timeline_layer_remove_object (layer, (GESClip *) effect_clip);
|
2011-02-08 13:04:39 +00:00
|
|
|
|
|
|
|
g_object_unref (timeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
2010-11-05 11:12:24 +00:00
|
|
|
static Suite *
|
|
|
|
ges_suite (void)
|
|
|
|
{
|
|
|
|
Suite *s = suite_create ("ges");
|
|
|
|
TCase *tc_chain = tcase_create ("effect");
|
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
|
|
|
|
tcase_add_test (tc_chain, test_effect_basic);
|
2013-01-20 15:42:29 +00:00
|
|
|
tcase_add_test (tc_chain, test_add_effect_to_clip);
|
2011-01-31 10:32:14 +00:00
|
|
|
tcase_add_test (tc_chain, test_get_effects_from_tl);
|
2013-01-20 15:42:29 +00:00
|
|
|
tcase_add_test (tc_chain, test_effect_clip);
|
|
|
|
tcase_add_test (tc_chain, test_priorities_clip);
|
2011-02-08 09:25:41 +00:00
|
|
|
tcase_add_test (tc_chain, test_track_effect_set_properties);
|
2013-01-20 15:42:29 +00:00
|
|
|
tcase_add_test (tc_chain, test_clip_signals);
|
2010-11-05 11:12:24 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|