summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2009-02-12 21:42:59 +0000
committersr55 <[email protected]>2009-02-12 21:42:59 +0000
commit20507852c810ab87d8bf7fb86d75abe682934ab2 (patch)
tree52d792b0c75d4976cfd6060cfb311d7ed2ae7f24 /win/C#/frmMain.cs
parent40adbd9c9ea191a7ae69dd93822090c4616855ee (diff)
WinGui:
- PSY Rate Distortion, PSY Trellis, Adaptive B-Frames added to the advanced tab. - Advanced tag re-arranged to match the macgui. Entire GUI window enlarged to make room for new widgets. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2152 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index eb2ced5c8..6fef28e08 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -1590,9 +1590,20 @@ namespace Handbrake
}
private void check_Cabac_CheckedChanged(object sender, EventArgs e)
{
-
x264PanelFunctions.on_x264_WidgetChange("cabac", this);
}
+ private void slider_psyrd_Scroll(object sender, EventArgs e)
+ {
+ x264PanelFunctions.on_x264_WidgetChange("psy-rd", this);
+ }
+ private void slider_psytrellis_Scroll(object sender, EventArgs e)
+ {
+ x264PanelFunctions.on_x264_WidgetChange("psy-rd", this);
+ }
+ private void drop_adaptBFrames_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ x264PanelFunctions.on_x264_WidgetChange("b-adapt", this);
+ }
private void rtf_x264Query_TextChanged(object sender, EventArgs e)
{
@@ -2186,7 +2197,6 @@ namespace Handbrake
#endregion
-
// This is the END of the road ------------------------------------------------------------------------------
}