The arguments weren't separated properly if a stretch factor was given. Also the factor ignore the fact that mkvmerge is implicitely adding "/1000" unless a divisor is given, too.

This commit is contained in:
Moritz Bunkus 2005-01-20 11:01:39 +00:00
parent 317d2ea88b
commit 32f151a58e

View File

@ -1284,7 +1284,7 @@ mmg_dialog::update_command_line() {
else else
arg += wxT("0"); arg += wxT("0");
if (t->stretch.Length() > 0) if (t->stretch.Length() > 0)
arg += t->stretch; arg += wxT(",") + t->stretch + wxT("/1");
clargs.Add(wxT("--sync")); clargs.Add(wxT("--sync"));
clargs.Add(arg); clargs.Add(arg);
} }