summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Wilkes <hwilkes@igalia.com>2019-10-29 16:29:24 +0000
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-01-26 18:16:50 +0000
commitd8dbf50603bd35a8465d522c91889362f7132165 (patch)
tree33ab7f8220e6a8891e202f794080010dc5612bad
parenta33a3b145daa740fe76f7a3d6035d885c6742e71 (diff)
command-line-formatter: fix typos
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/123>
-rw-r--r--ges/ges-command-line-formatter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ges/ges-command-line-formatter.c b/ges/ges-command-line-formatter.c
index 90e91c8d..a5219658 100644
--- a/ges/ges-command-line-formatter.c
+++ b/ges/ges-command-line-formatter.c
@@ -109,7 +109,7 @@ static GESCommandLineOption options[] = {
"and media2 completely opaque.\n",
{
{
- "uri", "n", 0, "asset-id",
+ "uri", "u", 0, "asset-id",
"The URI of the media file."
},
{
@@ -202,7 +202,7 @@ static GESCommandLineOption options[] = {
"<title text>", "Adds a clip in the timeline.", NULL,
{
{
- "text", "n", 0, NULL,
+ "text", "t", 0, NULL,
"The text to be used as title."
},
{
@@ -403,7 +403,7 @@ static gboolean
_ges_command_line_formatter_add_title_clip (GESTimeline * timeline,
GstStructure * structure, GError ** error)
{
- if (!_cleanup_fields (options[TEST_CLIP].properties, structure, error))
+ if (!_cleanup_fields (options[TITLE].properties, structure, error))
return FALSE;
gst_structure_set (structure, "type", G_TYPE_STRING, "GESTitleClip", NULL);