From a032c1e1bdc58fe1769b38fa5f827b6cb0f285bf Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 18 Apr 2024 11:29:21 +0200 Subject: [PATCH] ges-command-line-formatter: Handle transitions Avoids getting a noisy g_warning Part-of: --- .../gst-editing-services/ges/ges-command-line-formatter.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/subprojects/gst-editing-services/ges/ges-command-line-formatter.c b/subprojects/gst-editing-services/ges/ges-command-line-formatter.c index 70581e78e4..b66747e7d1 100644 --- a/subprojects/gst-editing-services/ges/ges-command-line-formatter.c +++ b/subprojects/gst-editing-services/ges/ges-command-line-formatter.c @@ -1135,6 +1135,9 @@ ges_command_line_formatter_get_timeline_uri (GESTimeline * timeline) _sanitize_argument (ges_uri_clip_get_uri (GES_URI_CLIP (clip)), res); option = &options[CLIP]; + } else if (GES_IS_TRANSITION_CLIP (clip)) { + g_string_append (res, " +transition"); + option = &options[CLIP]; } else { g_warning ("Unhandled clip type: %s", G_OBJECT_TYPE_NAME (clip)); continue;