mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-05-03 23:14:48 +00:00
ges: Don't break debug lines
This commit is contained in:
parent
71141d8d4f
commit
5b57ce7f4f
2 changed files with 6 additions and 6 deletions
|
@ -161,8 +161,8 @@ ges_tl_parse_launch_effect_create_track_obj (GESTimelineObject * self,
|
|||
return GES_TRACK_OBJECT (ges_track_parse_launch_effect_new
|
||||
(effect->priv->video_bin_description));
|
||||
}
|
||||
GST_DEBUG ("Can't create the track Object, the\
|
||||
video_bin_description is not set");
|
||||
GST_DEBUG ("Can't create the track Object, the"
|
||||
"video_bin_description is not set");
|
||||
}
|
||||
if (track->type == GES_TRACK_TYPE_AUDIO) {
|
||||
if (effect->priv->audio_bin_description != NULL) {
|
||||
|
@ -170,8 +170,8 @@ ges_tl_parse_launch_effect_create_track_obj (GESTimelineObject * self,
|
|||
return GES_TRACK_OBJECT (ges_track_parse_launch_effect_new
|
||||
(effect->priv->audio_bin_description));
|
||||
}
|
||||
GST_DEBUG ("Can't create the track Object, the\
|
||||
audio_bin_description is not set");
|
||||
GST_DEBUG ("Can't create the track Object, the"
|
||||
"audio_bin_description is not set");
|
||||
}
|
||||
|
||||
GST_WARNING ("Effect doesn't handle this track type");
|
||||
|
|
|
@ -769,8 +769,8 @@ ensure_gnl_object (GESTrackObject * object)
|
|||
props_hash = class->get_props_hastable (object);
|
||||
|
||||
if (props_hash == NULL) {
|
||||
GST_DEBUG ("'get_props_hastable' implementation returned TRUE but no\
|
||||
properties_hashtable is available");
|
||||
GST_DEBUG ("'get_props_hastable' implementation returned TRUE but no"
|
||||
"properties_hashtable is available");
|
||||
} else {
|
||||
object->priv->properties_hashtable = props_hash;
|
||||
connect_properties_signals (object);
|
||||
|
|
Loading…
Reference in a new issue