diff options
author | sr55 <[email protected]> | 2014-02-23 15:59:51 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-02-23 15:59:51 +0000 |
commit | 3c843089925a96a5a291d547be768412a1741791 (patch) | |
tree | fe23f0bd24ac27f8d9b1910beebb85371133a030 /win/CS/HandBrakeWPF/Converters/Video | |
parent | 71c53a04fc0d43fee4ee024f854ebc6783234fd2 (diff) |
WinGui: Enable the x265 raw muxer for testing. Note to everyone playing with this. This is highly experimental at this stage. There is no support for audio and the encoder is slow compared to x264. It's still early days.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6063 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Converters/Video')
-rw-r--r-- | win/CS/HandBrakeWPF/Converters/Video/VideoEncoderConverter.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Converters/Video/VideoEncoderConverter.cs b/win/CS/HandBrakeWPF/Converters/Video/VideoEncoderConverter.cs index 6854656d4..32b68e9fb 100644 --- a/win/CS/HandBrakeWPF/Converters/Video/VideoEncoderConverter.cs +++ b/win/CS/HandBrakeWPF/Converters/Video/VideoEncoderConverter.cs @@ -65,6 +65,12 @@ namespace HandBrakeWPF.Converters.Video encoders.Remove(VideoEncoder.X265);
}
+ if (task != null && task.OutputFormat == OutputFormat.X265)
+ {
+ encoders.Clear();
+ encoders.Add(VideoEncoder.X265);
+ }
+
return EnumHelper<VideoEncoder>.GetEnumDisplayValuesSubset(encoders);
}
|