diff options
author | Rodeo <[email protected]> | 2014-03-13 01:43:10 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2014-03-13 01:43:10 +0000 |
commit | af390e55e762996f367d4391ff72c8312f27e762 (patch) | |
tree | 5c79ca1f05f7023d9aa85e11f74febf56cf2bdaa /win/CS/HandBrakeWPF/ViewModels | |
parent | 042db50b62739c9a01ed83e225926dbe1de9b843 (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.cs | 8 |
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);
|