summaryrefslogtreecommitdiffstats
path: root/macosx/HBQueueController.mm
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBQueueController.mm')
-rw-r--r--macosx/HBQueueController.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm
index 6cfddf939..a852bc2a1 100644
--- a/macosx/HBQueueController.mm
+++ b/macosx/HBQueueController.mm
@@ -1246,7 +1246,7 @@ return ![(HBQueueOutlineView*)outlineView isDragging];
/* for framerate look to see if we are using vfr detelecine */
if ([[item objectForKey:@"JobIndexVideoFramerate"] intValue] == 0)
{
- if ([[item objectForKey:@"VideoframerateMode"] isEqualToString:@"vfr"])
+ if ([[item objectForKey:@"VideoFramerateMode"] isEqualToString:@"vfr"])
{
/* we are using same as source with vfr detelecine */
videoInfo = [NSString stringWithFormat:@"%@ Framerate: Same as source (Variable Frame Rate)", videoInfo];
@@ -1260,7 +1260,7 @@ return ![(HBQueueOutlineView*)outlineView isDragging];
else
{
/* we have a specified, constant framerate */
- if ([[item objectForKey:@"VideoframerateMode"] isEqualToString:@"pfr"])
+ if ([[item objectForKey:@"VideoFramerateMode"] isEqualToString:@"pfr"])
{
videoInfo = [NSString stringWithFormat:@"%@ Framerate: %@ (Peak Frame Rate)", videoInfo ,[item objectForKey:@"VideoFramerate"]];
}