diff options
author | Rodeo <[email protected]> | 2015-05-29 22:20:35 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2015-05-29 22:20:35 +0000 |
commit | 93fb333304b2493a50623b04caac95b53eca3240 (patch) | |
tree | 6770a27513b3c5f1d8a5231cfad9692d3fcd7329 /macosx/HBVideo+UIAdditions.m | |
parent | 1538772d963815afb194a80fe73e751d75badb99 (diff) |
MacGui: don't hardcode which encoders support the preset system.
Just ask libhb instead.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7243 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBVideo+UIAdditions.m')
-rw-r--r-- | macosx/HBVideo+UIAdditions.m | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/macosx/HBVideo+UIAdditions.m b/macosx/HBVideo+UIAdditions.m index 7de227676..cd07bde11 100644 --- a/macosx/HBVideo+UIAdditions.m +++ b/macosx/HBVideo+UIAdditions.m @@ -69,7 +69,16 @@ - (BOOL)fastDecodeSupported { - return (self.encoder == HB_VCODEC_X264 || self.encoder == HB_VCODEC_X265); + const char * const *tunes = hb_video_encoder_get_tunes(self.encoder); + + for (int i = 0; tunes != NULL && tunes[i] != NULL; i++) + { + if (!strcasecmp(tunes[i], "fastdecode")) + { + return YES; + } + } + return NO; } - (BOOL)turboTwoPassSupported |