Browse Source

avconv: fix parsing metadata specifiers.

After 039267f192f335144d9251e6f05a1513dd1e8ef1, metadata specifiers are
passed without the leading ':'. Remove a ++ that didn't take this into
account.
tags/n0.9
Anton Khirnov 13 years ago
parent
commit
a2a38d9665
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      avconv.c

+ 1
- 1
avconv.c View File

@@ -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;


Loading…
Cancel
Save