diff options
author | sr55 <[email protected]> | 2007-12-14 16:51:42 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-12-14 16:51:42 +0000 |
commit | fa2599b3cd9e61a6a7f4295154649dd6087b38bf (patch) | |
tree | 04debcb885c6cbe323c7b4c99f0632020c704916 /win/C#/Functions | |
parent | b17a98a1f959008a6536141fa55a2e84fa74a065 (diff) |
WinGui:
- Removed some old CLI handler files that were never completed.
- Removed Quickstart Window along with some redundant code.
- Removed the Query Editor tab as it is no longer really needed.
- Removed CRF option as this is now the default.
- Removed DRC Checkbox. The slider is now used for activation.
- Few changes to the Naming of GUI items to match the MacGUI.
- Warnings about no source / destination removed from Save/open presets and set default options. Will only appear on Queue and Encode buttons now.
- Fixed autonaming issue where it was enabled even when it was disabled.
- Added option to the Tools menu to display the current CLI query. This may be useful now that the Query editor tab is gone.
- Options window design tweaked.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1128 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions')
-rw-r--r-- | win/C#/Functions/QueryParser.cs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/win/C#/Functions/QueryParser.cs b/win/C#/Functions/QueryParser.cs index c39a6a4e6..82670caae 100644 --- a/win/C#/Functions/QueryParser.cs +++ b/win/C#/Functions/QueryParser.cs @@ -430,17 +430,6 @@ namespace Handbrake.Functions }
}
- private Boolean q_crf;
- /// <summary>
- /// Returns a boolean to indicate if CRF is on or off.
- /// </summary>
- public Boolean CRF
- {
- get
- {
- return this.q_crf;
- }
- }
#endregion
#region Audio Settings
@@ -607,7 +596,6 @@ namespace Handbrake.Functions Match videoBitrate = Regex.Match(input, @"-b ([0-9]*)");
Match videoQuality = Regex.Match(input, @"-q ([0-9.]*)");
Match videoFilesize = Regex.Match(input, @"-S ([0-9.]*)");
- Match CRF = Regex.Match(input, @"-Q");
Match twoPass = Regex.Match(input, @"-2");
Match turboFirstPass = Regex.Match(input, @"-T");
Match grayscale = Regex.Match(input, @"-g");
@@ -820,7 +808,6 @@ namespace Handbrake.Functions qConvert = System.Math.Ceiling(qConvert);
thisQuery.q_videoQuality = int.Parse(qConvert.ToString());
}
- thisQuery.q_crf = CRF.Success;
thisQuery.q_ipodAtom = ipodAtom.Success;
thisQuery.q_optimizeMp4 = optimizeMP4.Success;
|