summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.m
diff options
context:
space:
mode:
authordynaflash <[email protected]>2009-10-19 20:31:06 +0000
committerdynaflash <[email protected]>2009-10-19 20:31:06 +0000
commit41dc72b96a5b99eb0d80439b95c0b02efc9f84af (patch)
tree26536cbfeb19de7fc15c439100a2e6e8dfbf74d3 /macosx/Controller.m
parentf33e439878afdf2161708519353007f8d83f6447 (diff)
MacGui: make crf default for x264
- this removes the optional preference and no longer sets job->crf = 1; git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2890 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.m')
-rw-r--r--macosx/Controller.m7
1 files changed, 1 insertions, 6 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m
index 44dd7f779..f9c4f6b07 100644
--- a/macosx/Controller.m
+++ b/macosx/Controller.m
@@ -3369,12 +3369,7 @@ bool one_burned = FALSE;
job->ipod_atom = 0;
}
- /* Set this flag to switch from Constant Quantizer(default) to Constant Rate Factor Thanks jbrjake
- Currently only used with Constant Quality setting*/
- if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultCrf"] > 0 && [[queueToApply objectForKey:@"VideoQualityType"] intValue] == 2)
- {
- job->crf = 1;
- }
+
/* Below Sends x264 options to the core library if x264 is selected*/
/* Lets use this as per Nyx, Thanks Nyx!*/
job->x264opts = (char *)calloc(1024, 1); /* Fixme, this just leaks */