summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels
diff options
context:
space:
mode:
authorRodeo <[email protected]>2014-03-13 01:43:10 +0000
committerRodeo <[email protected]>2014-03-13 01:43:10 +0000
commitaf390e55e762996f367d4391ff72c8312f27e762 (patch)
tree5c79ca1f05f7023d9aa85e11f74febf56cf2bdaa /win/CS/HandBrakeWPF/ViewModels
parent042db50b62739c9a01ed83e225926dbe1de9b843 (diff)
WinGui: enable MP4 and Matroska muxing for x265.
Also, remove the raw muxer. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6106 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
index 4dcf9bc67..08f009bd4 100644
--- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
@@ -615,7 +615,7 @@ namespace HandBrakeWPF.ViewModels
{
return new List<OutputFormat>
{
- OutputFormat.Mp4, OutputFormat.Mkv, OutputFormat.X265
+ OutputFormat.Mp4, OutputFormat.Mkv
};
}
}
@@ -654,9 +654,6 @@ namespace HandBrakeWPF.ViewModels
case ".m4v":
this.SelectedOutputFormat = OutputFormat.Mp4;
break;
- case ".x265":
- this.SelectedOutputFormat = OutputFormat.X265;
- break;
}
}
}
@@ -1473,9 +1470,6 @@ namespace HandBrakeWPF.ViewModels
case ".m4v":
this.SelectedOutputFormat = OutputFormat.M4V;
break;
- case ".x265":
- this.SelectedOutputFormat = OutputFormat.X265;
- break;
}
this.NotifyOfPropertyChange(() => this.CurrentTask);