diff options
| author | Anton Khirnov <anton@khirnov.net> | 2011-09-05 11:39:09 +0200 |
|---|---|---|
| committer | Anton Khirnov <anton@khirnov.net> | 2011-09-05 12:11:10 +0200 |
| commit | a2a38d9665802a2b53d6c864128ecb06db96e19c (patch) | |
| tree | e5a3fca524166cb5ba7ea18147fe6ba151fced15 | |
| parent | bc5acfa7af01d7ac947159b3337d41692e29ee8a (diff) | |
| download | ffmpeg-a2a38d9665802a2b53d6c864128ecb06db96e19c.tar.gz | |
avconv: fix parsing metadata specifiers.
After 039267f192f335144d9251e6f05a1513dd1e8ef1, metadata specifiers are
passed without the leading ':'. Remove a ++ that didn't take this into
account.
| -rw-r--r-- | avconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
