summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodeo <[email protected]>2015-05-17 00:40:55 +0000
committerRodeo <[email protected]>2015-05-17 00:40:55 +0000
commit11f037ee4d90018928186ae8fb0b1b4f9429d49a (patch)
tree51e6d651cf78e2bcba9d95d6c6a3dbe776d44a50
parentd6c41097441f28a5a3a23ffa64ca3555068084d4 (diff)
MacGui: don't forget the fastdecode checkbox when printing the job's queue description.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7201 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--macosx/HBJob+UIAdditions.m19
1 files changed, 17 insertions, 2 deletions
diff --git a/macosx/HBJob+UIAdditions.m b/macosx/HBJob+UIAdditions.m
index 498c4f551..da0ccf7e3 100644
--- a/macosx/HBJob+UIAdditions.m
+++ b/macosx/HBJob+UIAdditions.m
@@ -321,9 +321,24 @@ static NSDictionary *shortHeightAttr;
{
// we are using the x264 system
encoderPresetInfo = [encoderPresetInfo stringByAppendingString: [NSString stringWithFormat:@"Preset: %@", self.video.preset]];
- if (self.video.tune.length)
+
+ if (self.video.tune.length || self.video.fastDecode)
{
- encoderPresetInfo = [encoderPresetInfo stringByAppendingString: [NSString stringWithFormat:@" - Tune: %@", self.video.tune]];
+ encoderPresetInfo = [encoderPresetInfo stringByAppendingString:@" - Tune: "];
+
+ if (self.video.tune.length)
+ {
+ encoderPresetInfo = [encoderPresetInfo stringByAppendingString: [NSString stringWithFormat:@"%@", self.video.tune]];
+
+ if (self.video.fastDecode)
+ {
+ encoderPresetInfo = [encoderPresetInfo stringByAppendingString:@","];
+ }
+ }
+ if (self.video.fastDecode)
+ {
+ encoderPresetInfo = [encoderPresetInfo stringByAppendingString:@"fastdecode"];
+ }
}
if (self.video.videoOptionExtra.length)
{