diff options
author | sr55 <[email protected]> | 2011-03-13 16:44:49 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-03-13 16:44:49 +0000 |
commit | b6a5d4eba610711d15ed99dc5f2e9e126ce06086 (patch) | |
tree | e72eb5be161c3ac9b01bbc3b3efcd4ab8f91e06c /win/CS/Controls/x264Panel.cs | |
parent | 38f64c238720fe0524f99b380fbb1a8c795a7586 (diff) |
Rename Direction C# to CS
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3846 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Controls/x264Panel.cs')
-rw-r--r-- | win/CS/Controls/x264Panel.cs | 1076 |
1 files changed, 1076 insertions, 0 deletions
diff --git a/win/CS/Controls/x264Panel.cs b/win/CS/Controls/x264Panel.cs new file mode 100644 index 000000000..7678539f2 --- /dev/null +++ b/win/CS/Controls/x264Panel.cs @@ -0,0 +1,1076 @@ +/* x264Panel.cs $
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
+
+namespace Handbrake.Controls
+{
+ using System;
+ using System.Globalization;
+ using System.Windows.Forms;
+
+ /// <summary>
+ /// The x264 Panel
+ /// </summary>
+ public partial class x264Panel : UserControl
+ {
+ /*
+ * TODO This code was ported from the obj-c MacGUI code. It's really messy and could really do with being cleaned up
+ * at some point.
+ */
+
+ private CultureInfo culture = CultureInfo.CreateSpecificCulture("en-US");
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="x264Panel"/> class.
+ /// Initializes a new instance of the x264 panel user control
+ /// </summary>
+ public x264Panel()
+ {
+ InitializeComponent();
+
+ if (Properties.Settings.Default.tooltipEnable)
+ ToolTip.Active = true;
+
+ Reset2Defaults();
+ }
+
+ /// <summary>
+ /// Gets or sets the X264 query string
+ /// </summary>
+ public string X264Query
+ {
+ get
+ {
+ return rtf_x264Query.Text;
+ }
+ set
+ {
+ rtf_x264Query.Text = value;
+ }
+ }
+
+ /// <summary>
+ /// Reset all components to defaults and clears the x264 rtf box
+ /// </summary>
+ public void Reset2Defaults()
+ {
+ check_8x8DCT.CheckState = CheckState.Checked;
+ check_Cabac.CheckState = CheckState.Checked;
+ check_weightp.CheckState = CheckState.Checked;
+ check_noDCTDecimate.CheckState = CheckState.Unchecked;
+ combo_pyrmidalBFrames.SelectedIndex = 0;
+ drop_analysis.SelectedIndex = 0;
+ drop_bFrames.SelectedIndex = 0;
+ drop_deblockAlpha.SelectedIndex = 0;
+ drop_deblockBeta.SelectedIndex = 0;
+ drop_directPrediction.SelectedIndex = 0;
+ drop_MotionEstimationMethod.SelectedIndex = 0;
+ drop_MotionEstimationRange.SelectedIndex = 0;
+ drop_refFrames.SelectedIndex = 0;
+ drop_subpixelMotionEstimation.SelectedIndex = 0;
+ drop_trellis.SelectedIndex = 0;
+ slider_psyrd.Value = 10;
+ slider_psytrellis.Value = 0;
+ drop_adaptBFrames.SelectedIndex = 0;
+ slider_adaptiveQuantStrength.Value = slider_adaptiveQuantStrength.Maximum / 2;
+
+ rtf_x264Query.Text = string.Empty;
+ }
+
+ #region Standardize Option String
+ /// <summary>
+ /// Iterate over every x264 option, standardize it, write the full string to the x264 rtf box
+ /// </summary>
+ public void StandardizeOptString()
+ {
+ /* Set widgets depending on the opt string in field */
+ string thisOpt; // The separated option such as "bframes=3"
+ string optName; // The option name such as "bframes"
+ string optValue; // The option value such as "3"
+ string changedOptString = string.Empty;
+ string[] currentOptsArray;
+
+ /*First, we get an opt string to process */
+ string currentOptString = rtf_x264Query.Text;
+
+ /*verify there is an opt string to process */
+ if (currentOptString.Contains("="))
+ {
+ /*Put individual options into an array based on the ":" separator for processing, result is "<opt>=<value>"*/
+ currentOptsArray = currentOptString.Split(':');
+
+ /*iterate through the array and get <opts> and <values*/
+ int loopcounter;
+ int currentOptsArrayCount = currentOptsArray.Length;
+ for (loopcounter = 0; loopcounter < currentOptsArrayCount; loopcounter++)
+ {
+ thisOpt = currentOptsArray[loopcounter];
+ if (currentOptsArray[currentOptsArrayCount - 1] == string.Empty)
+ break;
+
+ string[] splitOptRange = thisOpt.Split('=');
+ if (thisOpt != string.Empty)
+ {
+ if (thisOpt.Contains("="))
+ {
+ optName = splitOptRange[0];
+ optValue = splitOptRange[1];
+
+ /* Standardize the names here depending on whats in the string */
+ optName = StandardizeOptName(optName);
+ thisOpt = optName + "=" + optValue;
+ }
+ else // No value given so we use a default of "1"
+ {
+ optName = thisOpt;
+ /* Standardize the names here depending on whats in the string */
+ optName = StandardizeOptName(optName);
+ thisOpt = optName + "=1";
+ }
+ }
+
+ /* Construct New String for opts here */
+ if (thisOpt == string.Empty)
+ changedOptString = changedOptString + thisOpt;
+ else
+ {
+ if (changedOptString == string.Empty)
+ changedOptString = thisOpt;
+ else
+ changedOptString = changedOptString + ":" + thisOpt;
+ }
+ }
+ }
+
+ /* Change the option string to reflect the new standardized option string */
+ if (changedOptString != string.Empty)
+ rtf_x264Query.Text = changedOptString;
+ }
+
+ /// <summary>
+ /// Take a single option and standardize it. Returns as a String
+ /// Input: String. - Single X264 Option. Name only
+ /// Output: String - Single X264 Option. Name only. Changed to standard format
+ /// </summary>
+ /// <param name="cleanOptNameString">a string of x264 options to clean</param>
+ /// <returns>A string containing standardized x264 option names</returns>
+ private static string StandardizeOptName(string cleanOptNameString)
+ {
+ string input = cleanOptNameString;
+
+ /* Reference Frames */
+ if (input.Equals("ref") || input.Equals("frameref"))
+ cleanOptNameString = "ref";
+
+ /*No Dict Decimate*/
+ if (input.Equals("no-dct-decimate") || input.Equals("no_dct_decimate") || input.Equals("nodct_decimate"))
+ cleanOptNameString = "no-dct-decimate";
+
+ /*Subme*/
+ if (input.Equals("subme"))
+ cleanOptNameString = "subq";
+
+ /*ME Range*/
+ if (input.Equals("me-range") || input.Equals("me_range"))
+ cleanOptNameString = "merange";
+
+ /*B Pyramid*/
+ if (input.Equals("b_pyramid"))
+ cleanOptNameString = "b-pyramid";
+
+ /*Direct Prediction*/
+ if (input.Equals("direct-pred") || input.Equals("direct_pred"))
+ cleanOptNameString = "direct";
+
+ /*Deblocking*/
+ if (input.Equals("filter"))
+ cleanOptNameString = "deblock";
+
+ /*Analysis*/
+ if (input.Equals("partitions"))
+ cleanOptNameString = "analyse";
+
+ return cleanOptNameString;
+ }
+ #endregion
+
+ /// <summary>
+ /// Resets the GUI widgets to the contents of the option string.
+ /// </summary>
+ public void SetCurrentSettingsInPanel()
+ {
+ /* Set widgets depending on the opt string in field */
+ string thisOpt; // The separated option such as "bframes=3"
+ string optName; // The option name such as "bframes"
+ string optValue; // The option value such as "3"
+ string[] currentOptsArray;
+
+ // Set currentOptString to the contents of the text box.
+ string currentOptString = rtf_x264Query.Text.Replace("\n", string.Empty);
+
+ /*verify there is an opt string to process */
+ if (currentOptString.Contains("="))
+ {
+ /*Put individual options into an array based on the ":" separator for processing, result is "<opt>=<value>"*/
+ currentOptsArray = currentOptString.Split(':');
+
+ /*iterate through the array and get <opts> and <values*/
+ int loopcounter;
+ int currentOptsArrayCount = currentOptsArray.Length;
+
+ /*iterate through the array and get <opts> and <values*/
+ for (loopcounter = 0; loopcounter < currentOptsArrayCount; loopcounter++)
+ {
+ thisOpt = currentOptsArray[loopcounter];
+ string[] splitOptRange = thisOpt.Split('=');
+
+ if (thisOpt.Contains("="))
+ {
+ optName = splitOptRange[0];
+ optValue = splitOptRange[1];
+
+ /*Run through the available widgets for x264 opts and set them, as you add widgets,
+ they need to be added here. This should be moved to its own method probably*/
+ switch (optName)
+ {
+ case "bframes":
+ drop_bFrames.SelectedItem = optValue;
+ continue;
+ case "ref":
+ drop_refFrames.SelectedItem = optValue;
+ continue;
+ case "weightp":
+ this.check_weightp.CheckState = optValue == "0" ? CheckState.Unchecked : CheckState.Checked;
+ continue;
+ case "no-dct-decimate":
+ check_noDCTDecimate.CheckState = CheckState.Checked;
+ continue;
+ case "subq":
+ int subqValue;
+ if (int.TryParse(optValue, out subqValue))
+ {
+ drop_subpixelMotionEstimation.SelectedIndex = subqValue + 1;
+ }
+ continue;
+ case "trellis":
+ switch (optValue)
+ {
+ case "0":
+ drop_trellis.SelectedIndex = 1;
+ break;
+ case "1":
+ drop_trellis.SelectedIndex = 2;
+ break;
+ case "2":
+ drop_trellis.SelectedIndex = 3;
+ break;
+ }
+ continue;
+ case "me":
+ if (optValue.Equals("dia"))
+ drop_MotionEstimationMethod.SelectedItem = "Diamond";
+ else if (optValue.Equals("hex"))
+ drop_MotionEstimationMethod.SelectedItem = "Hexagon";
+ else if (optValue.Equals("umh"))
+ drop_MotionEstimationMethod.SelectedItem = "Uneven Multi-Hexagon";
+ else if (optValue.Equals("esa"))
+ drop_MotionEstimationMethod.SelectedItem = "Exhaustive";
+ else if (optValue.Equals("tesa"))
+ drop_MotionEstimationMethod.SelectedItem = "Transformed Exhaustive";
+ continue;
+ case "merange":
+ drop_MotionEstimationRange.SelectedItem = optValue;
+ continue;
+ case "b-adapt":
+ int badapt;
+ int.TryParse(optValue, out badapt);
+ drop_adaptBFrames.SelectedIndex = (badapt + 1);
+ continue;
+ case "b-pyramid":
+ switch (optValue)
+ {
+ case "normal":
+ combo_pyrmidalBFrames.SelectedIndex = 0;
+ break;
+ case "strict":
+ combo_pyrmidalBFrames.SelectedIndex = 2;
+ break;
+ case "none":
+ combo_pyrmidalBFrames.SelectedIndex = 1;
+ break;
+ }
+ continue;
+ case "direct":
+ if (optValue == "auto")
+ optValue = "Automatic";
+
+ if (optValue != string.Empty)
+ {
+ char[] letters = optValue.ToCharArray();
+ letters[0] = Char.ToUpper(letters[0]);
+ optValue = new string(letters);
+ }
+
+ drop_directPrediction.SelectedItem = optValue;
+ continue;
+ case "deblock":
+ string[] splitDeblock = optValue.Split(',');
+ string alphaDeblock = splitDeblock[0];
+ string betaDeblock = splitDeblock[1];
+
+ if (alphaDeblock.Equals("0") && betaDeblock.Replace("\n", string.Empty).Equals("0"))
+ {
+ drop_deblockAlpha.SelectedItem = "Default (0)";
+ drop_deblockBeta.SelectedItem = "Default (0)";
+ }
+ else
+ {
+ drop_deblockAlpha.SelectedItem = !alphaDeblock.Equals("0") ? alphaDeblock : "0";
+
+ drop_deblockBeta.SelectedItem = !betaDeblock.Replace("\n", string.Empty).Equals("0")
+ ? betaDeblock.Replace("\n", string.Empty)
+ : "0";
+ }
+ continue;
+ case "analyse":
+ if (optValue.Equals("p8x8,b8x8,i8x8,i4x4"))
+ drop_analysis.SelectedItem = "Default (most)";
+ if (optValue.Equals("none"))
+ drop_analysis.SelectedItem = "None";
+ if (optValue.Equals("i4x4,i8x8"))
+ drop_analysis.SelectedItem = "Some";
+ if (optValue.Equals("all"))
+ drop_analysis.SelectedItem = "All";
+ continue;
+ case "8x8dct":
+ check_8x8DCT.CheckState = optValue == "1" ? CheckState.Checked : CheckState.Unchecked;
+ continue;
+ case "aq-strength":
+ float value;
+ float.TryParse(optValue, NumberStyles.Float, CultureInfo.InvariantCulture, out value);
+ int sliderValue;
+ int.TryParse((value * 10).ToString(), out sliderValue);
+ slider_adaptiveQuantStrength.Value = sliderValue;
+ continue;
+ case "cabac":
+ check_Cabac.CheckState = CheckState.Unchecked;
+ continue;
+ case "psy-rd":
+ string[] x = optValue.Split(',');
+
+ double psyrd, psytrellis;
+ int val, val2;
+
+ // default psy-rd = 1 (10 for the slider)
+ psyrd = double.TryParse(x[0], NumberStyles.Float, CultureInfo.InvariantCulture, out psyrd) ? psyrd * 10 : 10.0;
+ // default psy-trellis = 0
+ psytrellis = double.TryParse(x[1], NumberStyles.Float, CultureInfo.InvariantCulture, out psytrellis) ? psytrellis * 20 : 0.0;
+
+ int.TryParse(psyrd.ToString(), out val);
+ int.TryParse(psytrellis.ToString(), out val2);
+
+ slider_psyrd.Value = val;
+ slider_psytrellis.Value = val2;
+ continue;
+ }
+ }
+ }
+ }
+ }
+
+ /// <summary>
+ /// This function will update the X264 Query when one of the GUI widgets changes.
+ /// </summary>
+ /// <param name="sender">
+ /// The sender.
+ /// </param>
+ private void OnX264WidgetChange(string sender)
+ {
+ Animate(sender);
+ string optNameToChange = sender;
+ string currentOptString = rtf_x264Query.Text;
+
+ /*First, we create a pattern to check for ":"optNameToChange"=" to modify the option if the name falls after
+ the first character of the opt string (hence the ":") */
+ string checkOptNameToChange = ":" + optNameToChange + "=";
+ string checkOptNameToChangeBegin = optNameToChange + "=";
+
+ // IF the current H264 Option String Contains Multiple Items or Just 1 Item
+ if ((currentOptString.Contains(checkOptNameToChange)) || (currentOptString.StartsWith(checkOptNameToChangeBegin)))
+ HasOptions(currentOptString, optNameToChange);
+ else // IF there is no options in the rich text box!
+ HasNoOptions(optNameToChange);
+ }
+
+ /// <summary>
+ /// Called when the current x264 option string contains multiple (or a single) item(s) in it seperated by :
+ /// it updates the current option that the widget corrosponds to, if it is already in thes string.
+ /// </summary>
+ /// <param name="currentOptString">The Current Option String</param>
+ /// <param name="optNameToChange">Name of the option to change</param>
+ private void HasOptions(string currentOptString, string optNameToChange)
+ {
+ string thisOpt; // The separated option such as "bframes=3"
+ string optName; // The option name such as "bframes"
+ string[] currentOptsArray;
+
+ /* Create new empty opt string*/
+ string changedOptString = string.Empty;
+
+ /*Put individual options into an array based on the ":" separator for processing, result is "<opt>=<value>"*/
+ currentOptsArray = currentOptString.Split(':');
+
+ /*iterate through the array and get <opts> and <values*/
+ for (int loopcounter = 0; loopcounter < currentOptsArray.Length; loopcounter++)
+ {
+ thisOpt = currentOptsArray[loopcounter];
+
+ if (thisOpt.Contains("="))
+ {
+ string[] splitOptRange = thisOpt.Split('=');
+
+ optName = splitOptRange[0]; // e.g bframes
+
+ /*
+ * Run through the available widgets for x264 opts and set them, as you add widgets,
+ * they need to be added here. This should be moved to its own method probably
+ * If the optNameToChange is found, appropriately change the value or delete it if
+ * "unspecified" is set.
+ */
+ if (optName.Equals(optNameToChange))
+ {
+ if (optNameToChange.Equals("deblock"))
+ {
+ string da = drop_deblockAlpha.SelectedItem.ToString();
+ string db = drop_deblockBeta.SelectedItem.ToString();
+
+ if (((da.Contains("Default")) && (db.Contains("Default"))) ||
+ ((da.Contains("0")) && (db.Contains("0"))))
+ {
+ drop_deblockBeta.SelectedItem = "Default (0)";
+ drop_deblockAlpha.SelectedItem = "Default (0)";
+ thisOpt = string.Empty;
+ }
+ else if ((!da.Contains("Default")) && (db.Contains("Default")))
+ {
+ drop_deblockBeta.SelectedItem = "0";
+ thisOpt = "deblock=" + da + ",0";
+ }
+ else if ((da.Contains("Default")) && (!db.Contains("Default")))
+ {
+ drop_deblockAlpha.SelectedItem = "0";
+ thisOpt = "deblock=0," + db;
+ }
+ else if ((!da.Contains("Default")) && (!db.Contains("Default")))
+ thisOpt = "deblock=" + da + "," + db;
+ }
+ else if (optNameToChange.Equals("aq-strength"))
+ {
+ if (slider_adaptiveQuantStrength.Value == 10)
+ thisOpt = string.Empty;
+ else
+ {
+ double value = slider_adaptiveQuantStrength.Value * 0.1;
+ string aqs = value.ToString("f1", culture);
+ thisOpt = "aq-strength=" + aqs;
+ }
+ }
+ else if (optNameToChange.Equals("psy-rd"))
+ {
+ if (slider_psyrd.Value == 10 && slider_psytrellis.Value == 0)
+ thisOpt = string.Empty;
+ else
+ {
+ double psyrd = slider_psyrd.Value * 0.1;
+ double psytre = slider_psytrellis.Value * 0.05;
+
+ string rd = psyrd.ToString("f2", culture);
+ string rt = psytre.ToString("f2", culture);
+
+ thisOpt = "psy-rd=" + rd + "," + rt;
+ }
+ }
+ else if (optNameToChange.Equals("b-pyramid"))
+ {
+ switch (combo_pyrmidalBFrames.SelectedIndex)
+ {
+ case 0: // Default
+ thisOpt = string.Empty;
+ break;
+ case 1: // Off
+ thisOpt = "b-pyramid=none";
+ break;
+ case 2: // Strict
+ thisOpt = "b-pyramid=strict";
+ break;
+ }
+ }
+ else if (optNameToChange.Equals("no-dct-decimate"))
+ thisOpt = check_noDCTDecimate.CheckState == CheckState.Checked ? "no-dct-decimate=1" : string.Empty;
+ else if (optNameToChange.Equals("8x8dct"))
+ thisOpt = check_8x8DCT.CheckState == CheckState.Unchecked ? "8x8dct=0" : string.Empty;
+ else if (optNameToChange.Equals("cabac"))
+ thisOpt = check_Cabac.CheckState == CheckState.Checked ? string.Empty : "cabac=0";
+ else if (optNameToChange.Equals("weightp"))
+ thisOpt = check_weightp.CheckState == CheckState.Checked ? string.Empty : "weightp=0";
+ else if (optNameToChange.Equals("me"))
+ {
+ switch (drop_MotionEstimationMethod.SelectedIndex)
+ {
+ case 1:
+ thisOpt = "me=dia";
+ break;
+
+ case 2:
+ thisOpt = "me=hex";
+ break;
+
+ case 3:
+ thisOpt = "me=umh";
+ break;
+
+ case 4:
+ thisOpt = "me=esa";
+ break;
+
+ case 5:
+ thisOpt = "me=tesa";
+ break;
+
+ default:
+ thisOpt = string.Empty;
+ break;
+ }
+ }
+ else if (optNameToChange.Equals("direct"))
+ {
+ switch (drop_directPrediction.SelectedIndex)
+ {
+ case 1:
+ thisOpt = "direct=none";
+ break;
+
+ case 2:
+ thisOpt = "direct=spatial";
+ break;
+
+ case 3:
+ thisOpt = "direct=temporal";
+ break;
+
+ case 4:
+ thisOpt = "direct=auto";
+ break;
+
+ default:
+ thisOpt = string.Empty;
+ break;
+ }
+ }
+ else if (optNameToChange.Equals("analyse"))
+ {
+ switch (drop_analysis.SelectedIndex)
+ {
+ case 1:
+ thisOpt = "analyse=none";
+ break;
+
+ case 2:
+ thisOpt = "analyse=some";
+ break;
+
+ case 3:
+ thisOpt = "analyse=all";
+ break;
+
+ default:
+ thisOpt = string.Empty;
+ break;
+ }
+ }
+ else if (optNameToChange.Equals("merange"))
+ {
+ thisOpt = !drop_MotionEstimationRange.SelectedItem.ToString().Contains("Default")
+ ? "merange=" + drop_MotionEstimationRange.SelectedItem
+ : string.Empty;
+ }
+ else if (optNameToChange.Equals("b-adapt"))
+ {
+ thisOpt = !drop_adaptBFrames.SelectedItem.ToString().Contains("Default")
+ ? "b-adapt=" + (drop_adaptBFrames.SelectedIndex - 1)
+ : string.Empty;
+ }
+ else if (optNameToChange.Equals("ref"))
+ {
+ thisOpt = !drop_refFrames.SelectedItem.ToString().Contains("Default")
+ ? "ref=" + drop_refFrames.SelectedItem
+ : string.Empty;
+ }
+ else if (optNameToChange.Equals("bframes"))
+ {
+ string value = drop_bFrames.SelectedItem.ToString();
+ thisOpt = !drop_bFrames.SelectedItem.ToString().Contains("Default")
+ ? "bframes=" + value
+ : string.Empty;
+ }
+ else if (optNameToChange.Equals("subq"))
+ {
+ string value = drop_subpixelMotionEstimation.SelectedItem.ToString();
+ string[] val = value.Split(':');
+ thisOpt = !drop_subpixelMotionEstimation.SelectedItem.ToString().Contains("Default")
+ ? "subq=" + val[0]
+ : string.Empty;
+ }
+ else if (optNameToChange.Equals("trellis"))
+ {
+ switch (drop_trellis.SelectedIndex)
+ {
+ case 1: // Off
+ thisOpt = "trellis=0";
+ break;
+ case 2: // Encode Only
+ thisOpt = "trellis=1";
+ break;
+ case 3: // Always
+ thisOpt = "trellis=2";
+ break;
+ default:
+ thisOpt = string.Empty;
+ break;
+ }
+ }
+ }
+ }
+
+ /* Construct New String for opts here */
+ if (!thisOpt.Equals(string.Empty))
+ changedOptString = changedOptString.Equals(string.Empty) ? thisOpt : changedOptString + ":" + thisOpt;
+ }
+
+ /* Change the option string to reflect the new mod settings */
+ rtf_x264Query.Text = changedOptString;
+ }
+
+ /// <summary>
+ /// Add's an option to the x264 query string.
+ /// Handles 2 cases. 1 Where rtf_x264Query.Text is empty, and one where there is an option with no value,
+ /// e.g no-fast-pskip
+ /// </summary>
+ /// <param name="optNameToChange">The Option Name to Change</param>
+ private void HasNoOptions(IEquatable<string> optNameToChange)
+ {
+ string colon = string.Empty;
+ if (rtf_x264Query.Text != string.Empty)
+ colon = ":";
+
+ string query = rtf_x264Query.Text;
+ if (optNameToChange.Equals("me"))
+ {
+ switch (drop_MotionEstimationMethod.SelectedIndex)
+ {
+ case 1:
+ query = query + colon + "me=dia";
+ break;
+
+ case 2:
+ query = query + colon + "me=hex";
+ break;
+
+ case 3:
+ query = query + colon + "me=umh";
+ break;
+
+ case 4:
+ query = query + colon + "me=esa";
+ break;
+
+ case 5:
+ query = query + colon + "me=tesa";
+ break;
+
+ default:
+ break;
+ }
+ }
+ else if (optNameToChange.Equals("direct"))
+ {
+ switch (drop_directPrediction.SelectedIndex)
+ {
+ case 1:
+ query = query + colon + "direct=none";
+ break;
+
+ case 2:
+ query = query + colon + "direct=spatial";
+ break;
+
+ case 3:
+ query = query + colon + "direct=temporal";
+ break;
+
+ case 4:
+ query = query + colon + "direct=auto";
+ break;
+
+ default:
+ break;
+ }
+ }
+ else if (optNameToChange.Equals("analyse"))
+ {
+ switch (drop_analysis.SelectedIndex)
+ {
+ case 1:
+ query = query + colon + "analyse=none";
+ break;
+
+ case 2:
+ query = query + colon + "analyse=some";
+ break;
+
+ case 3:
+ query = query + colon + "analyse=all";
+ break;
+
+ default:
+ break;
+ }
+ }
+ else if (optNameToChange.Equals("merange"))
+ {
+ int value = drop_MotionEstimationRange.SelectedIndex + 3;
+ query = query + colon + "merange=" + value;
+ }
+ else if (optNameToChange.Equals("b-adapt"))
+ {
+ int value = drop_adaptBFrames.SelectedIndex - 1;
+ query = query + colon + "b-adapt=" + value;
+ }
+ else if (optNameToChange.Equals("deblock"))
+ {
+ string da = drop_deblockAlpha.SelectedItem.ToString();
+ string db = drop_deblockBeta.Text;
+
+ if (((da.Contains("Default")) && (db.Contains("Default"))) || ((da.Contains("0")) && (db.Contains("0"))))
+ {
+ drop_deblockBeta.SelectedItem = "Default (0)";
+ drop_deblockAlpha.SelectedItem = "Default (0)";
+ }
+ else
+ {
+ if (db.Contains("Default"))
+ db = "0";
+
+ if (da.Contains("Default"))
+ da = "0";
+
+ query = query + colon + "deblock=" + da + "," + db;
+ }
+ }
+ else if (optNameToChange.Equals("aq-strength"))
+ {
+ if (slider_adaptiveQuantStrength.Value == 10)
+ query = string.Empty;
+ else
+ {
+ double value = slider_adaptiveQuantStrength.Value * 0.1;
+ string aqs = value.ToString("f1", culture);
+ query += colon + "aq-strength=" + aqs;
+ }
+ }
+ else if (optNameToChange.Equals("psy-rd"))
+ {
+ if (slider_psyrd.Value == 10 && slider_psytrellis.Value == 0)
+ query += string.Empty;
+ else
+ {
+ double psyrd = slider_psyrd.Value * 0.1;
+ double psytre = slider_psytrellis.Value * 0.05;
+
+ string rd = psyrd.ToString("f1", culture);
+ string rt = psytre.ToString("f2", culture);
+
+ query += colon + "psy-rd=" + rd + "," + rt;
+ }
+ }
+ else if (optNameToChange.Equals("b-pyramid"))
+ {
+ switch (combo_pyrmidalBFrames.SelectedIndex)
+ {
+ case 0:
+ break;
+ case 1:
+ query = query + colon + "b-pyramid=none";
+ break;
+ case 2:
+ query = query + colon + "b-pyramid=strict";
+ break;
+ }
+ }
+ else if (optNameToChange.Equals("no-dct-decimate"))
+ {
+ if (check_noDCTDecimate.CheckState == CheckState.Checked)
+ query = query + colon + "no-dct-decimate=1";
+ }
+ else if (optNameToChange.Equals("8x8dct"))
+ {
+ if (check_8x8DCT.CheckState == CheckState.Unchecked)
+ query = query + colon + "8x8dct=0";
+ }
+ else if (optNameToChange.Equals("cabac"))
+ {
+ if (check_Cabac.CheckState != CheckState.Checked)
+ query = query + colon + "cabac=0";
+ }
+ else if (optNameToChange.Equals("weightp"))
+ {
+ if (check_weightp.CheckState == CheckState.Unchecked)
+ query = query + colon + "weightp=0";
+ }
+ else if (optNameToChange.Equals("ref"))
+ {
+ if (!drop_refFrames.SelectedItem.ToString().Contains("Default"))
+ query = query + colon + "ref=" + drop_refFrames.SelectedItem;
+ }
+ else if (optNameToChange.Equals("bframes"))
+ {
+ string value = drop_bFrames.SelectedItem.ToString();
+ if (!drop_bFrames.SelectedItem.ToString().Contains("Default"))
+ query = query + colon + "bframes=" + value;
+ }
+ else if (optNameToChange.Equals("subq"))
+ {
+ string value = drop_subpixelMotionEstimation.SelectedItem.ToString();
+ if (!drop_subpixelMotionEstimation.SelectedItem.ToString().Contains("Default"))
+ {
+ string[] val = value.Split(':');
+ query = query + colon + "subq=" + val[0];
+ }
+ }
+ else if (optNameToChange.Equals("trellis"))
+ {
+ switch (drop_trellis.SelectedIndex)
+ {
+ case 1: // Off
+ query = query + colon + "trellis=0";
+ break;
+ case 2: // Encode Only
+ query = query + colon + "trellis=1";
+ break;
+ case 3: // Always
+ query = query + colon + "trellis=2";
+ break;
+ default:
+ break;
+ }
+ }
+
+ rtf_x264Query.Text = query;
+ }
+
+ /// <summary>
+ /// Shows and hides controls based on the values of other controls.
+ /// </summary>
+ /// <param name="sender">The Sender</param>
+ private void Animate(string sender)
+ {
+ /* Lots of situations to cover.
+ - B-frames (when 0 turn of b-frame specific stuff, when < 2 disable b-pyramid)
+ - CABAC (when 0 turn off trellis and psy-trel
+ - subme (if under 6, turn off psy-rd and psy-trel)
+ - trellis (if 0, turn off psy-trel)
+ */
+
+ switch (sender)
+ {
+ case "bframes":
+ if (drop_bFrames.SelectedIndex == 1)
+ {
+ /* If the b-frame widget is at 1, the user has chosen
+ not to use b-frames at all. So disable the options
+ that can only be used when b-frames are enabled. */
+ combo_pyrmidalBFrames.Visible = false;
+ lbl_prymidalBframes.Visible = false;
+ drop_directPrediction.Visible = false;
+ lbl_direct_prediction.Visible = false;
+
+ combo_pyrmidalBFrames.SelectedIndex = 0;
+ drop_directPrediction.SelectedIndex = 0;
+
+ drop_adaptBFrames.Visible = false;
+ lbl_adaptBFrames.Visible = false;
+ drop_adaptBFrames.SelectedIndex = 0;
+ }
+ else if (drop_bFrames.SelectedIndex == 2)
+ {
+ /* Only 1 b-frame? Disable b-pyramid. */
+ combo_pyrmidalBFrames.Visible = false;
+ lbl_prymidalBframes.Visible = false;
+ combo_pyrmidalBFrames.SelectedIndex = 0;
+
+ drop_directPrediction.Visible = true;
+ lbl_direct_prediction.Visible = true;
+
+ drop_adaptBFrames.Visible = true;
+ lbl_adaptBFrames.Visible = true;
+ }
+ else
+ {
+ combo_pyrmidalBFrames.Visible = true;
+ lbl_prymidalBframes.Visible = true;
+ drop_directPrediction.Visible = true;
+ lbl_direct_prediction.Visible = true;
+
+ drop_adaptBFrames.Visible = true;
+ lbl_adaptBFrames.Visible = true;
+ }
+ break;
+ case "me": // Motion Estimation
+ if (drop_MotionEstimationMethod.SelectedIndex < 3)
+ {
+ drop_MotionEstimationRange.Visible = false;
+ lbl_merange.Visible = false;
+ drop_MotionEstimationRange.SelectedIndex = 0;
+ }
+ else
+ {
+ drop_MotionEstimationRange.Visible = true;
+ lbl_merange.Visible = true;
+ }
+ break;
+ case "subq": // subme
+ if (drop_subpixelMotionEstimation.SelectedIndex != 0 &&
+ drop_subpixelMotionEstimation.SelectedIndex < 7)
+ {
+ slider_psyrd.Visible = false;
+ slider_psyrd.Value = 10;
+ lbl_psyrd.Visible = false;
+
+ slider_psytrellis.Visible = false;
+ slider_psytrellis.Value = 0;
+ lbl_psytrellis.Visible = false;
+ }
+ else
+ {
+ slider_psyrd.Visible = true;
+ lbl_psyrd.Visible = true;
+
+ if (drop_trellis.SelectedIndex >= 2 && slider_psytrellis.Visible == false)
+ {
+ slider_psytrellis.Visible = true;
+ lbl_psytrellis.Visible = true;
+ }
+ }
+ break;
+ case "trellis": // subme
+ if (drop_trellis.SelectedIndex > 0 && drop_trellis.SelectedIndex < 2)
+ {
+ slider_psytrellis.Visible = false;
+ slider_psytrellis.Value = 0;
+ lbl_psytrellis.Visible = false;
+ }
+ else
+ {
+ if ((drop_subpixelMotionEstimation.SelectedIndex == 0 || drop_subpixelMotionEstimation.SelectedIndex >= 7) && slider_psytrellis.Visible == false)
+ {
+ slider_psytrellis.Visible = true;
+ lbl_psytrellis.Visible = true;
+ }
+ }
+ break;
+ }
+ }
+
+ /* UI Events */
+
+ private void widgetControlChanged(object sender, EventArgs e)
+ {
+ Control changedControlName = (Control) sender;
+ string controlName = string.Empty;
+
+ switch (changedControlName.Name.Trim())
+ {
+ case "drop_refFrames":
+ controlName = "ref";
+ break;
+ case "drop_bFrames":
+ controlName = "bframes";
+ break;
+ case "drop_directPrediction":
+ controlName = "direct";
+ break;
+ case "check_weightp":
+ controlName = "weightp";
+ break;
+ case "combo_pyrmidalBFrames":
+ controlName = "b-pyramid";
+ break;
+ case "drop_MotionEstimationMethod":
+ controlName = "me";
+ break;
+ case "drop_MotionEstimationRange":
+ controlName = "merange";
+ break;
+ case "drop_subpixelMotionEstimation":
+ controlName = "subq";
+ break;
+ case "drop_analysis":
+ controlName = "analyse";
+ break;
+ case "check_8x8DCT":
+ controlName = "8x8dct";
+ break;
+ case "drop_deblockAlpha":
+ controlName = "deblock";
+ break;
+ case "drop_deblockBeta":
+ controlName = "deblock";
+ break;
+ case "drop_trellis":
+ controlName = "trellis";
+ break;
+ case "check_noDCTDecimate":
+ controlName = "no-dct-decimate";
+ break;
+ case "check_Cabac":
+ controlName = "cabac";
+ break;
+ case "slider_psyrd":
+ controlName = "psy-rd";
+ break;
+ case "slider_psytrellis":
+ controlName = "psy-rd";
+ break;
+ case "slider_adaptiveQuantStrength":
+ controlName = "aq-strength";
+ break;
+ case "drop_adaptBFrames":
+ controlName = "b-adapt";
+ break;
+ }
+ OnX264WidgetChange(controlName);
+ }
+
+ private void rtf_x264Query_TextChanged(object sender, EventArgs e)
+ {
+ if (rtf_x264Query.Text.EndsWith("\n"))
+ {
+ string query = rtf_x264Query.Text.Replace("\n", string.Empty);
+ Reset2Defaults();
+ rtf_x264Query.Text = query;
+ this.StandardizeOptString();
+ this.SetCurrentSettingsInPanel();
+
+ if (rtf_x264Query.Text == string.Empty)
+ Reset2Defaults();
+ }
+ }
+
+ private void btn_reset_Click(object sender, EventArgs e)
+ {
+ rtf_x264Query.Text = string.Empty;
+ Reset2Defaults();
+ }
+ }
+}
\ No newline at end of file |