Commit a2a38d96 authored by Anton Khirnov's avatar Anton Khirnov

avconv: fix parsing metadata specifiers.

After 039267f1, metadata specifiers are
passed without the leading ':'. Remove a ++ that didn't take this into
account.
parent bc5acfa7
......@@ -2730,7 +2730,7 @@ static int opt_map(OptionsContext *o, const char *opt, const char *arg)
static void parse_meta_type(char *arg, char *type, int *index)
{
if (*arg) {
*type = *(++arg);
*type = *arg;
switch (*arg) {
case 'g':
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment