summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2014-03-28 22:38:54 +0000
committersr55 <[email protected]>2014-03-28 22:38:54 +0000
commit10d1b15bfb728d0485560f88c9e0c0afae50b0e3 (patch)
tree6a9fc7a60e5eebb85391c035de147fd460699295 /win
parentcdeb9b127b25fb5813666344799216052061ed4f (diff)
WinGui: Mapping fix for x265. (not "hvec")
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6139 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs b/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs
index ef5812a25..b27678b6e 100644
--- a/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs
+++ b/win/CS/HandBrake.ApplicationServices/Utilities/Converters.cs
@@ -297,7 +297,7 @@ namespace HandBrake.ApplicationServices.Utilities
return VideoEncoder.QuickSync;
case "theora":
return VideoEncoder.Theora;
- case "hevc":
+ case "x265":
return VideoEncoder.X265;
default:
return VideoEncoder.X264;
@@ -328,7 +328,7 @@ namespace HandBrake.ApplicationServices.Utilities
case VideoEncoder.Theora:
return "theora";
case VideoEncoder.X265:
- return "hevc";
+ return "x265";
default:
return "x264";
}