From 32f151a58e1eba0ec367d174b408843983d8e8e9 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Thu, 20 Jan 2005 11:01:39 +0000 Subject: [PATCH] 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. --- src/mmg/mmg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mmg/mmg.cpp b/src/mmg/mmg.cpp index 03679ab7b..8c88a5c82 100644 --- a/src/mmg/mmg.cpp +++ b/src/mmg/mmg.cpp @@ -1284,7 +1284,7 @@ mmg_dialog::update_command_line() { else arg += wxT("0"); if (t->stretch.Length() > 0) - arg += t->stretch; + arg += wxT(",") + t->stretch + wxT("/1"); clargs.Add(wxT("--sync")); clargs.Add(arg); }