diff options
author | dynaflash <[email protected]> | 2008-10-27 14:57:19 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2008-10-27 14:57:19 +0000 |
commit | 46c254d32a2ca52c1067495aae60ffe92657f2de (patch) | |
tree | bf46df8f437b3c9b14e5a15491bdc9014c204a49 /macosx | |
parent | 1e2d93dd99d13644ede212213de3135a6f3b76c9 (diff) |
MacGui: Queue - Add the estimated bitrate to the queue display when displaying target size info.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1872 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBQueueController.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm index fbc46af35..45d2f83a5 100644 --- a/macosx/HBQueueController.mm +++ b/macosx/HBQueueController.mm @@ -1128,7 +1128,7 @@ return ![(HBQueueOutlineView*)outlineView isDragging]; if ([[item objectForKey:@"VideoQualityType"] intValue] == 0)// Target Size MB { - videoInfo = [NSString stringWithFormat:@"%@ Target Size: %@(MB)", videoInfo ,[item objectForKey:@"VideoTargetSize"]]; + videoInfo = [NSString stringWithFormat:@"%@ Target Size: %@(MB) (%d(kbps) abr)", videoInfo ,[item objectForKey:@"VideoTargetSize"],[[item objectForKey:@"VideoAvgBitrate"] intValue]]; } else if ([[item objectForKey:@"VideoQualityType"] intValue] == 1) // ABR { |