create test track object instead of audio-title-source

This commit is contained in:
Brandon Lewis 2010-06-28 18:24:12 +02:00 committed by Edward Hervey
parent 560956ed24
commit 23a3bbb80f

View file

@ -31,7 +31,7 @@
#include "ges-timeline-source.h"
#include "ges-track-object.h"
#include "ges-track-video-title-source.h"
#include "ges-track-audio-title-source.h"
#include "ges-track-audio-background-source.h"
#include <string.h>
G_DEFINE_TYPE (GESTimelineTitleSource, ges_tl_title_src,
@ -392,7 +392,7 @@ ges_tl_title_src_create_track_object (GESTimelineObject * obj, GESTrack * track)
}
else if (track->type == GES_TRACK_TYPE_AUDIO) {
res = (GESTrackObject *) ges_track_audio_title_source_new ();
res = (GESTrackObject *) ges_track_audio_background_source_new ();
if (tfs->mute)
ges_track_object_set_active (res, FALSE);
}