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/HandBrake.ApplicationServices/Utilities | |
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/HandBrake.ApplicationServices/Utilities')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs | 4 | ||||
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs b/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs index aa9842124..ef5812a25 100644 --- a/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs +++ b/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs @@ -543,8 +543,6 @@ namespace HandBrake.ApplicationServices.Utilities return OutputFormat.Mp4;
case "mkv":
return OutputFormat.Mkv;
- case "x265":
- return OutputFormat.X265;
}
}
@@ -567,8 +565,6 @@ namespace HandBrake.ApplicationServices.Utilities return "m4v";
case OutputFormat.Mkv:
return "mkv";
- case OutputFormat.X265:
- return "x265";
}
}
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs b/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs index a4aacac7f..5ff4924eb 100644 --- a/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs +++ b/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs @@ -135,9 +135,6 @@ namespace HandBrake.ApplicationServices.Utilities case OutputFormat.Mkv:
profile.ContainerName = "av_mkv"; // TODO make part of enum.
break;
- case OutputFormat.X265:
- profile.ContainerName = "x265"; // TODO make part of enum.
- break;
}
// Picture Settings
|