else
{
// we are using the x264 preset system
- if ([(tmpString = self.video.tune) length])
+ if ([(tmpString = self.video.completeTune) length])
{
encoder_tune = [tmpString UTF8String];
}
const char *h264_level = NULL;
// prepare the tune, advanced options, profile and level
- if ([tmpString = [self completeTune] length])
+ if ([tmpString = self.completeTune length])
{
x264_tune = [tmpString UTF8String];
}
@property (nonatomic, readwrite) BOOL fastDecode;
@property (nonatomic, readwrite, assign) HBJob *job;
+@property (nonatomic, readonly) NSString *completeTune;
@end