summaryrefslogtreecommitdiffstats
path: root/macosx/HBAdvancedController.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBAdvancedController.m')
-rw-r--r--macosx/HBAdvancedController.m12
1 files changed, 10 insertions, 2 deletions
diff --git a/macosx/HBAdvancedController.m b/macosx/HBAdvancedController.m
index b8bb553c2..55da0c06b 100644
--- a/macosx/HBAdvancedController.m
+++ b/macosx/HBAdvancedController.m
@@ -38,23 +38,31 @@
return [fDisplayX264Options stringValue];
}
+- (NSString *) optionsStringLavc
+{
+ return [fDisplayLavcOptions stringValue];
+}
+
- (void) setOptions: (NSString *)string
{
[fDisplayX264Options setStringValue:string];
[self X264AdvancedOptionsSet:nil];
}
+- (void) setLavcOptions: (NSString *)string
+{
+ [fDisplayLavcOptions setStringValue:string];
+}
+
- (void) setHidden: (BOOL) hide
{
if(hide)
{
[fOptionsBox setContentView:fEmptyView];
- [fX264optViewTitleLabel setStringValue: @"Only Used With The x264 (H.264) Codec"];
}
else
{
[fOptionsBox setContentView:fX264optView];
- [fX264optViewTitleLabel setStringValue: @""];
}
return;
}