diff options
author | ritsuka <[email protected]> | 2015-02-12 18:45:40 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-02-12 18:45:40 +0000 |
commit | 0e8455ed2ca550aac454e798a4b0ca1bb84ad935 (patch) | |
tree | 57c1f81ee6ef026af0e0a3b01deeb69e7e68d4ab | |
parent | b02dbbdba62bffe7e3224da17c5f2b0585dd24d1 (diff) |
MacGui: show the turbo two pass checkbox when x265 is selected.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6897 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/HBVideo+UIAdditions.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBVideo+UIAdditions.m b/macosx/HBVideo+UIAdditions.m index eadeae6ce..ad5d1e1a6 100644 --- a/macosx/HBVideo+UIAdditions.m +++ b/macosx/HBVideo+UIAdditions.m @@ -74,7 +74,7 @@ - (BOOL)turboTwoPassSupported { - return (self.encoder == HB_VCODEC_X264); + return (self.encoder == HB_VCODEC_X264 || self.encoder == HB_VCODEC_X265); } /** |