tools: fix compiler warning

gst-launch.c: In function ‘print_toc_entry’:
gst-launch.c:446:3: error: the size of array ‘spc’ can’t be evaluated [-Werror=vla]
gst-launch.c:446:3: error: variable-sized object may not be initialized
This commit is contained in:
Tim-Philipp Müller 2012-04-02 23:17:21 +01:00
parent 2c715dd827
commit 4d79cbe7ef

View file

@ -508,19 +508,20 @@ print_tag (const GstTagList * list, const gchar * tag, gpointer unused)
}
}
#define MAX_INDENT 40
static void
print_toc_entry (gpointer data, gpointer user_data)
{
GstTocEntry *entry = (GstTocEntry *) data;
const guint max_indent = 40;
const gchar spc[max_indent + 1] = " ";
const gchar spc[MAX_INDENT + 1] = " ";
const gchar *entry_types[] = { "chapter", "edition" };
guint indent = MIN (GPOINTER_TO_UINT (user_data), max_indent);
guint indent = MIN (GPOINTER_TO_UINT (user_data), MAX_INDENT);
gint64 start, stop;
gst_toc_entry_get_start_stop (entry, &start, &stop);
PRINT ("%s%s:", &spc[max_indent - indent], entry_types[entry->type]);
PRINT ("%s%s:", &spc[MAX_INDENT - indent], entry_types[entry->type]);
if (GST_CLOCK_TIME_IS_VALID (start)) {
PRINT (" start: %" GST_TIME_FORMAT, GST_TIME_ARGS (start));
}