timeline-title-source: remove audio-test-source
authorMatas Brazdeikis <matas@brazdeikis.lt>
Mon, 13 Aug 2012 15:00:28 +0000 (16:00 +0100)
committerThibault Saunier <thibault.saunier@collabora.com>
Sun, 26 Aug 2012 20:10:34 +0000 (16:10 -0400)
ges/ges-timeline-title-source.c

index 947fcdbe686c0700d1ded901a0145f4bfacb42d4..97ef5a7373f64ba0ca10d8fd97b284b8d26a2b7f 100644 (file)
@@ -24,8 +24,6 @@
  *
  * Renders the given text in the specified font, at specified position, and
  * with the specified background pattern.
- *
- * Note: creates a silent #GESTrackAudioTestSource to fill audio tracks
  */
 
 #include "ges-internal.h"
@@ -33,7 +31,6 @@
 #include "ges-timeline-source.h"
 #include "ges-track-object.h"
 #include "ges-track-title-source.h"
-#include "ges-track-audio-test-source.h"
 #include <string.h>
 
 G_DEFINE_TYPE (GESTimelineTitleSource, ges_timeline_title_source,
@@ -672,12 +669,6 @@ ges_timeline_title_source_create_track_object (GESTimelineObject * obj,
     ges_track_title_source_set_ypos ((GESTrackTitleSource *) res, priv->ypos);
   }
 
-  else if (track->type == GES_TRACK_TYPE_AUDIO) {
-    res = (GESTrackObject *) ges_track_audio_test_source_new ();
-    if (priv->mute)
-      ges_track_object_set_active (res, FALSE);
-  }
-
   return res;
 }