mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 12:27:21 +00:00
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:
parent
317d2ea88b
commit
32f151a58e
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user