diff options
author | sr55 <[email protected]> | 2008-04-17 20:53:10 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-04-17 20:53:10 +0000 |
commit | 327fd9f7cfd7a379a96ab8c22db4d871ef4bab1f (patch) | |
tree | 71fae1b08a8986b230c04a4400ba68f0b207d455 /win/C#/Functions/QueryParser.cs | |
parent | 823fe31bd3ab2e75e5687791b4571da299762f97 (diff) |
WinGui:
- Added theora support.
- Renamed the video encoders to match the mac gui.
- Made 64bit/OptimizeMP4/ipodatom invisible when non .mp4/m4v formats are in use
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1425 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/QueryParser.cs')
-rw-r--r-- | win/C#/Functions/QueryParser.cs | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/win/C#/Functions/QueryParser.cs b/win/C#/Functions/QueryParser.cs index df82fc2cc..a0550b06e 100644 --- a/win/C#/Functions/QueryParser.cs +++ b/win/C#/Functions/QueryParser.cs @@ -894,22 +894,19 @@ namespace Handbrake.Functions switch (videoEncoderConvertion)
{
case "ffmpeg":
- videoEncoderConvertion = "Mpeg 4";
+ videoEncoderConvertion = "MPEG-4 (FFmpeg)";
break;
case "xvid":
- videoEncoderConvertion = "Xvid";
+ videoEncoderConvertion = "MPEG-4 (XviD)";
break;
case "x264":
- videoEncoderConvertion = "H.264";
+ videoEncoderConvertion = "H.264 (x264)";
break;
- case "x264b13":
- videoEncoderConvertion = "H.264 Baseline 1.3";
- break;
- case "x264b30":
- videoEncoderConvertion = "H.264 (iPod)";
+ case "theora":
+ videoEncoderConvertion = "VP3 (Theora)";
break;
default:
- videoEncoderConvertion = "Mpeg 4";
+ videoEncoderConvertion = "MPEG-4 (FFmpeg)";
break;
}
thisQuery.q_videoEncoder = videoEncoderConvertion;
|