diff options
author | sr55 <[email protected]> | 2011-11-17 21:07:18 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-11-17 21:07:18 +0000 |
commit | 597e0303b344558c877d38ebfb4c3677d9a3ca22 (patch) | |
tree | ef2f29e688cfb08a1a5c187798e119fece4bdf0a | |
parent | 6456852b5317e555c66101ef3a2582afb3ad06bc (diff) |
WinGui: Fix the mpeg4 encoder query.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4354 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/CS/Functions/QueryGenerator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/Functions/QueryGenerator.cs b/win/CS/Functions/QueryGenerator.cs index af51a442d..b085626a9 100644 --- a/win/CS/Functions/QueryGenerator.cs +++ b/win/CS/Functions/QueryGenerator.cs @@ -344,7 +344,7 @@ namespace Handbrake.Functions switch (mainWindow.drp_videoEncoder.Text)
{
case "MPEG-4 (FFmpeg)":
- query += " -e ffmpeg";
+ query += " -e ffmpeg4";
break;
case "MPEG-2 (FFmpeg)":
query += " -e ffmpeg2";
|