mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
create test track object instead of audio-title-source
This commit is contained in:
parent
560956ed24
commit
23a3bbb80f
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue