summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorritsuka <[email protected]>2015-02-12 18:45:40 +0000
committerritsuka <[email protected]>2015-02-12 18:45:40 +0000
commit0e8455ed2ca550aac454e798a4b0ca1bb84ad935 (patch)
tree57c1f81ee6ef026af0e0a3b01deeb69e7e68d4ab
parentb02dbbdba62bffe7e3224da17c5f2b0585dd24d1 (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.m2
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);
}
/**