avconv: fix parsing the AVOptions for -target

CC: libav-stable@libav.org
This commit is contained in:
Anton Khirnov 2014-08-26 06:26:35 +00:00
parent 1688eef253
commit f5245a9c62
1 changed files with 4 additions and 0 deletions

View File

@ -1870,6 +1870,10 @@ static int opt_target(void *optctx, const char *opt, const char *arg)
av_log(NULL, AV_LOG_ERROR, "Unknown target: %s\n", arg);
return AVERROR(EINVAL);
}
av_dict_copy(&o->g->codec_opts, codec_opts, 0);
av_dict_copy(&o->g->format_opts, format_opts, 0);
return 0;
}