git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/0.8.0_beta2_5.1@381
b64f7644-9d1e-0410-96f1-
a4d463321fa5
}
/* Sends x264 options to the core library*/
- job->x264opts = [[[NSUserDefaults standardUserDefaults] stringForKey:@"DefAdvancedx264Flags"] cString];
+ job->x264opts = strdup([[[NSUserDefaults standardUserDefaults] stringForKey:@"DefAdvancedx264Flags"] cString]);
job->h264_13 = [fVidEncoderPopUp indexOfSelectedItem];
job->pass = 1;
hb_add( fHandle, job );
job->pass = 2;
+ job->x264opts = strdup([[[NSUserDefaults standardUserDefaults] stringForKey:@"DefAdvancedx264Flags"] cString]);
hb_add( fHandle, job );
}
else