summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-04-08 20:34:38 +0000
committersr55 <[email protected]>2010-04-08 20:34:38 +0000
commit3f0d1475e525b620ef1742ea525edd13ad75459d (patch)
treef357ef05c3db8c8c41422c73f87ffe723ac3a0e1 /win
parenta34d4ad61e0126bb7506b328445aba1aba0c9c5d (diff)
WinGui:
- MP3 in MP4 files is now enabled. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3206 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r--win/C#/Controls/AudioPanel.Designer.cs16
-rw-r--r--win/C#/Controls/AudioPanel.cs1
2 files changed, 9 insertions, 8 deletions
diff --git a/win/C#/Controls/AudioPanel.Designer.cs b/win/C#/Controls/AudioPanel.Designer.cs
index 46692e570..04bcbd2a8 100644
--- a/win/C#/Controls/AudioPanel.Designer.cs
+++ b/win/C#/Controls/AudioPanel.Designer.cs
@@ -36,13 +36,13 @@ namespace Handbrake.Controls
{
this.components = new System.ComponentModel.Container();
this.lv_audioList = new System.Windows.Forms.ListView();
- this.col_id = new System.Windows.Forms.ColumnHeader();
- this.col_Source = new System.Windows.Forms.ColumnHeader();
- this.col_codec = new System.Windows.Forms.ColumnHeader();
- this.col_mixdown = new System.Windows.Forms.ColumnHeader();
- this.col_samplerate = new System.Windows.Forms.ColumnHeader();
- this.col_bitrate = new System.Windows.Forms.ColumnHeader();
- this.col_drc = new System.Windows.Forms.ColumnHeader();
+ this.col_id = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.col_Source = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.col_codec = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.col_mixdown = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.col_samplerate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.col_bitrate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.col_drc = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.audioMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.audioList_moveup = new System.Windows.Forms.ToolStripMenuItem();
this.audioList_movedown = new System.Windows.Forms.ToolStripMenuItem();
@@ -324,7 +324,7 @@ namespace Handbrake.Controls
this.drp_audioTrack.FormattingEnabled = true;
this.drp_audioTrack.Items.AddRange(new object[] {
"Automatic"});
- this.drp_audioTrack.Location = new System.Drawing.Point(15, 35);
+ this.drp_audioTrack.Location = new System.Drawing.Point(15, 34);
this.drp_audioTrack.Name = "drp_audioTrack";
this.drp_audioTrack.Size = new System.Drawing.Size(194, 21);
this.drp_audioTrack.TabIndex = 50;
diff --git a/win/C#/Controls/AudioPanel.cs b/win/C#/Controls/AudioPanel.cs
index 1ed84273c..6b96940eb 100644
--- a/win/C#/Controls/AudioPanel.cs
+++ b/win/C#/Controls/AudioPanel.cs
@@ -52,6 +52,7 @@ namespace Handbrake.Controls
{
drp_audioEncoder.Items.Clear();
drp_audioEncoder.Items.Add("AAC (faac)");
+ drp_audioEncoder.Items.Add("MP3 (lame)");
drp_audioEncoder.Items.Add("AC3 Passthru");
if ((oldval != "AAC (faac)") && (oldval != "AC3 Passthru"))
drp_audioEncoder.SelectedIndex = 0;