OSDN Git Service

MacGui: use subq for subpixel motion estimation instead of subme. This helps avoid...
authorjbrjake <jbrjake@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Tue, 15 May 2007 20:49:03 +0000 (20:49 +0000)
committerjbrjake <jbrjake@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Tue, 15 May 2007 20:49:03 +0000 (20:49 +0000)
This will have to be revisited when I add a "bime" option, because that will probably conflict with what dynaflash added in the last commit to sort this problem out.

git-svn-id: svn://localhost/HandBrake/trunk@584 b64f7644-9d1e-0410-96f1-a4d463321fa5

macosx/Controller.mm

index 06c460f..4bc8cb5 100644 (file)
@@ -2066,6 +2066,12 @@ the user is using "Custom" settings by determining the sender*/
         cleanOptNameString = @"no-dct-decimate";
     }
     
+    /*Subme*/
+    if ([cleanOptNameString isEqualToString:@"subme"])
+    {
+        cleanOptNameString = @"subq";
+    }
+    
     return cleanOptNameString; 
 }
 
@@ -2129,7 +2135,7 @@ the user is using "Custom" settings by determining the sender*/
                     [fX264optNodctdcmtPopUp selectItemAtIndex:[optValue intValue]+1];
                 }
                 /*Sub Me NSPopUpButton*/
-                if ([optName isEqualToString:@"subme"])
+                if ([optName isEqualToString:@"subq"])
                 {
                     [fX264optSubmePopUp selectItemAtIndex:[optValue intValue]+1];
                 }
@@ -2183,7 +2189,7 @@ the user is using "Custom" settings by determining the sender*/
     }
     if (sender == fX264optSubmePopUp)
     {
-        optNameToChange = @"subme";
+        optNameToChange = @"subq";
     }
     if (sender == fX264optTrellisPopUp)
     {