OSDN Git Service

MacGui: Add some temporary activity log messages to try to debug the new queue
[handbrake-jp/handbrake-jp-git.git] / macosx / Controller.mm
1 /* $Id: Controller.mm,v 1.79 2005/11/04 19:41:32 titer Exp $
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.fr/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #import "Controller.h"
8 #import "HBOutputPanelController.h"
9 #import "HBPreferencesController.h"
10 #import "HBDVDDetector.h"
11 #import "HBPresets.h"
12
13 #define DragDropSimplePboardType        @"MyCustomOutlineViewPboardType"
14
15 /* We setup the toolbar values here */
16 static NSString *        ToggleDrawerIdentifier             = @"Toggle Drawer Item Identifier";
17 static NSString *        StartEncodingIdentifier            = @"Start Encoding Item Identifier";
18 static NSString *        PauseEncodingIdentifier            = @"Pause Encoding Item Identifier";
19 static NSString *        ShowQueueIdentifier                = @"Show Queue Item Identifier";
20 static NSString *        AddToQueueIdentifier               = @"Add to Queue Item Identifier";
21 static NSString *        ShowActivityIdentifier             = @"Debug Output Item Identifier";
22 static NSString *        ChooseSourceIdentifier             = @"Choose Source Item Identifier";
23
24
25 /*******************************
26  * HBController implementation *
27  *******************************/
28 @implementation HBController
29
30 - (id)init
31 {
32     self = [super init];
33     if( !self )
34     {
35         return nil;
36     }
37
38     [HBPreferencesController registerUserDefaults];
39     fHandle = NULL;
40     fQueueEncodeLibhb = NULL;
41     /* Check for check for the app support directory here as
42      * outputPanel needs it right away, as may other future methods
43      */
44     NSString *libraryDir = [NSSearchPathForDirectoriesInDomains( NSLibraryDirectory,
45                                                                  NSUserDomainMask,
46                                                                  YES ) objectAtIndex:0];
47     AppSupportDirectory = [[libraryDir stringByAppendingPathComponent:@"Application Support"]
48                                        stringByAppendingPathComponent:@"HandBrake"];
49     if( ![[NSFileManager defaultManager] fileExistsAtPath:AppSupportDirectory] )
50     {
51         [[NSFileManager defaultManager] createDirectoryAtPath:AppSupportDirectory
52                                                    attributes:nil];
53     }
54
55     outputPanel = [[HBOutputPanelController alloc] init];
56     fPictureController = [[PictureController alloc] initWithDelegate:self];
57     fQueueController = [[HBQueueController alloc] init];
58     fAdvancedOptions = [[HBAdvancedController alloc] init];
59     /* we init the HBPresets class which currently is only used
60     * for updating built in presets, may move more functionality
61     * there in the future
62     */
63     fPresetsBuiltin = [[HBPresets alloc] init];
64     fPreferencesController = [[HBPreferencesController alloc] init];
65     /* Lets report the HandBrake version number here to the activity log and text log file */
66     NSString *versionStringFull = [[NSString stringWithFormat: @"Handbrake Version: %@", [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleGetInfoString"]] stringByAppendingString: [NSString stringWithFormat: @" (%@)", [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]]];
67     [self writeToActivityLog: "%s", [versionStringFull UTF8String]];    
68     
69     return self;
70 }
71
72
73 - (void) applicationDidFinishLaunching: (NSNotification *) notification
74 {
75     /* Init libhb with check for updates libhb style set to "0" so its ignored and lets sparkle take care of it */
76     fHandle = hb_init(HB_DEBUG_ALL, 0);
77     /* Init a separate instance of libhb for user scanning and setting up jobs */
78     fQueueEncodeLibhb = hb_init(HB_DEBUG_ALL, 0);
79     
80         // Set the Growl Delegate
81     [GrowlApplicationBridge setGrowlDelegate: self];
82     /* Init others controllers */
83     [fPictureController SetHandle: fHandle];
84     [fQueueController   setHandle: fQueueEncodeLibhb];
85     [fQueueController   setHBController: self];
86
87     fChapterTitlesDelegate = [[ChapterTitles alloc] init];
88     [fChapterTable setDataSource:fChapterTitlesDelegate];
89     [fChapterTable setDelegate:fChapterTitlesDelegate];
90
91     /* Call UpdateUI every 1/2 sec */
92     [[NSRunLoop currentRunLoop] addTimer:[NSTimer
93                                           scheduledTimerWithTimeInterval:0.5 target:self
94                                           selector:@selector(updateUI:) userInfo:nil repeats:YES]
95                                  forMode:NSEventTrackingRunLoopMode];
96
97     // Open debug output window now if it was visible when HB was closed
98     if ([[NSUserDefaults standardUserDefaults] boolForKey:@"OutputPanelIsOpen"])
99         [self showDebugOutputPanel:nil];
100
101     // Open queue window now if it was visible when HB was closed
102     if ([[NSUserDefaults standardUserDefaults] boolForKey:@"QueueWindowIsOpen"])
103         [self showQueueWindow:nil];
104
105         [self openMainWindow:nil];
106     
107     /* We have to set the bool to tell hb what to do after a scan
108      * Initially we set it to NO until we start processing the queue
109      */
110      applyQueueToScan = NO;
111     
112     /* Now we re-check the queue array to see if there are
113      * any remaining encodes to be done in it and ask the
114      * user if they want to reload the queue */
115     if ([QueueFileArray count] > 0)
116         {
117         /*On Screen Notification*/
118         NSString * alertTitle = [NSString stringWithFormat:NSLocalizedString(@"HandBrake Has Detected Item(s) From Your Previous Queue.", nil)];
119         NSBeginCriticalAlertSheet(
120             alertTitle,
121             NSLocalizedString(@"Reload Queue", nil),
122             nil,
123             NSLocalizedString(@"Empty Queue", nil),
124             fWindow, self,
125             nil, @selector(didDimissReloadQueue:returnCode:contextInfo:), nil,
126             NSLocalizedString(@" Do you want to reload them ?", nil));
127         // call didDimissReloadQueue: (NSWindow *)sheet returnCode: (int)returnCode contextInfo: (void *)contextInfo
128         // right below to either clear the old queue or keep it loaded up.
129     }
130     else
131     {
132      
133     /* Show Browse Sources Window ASAP */
134     [self performSelectorOnMainThread:@selector(browseSources:)
135                            withObject:nil waitUntilDone:NO];
136    }
137 }
138
139 - (void) didDimissReloadQueue: (NSWindow *)sheet returnCode: (int)returnCode contextInfo: (void *)contextInfo
140 {
141     if (returnCode == NSAlertOtherReturn)
142     {
143         [self clearQueueAllItems];
144     }
145     
146     [self performSelectorOnMainThread:@selector(browseSources:)
147                            withObject:nil waitUntilDone:NO];
148 }
149
150 - (NSApplicationTerminateReply) applicationShouldTerminate: (NSApplication *) app
151 {
152     // Warn if encoding a movie
153     hb_state_t s;
154     hb_get_state( fHandle, &s );
155     
156     if ( s.state != HB_STATE_IDLE )
157     {
158         int result = NSRunCriticalAlertPanel(
159                 NSLocalizedString(@"Are you sure you want to quit HandBrake?", nil),
160                 NSLocalizedString(@"If you quit HandBrake, your movie will be lost. Do you want to quit anyway?", nil),
161                 NSLocalizedString(@"Quit", nil), NSLocalizedString(@"Don't Quit", nil), nil, @"A movie" );
162         
163         if (result == NSAlertDefaultReturn)
164         {
165             [self doCancelCurrentJob];
166             return NSTerminateNow;
167         }
168         else
169             return NSTerminateCancel;
170     }
171     
172     // Warn if items still in the queue
173     else if ( hb_count( fHandle ) > 0 )
174     {
175         int result = NSRunCriticalAlertPanel(
176                 NSLocalizedString(@"Are you sure you want to quit HandBrake?", nil),
177                 NSLocalizedString(@"One or more encodes are queued for encoding. Do you want to quit anyway?", nil),
178                 NSLocalizedString(@"Quit", nil), NSLocalizedString(@"Don't Quit", nil), nil);
179         
180         if ( result == NSAlertDefaultReturn )
181             return NSTerminateNow;
182         else
183             return NSTerminateCancel;
184     }
185     
186     return NSTerminateNow;
187 }
188
189 - (void)applicationWillTerminate:(NSNotification *)aNotification
190 {
191         [browsedSourceDisplayName release];
192     [outputPanel release];
193         [fQueueController release];
194         hb_close(&fHandle);
195     hb_close(&fQueueEncodeLibhb);
196 }
197
198
199 - (void) awakeFromNib
200 {
201     [fWindow center];
202     [fWindow setExcludedFromWindowsMenu:YES];
203     [fAdvancedOptions setView:fAdvancedView];
204
205     /* lets setup our presets drawer for drag and drop here */
206     [fPresetsOutlineView registerForDraggedTypes: [NSArray arrayWithObject:DragDropSimplePboardType] ];
207     [fPresetsOutlineView setDraggingSourceOperationMask:NSDragOperationEvery forLocal:YES];
208     [fPresetsOutlineView setVerticalMotionCanBeginDrag: YES];
209
210     /* Initialize currentScanCount so HB can use it to
211                 evaluate successive scans */
212         currentScanCount = 0;
213
214
215     /* Init UserPresets .plist */
216         [self loadPresets];
217     
218     /* Init QueueFile .plist */
219     [self loadQueueFile];
220         
221     fRipIndicatorShown = NO;  // initially out of view in the nib
222
223         /* Show/Dont Show Presets drawer upon launch based
224                 on user preference DefaultPresetsDrawerShow*/
225         if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultPresetsDrawerShow"] > 0)
226         {
227                 [fPresetDrawer open];
228         }
229         
230         
231     
232     /* Destination box*/
233     NSMenuItem *menuItem;
234     [fDstFormatPopUp removeAllItems];
235     // MP4 file
236     menuItem = [[fDstFormatPopUp menu] addItemWithTitle:@"MP4 file" action: NULL keyEquivalent: @""];
237     [menuItem setTag: HB_MUX_MP4];
238         // MKV file
239     menuItem = [[fDstFormatPopUp menu] addItemWithTitle:@"MKV file" action: NULL keyEquivalent: @""];
240     [menuItem setTag: HB_MUX_MKV];
241     // AVI file
242     menuItem = [[fDstFormatPopUp menu] addItemWithTitle:@"AVI file" action: NULL keyEquivalent: @""];
243     [menuItem setTag: HB_MUX_AVI];
244     // OGM file
245     menuItem = [[fDstFormatPopUp menu] addItemWithTitle:@"OGM file" action: NULL keyEquivalent: @""];
246     [menuItem setTag: HB_MUX_OGM];
247     [fDstFormatPopUp selectItemAtIndex: 0];
248
249     [self formatPopUpChanged:nil];
250
251         /* We enable the create chapters checkbox here since we are .mp4 */
252         [fCreateChapterMarkers setEnabled: YES];
253         if ([fDstFormatPopUp indexOfSelectedItem] == 0 && [[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultChapterMarkers"] > 0)
254         {
255                 [fCreateChapterMarkers setState: NSOnState];
256         }
257
258
259
260
261     [fDstFile2Field setStringValue: [NSString stringWithFormat:
262         @"%@/Desktop/Movie.mp4", NSHomeDirectory()]];
263
264     /* Video encoder */
265     [fVidEncoderPopUp removeAllItems];
266     [fVidEncoderPopUp addItemWithTitle: @"FFmpeg"];
267     [fVidEncoderPopUp addItemWithTitle: @"XviD"];
268
269
270
271     /* Video quality */
272     [fVidTargetSizeField setIntValue: 700];
273         [fVidBitrateField    setIntValue: 1000];
274
275     [fVidQualityMatrix   selectCell: fVidBitrateCell];
276     [self videoMatrixChanged:nil];
277
278     /* Video framerate */
279     [fVidRatePopUp removeAllItems];
280         [fVidRatePopUp addItemWithTitle: NSLocalizedString( @"Same as source", @"" )];
281     for( int i = 0; i < hb_video_rates_count; i++ )
282     {
283         if ([[NSString stringWithCString: hb_video_rates[i].string] isEqualToString: [NSString stringWithFormat: @"%.3f",23.976]])
284                 {
285                         [fVidRatePopUp addItemWithTitle:[NSString stringWithFormat: @"%@%@",
286                                 [NSString stringWithCString: hb_video_rates[i].string], @" (NTSC Film)"]];
287                 }
288                 else if ([[NSString stringWithCString: hb_video_rates[i].string] isEqualToString: [NSString stringWithFormat: @"%d",25]])
289                 {
290                         [fVidRatePopUp addItemWithTitle:[NSString stringWithFormat: @"%@%@",
291                                 [NSString stringWithCString: hb_video_rates[i].string], @" (PAL Film/Video)"]];
292                 }
293                 else if ([[NSString stringWithCString: hb_video_rates[i].string] isEqualToString: [NSString stringWithFormat: @"%.2f",29.97]])
294                 {
295                         [fVidRatePopUp addItemWithTitle:[NSString stringWithFormat: @"%@%@",
296                                 [NSString stringWithCString: hb_video_rates[i].string], @" (NTSC Video)"]];
297                 }
298                 else
299                 {
300                         [fVidRatePopUp addItemWithTitle:
301                                 [NSString stringWithCString: hb_video_rates[i].string]];
302                 }
303     }
304     [fVidRatePopUp selectItemAtIndex: 0];
305         
306         /* Set Auto Crop to On at launch */
307     [fPictureController setAutoCrop:YES];
308         
309         /* Audio bitrate */
310     [fAudTrack1BitratePopUp removeAllItems];
311     for( int i = 0; i < hb_audio_bitrates_count; i++ )
312     {
313         [fAudTrack1BitratePopUp addItemWithTitle:
314                                 [NSString stringWithCString: hb_audio_bitrates[i].string]];
315
316     }
317     [fAudTrack1BitratePopUp selectItemAtIndex: hb_audio_bitrates_default];
318         
319     /* Audio samplerate */
320     [fAudTrack1RatePopUp removeAllItems];
321     for( int i = 0; i < hb_audio_rates_count; i++ )
322     {
323         [fAudTrack1RatePopUp addItemWithTitle:
324             [NSString stringWithCString: hb_audio_rates[i].string]];
325     }
326     [fAudTrack1RatePopUp selectItemAtIndex: hb_audio_rates_default];
327         
328     /* Bottom */
329     [fStatusField setStringValue: @""];
330
331     [self enableUI: NO];
332         [self setupToolbar];
333
334         /* We disable the Turbo 1st pass checkbox since we are not x264 */
335         [fVidTurboPassCheck setEnabled: NO];
336         [fVidTurboPassCheck setState: NSOffState];
337
338
339         /* lets get our default prefs here */
340         [self getDefaultPresets:nil];
341         /* lets initialize the current successful scancount here to 0 */
342         currentSuccessfulScanCount = 0;
343
344
345 }
346
347 - (void) enableUI: (bool) b
348 {
349     NSControl * controls[] =
350       { fSrcTitleField, fSrcTitlePopUp,
351         fSrcChapterField, fSrcChapterStartPopUp, fSrcChapterToField,
352         fSrcChapterEndPopUp, fSrcDuration1Field, fSrcDuration2Field,
353         fDstFormatField, fDstFormatPopUp, fDstFile1Field, fDstFile2Field,
354         fDstBrowseButton, fVidRateField, fVidRatePopUp,
355         fVidEncoderField, fVidEncoderPopUp, fVidQualityField,
356         fVidQualityMatrix, fVidGrayscaleCheck, fSubField, fSubPopUp,
357         fAudSourceLabel, fAudCodecLabel, fAudMixdownLabel, fAudSamplerateLabel, fAudBitrateLabel,
358         fAudTrack1Label, fAudTrack2Label, fAudTrack3Label, fAudTrack4Label,
359         fAudLang1PopUp, fAudLang2PopUp, fAudLang3PopUp, fAudLang4PopUp,
360         fAudTrack1CodecPopUp, fAudTrack2CodecPopUp, fAudTrack3CodecPopUp, fAudTrack4CodecPopUp,
361         fAudTrack1MixPopUp, fAudTrack2MixPopUp, fAudTrack3MixPopUp, fAudTrack4MixPopUp,
362         fAudTrack1RatePopUp, fAudTrack2RatePopUp, fAudTrack3RatePopUp, fAudTrack4RatePopUp,
363         fAudTrack1BitratePopUp, fAudTrack2BitratePopUp, fAudTrack3BitratePopUp, fAudTrack4BitratePopUp,
364         fAudDrcLabel, fAudTrack1DrcSlider, fAudTrack1DrcField, fAudTrack2DrcSlider,
365         fAudTrack2DrcField, fAudTrack3DrcSlider, fAudTrack3DrcField, fAudTrack4DrcSlider,fAudTrack4DrcField,
366         fPictureButton,fQueueStatus,fPicSettingARkeep, fPicSettingDeinterlace,fPicLabelSettings,fPicLabelSrc,
367         fPicLabelOutp,fPicSettingsSrc,fPicSettingsOutp,fPicSettingsAnamorphic,
368                 fPicLabelAr,fPicLabelDeinterlace,fPicSettingPAR,fPicLabelAnamorphic,fPresetsAdd,fPresetsDelete,
369                 fCreateChapterMarkers,fVidTurboPassCheck,fDstMp4LargeFileCheck,fPicLabelAutoCrop,
370                 fPicSettingAutoCrop,fPicSettingDetelecine,fPicLabelDetelecine,fPicLabelDenoise,fPicSettingDenoise,
371         fSubForcedCheck,fPicSettingDeblock,fPicLabelDeblock,fPicLabelDecomb,fPicSettingDecomb,fPresetsOutlineView,
372         fAudDrcLabel,fDstMp4HttpOptFileCheck,fDstMp4iPodFileCheck};
373
374     for( unsigned i = 0;
375          i < sizeof( controls ) / sizeof( NSControl * ); i++ )
376     {
377         if( [[controls[i] className] isEqualToString: @"NSTextField"] )
378         {
379             NSTextField * tf = (NSTextField *) controls[i];
380             if( ![tf isBezeled] )
381             {
382                 [tf setTextColor: b ? [NSColor controlTextColor] :
383                     [NSColor disabledControlTextColor]];
384                 continue;
385             }
386         }
387         [controls[i] setEnabled: b];
388
389     }
390
391         if (b) {
392
393         /* if we're enabling the interface, check if the audio mixdown controls need to be enabled or not */
394         /* these will have been enabled by the mass control enablement above anyway, so we're sense-checking it here */
395         [self setEnabledStateOfAudioMixdownControls:nil];
396         /* we also call calculatePictureSizing here to sense check if we already have vfr selected */
397         [self calculatePictureSizing:nil];
398         [self shouldEnableHttpMp4CheckBox: nil];
399
400         } else {
401
402                 [fPresetsOutlineView setEnabled: NO];
403
404         }
405
406     [self videoMatrixChanged:nil];
407     [fAdvancedOptions enableUI:b];
408 }
409
410
411 /***********************************************************************
412  * UpdateDockIcon
413  ***********************************************************************
414  * Shows a progression bar on the dock icon, filled according to
415  * 'progress' (0.0 <= progress <= 1.0).
416  * Called with progress < 0.0 or progress > 1.0, restores the original
417  * icon.
418  **********************************************************************/
419 - (void) UpdateDockIcon: (float) progress
420 {
421     NSImage * icon;
422     NSData * tiff;
423     NSBitmapImageRep * bmp;
424     uint32_t * pen;
425     uint32_t black = htonl( 0x000000FF );
426     uint32_t red   = htonl( 0xFF0000FF );
427     uint32_t white = htonl( 0xFFFFFFFF );
428     int row_start, row_end;
429     int i, j;
430
431     /* Get application original icon */
432     icon = [NSImage imageNamed: @"NSApplicationIcon"];
433
434     if( progress < 0.0 || progress > 1.0 )
435     {
436         [NSApp setApplicationIconImage: icon];
437         return;
438     }
439
440     /* Get it in a raw bitmap form */
441     tiff = [icon TIFFRepresentationUsingCompression:
442             NSTIFFCompressionNone factor: 1.0];
443     bmp = [NSBitmapImageRep imageRepWithData: tiff];
444     
445     /* Draw the progression bar */
446     /* It's pretty simple (ugly?) now, but I'm no designer */
447
448     row_start = 3 * (int) [bmp size].height / 4;
449     row_end   = 7 * (int) [bmp size].height / 8;
450
451     for( i = row_start; i < row_start + 2; i++ )
452     {
453         pen = (uint32_t *) ( [bmp bitmapData] + i * [bmp bytesPerRow] );
454         for( j = 0; j < (int) [bmp size].width; j++ )
455         {
456             pen[j] = black;
457         }
458     }
459     for( i = row_start + 2; i < row_end - 2; i++ )
460     {
461         pen = (uint32_t *) ( [bmp bitmapData] + i * [bmp bytesPerRow] );
462         pen[0] = black;
463         pen[1] = black;
464         for( j = 2; j < (int) [bmp size].width - 2; j++ )
465         {
466             if( j < 2 + (int) ( ( [bmp size].width - 4.0 ) * progress ) )
467             {
468                 pen[j] = red;
469             }
470             else
471             {
472                 pen[j] = white;
473             }
474         }
475         pen[j]   = black;
476         pen[j+1] = black;
477     }
478     for( i = row_end - 2; i < row_end; i++ )
479     {
480         pen = (uint32_t *) ( [bmp bitmapData] + i * [bmp bytesPerRow] );
481         for( j = 0; j < (int) [bmp size].width; j++ )
482         {
483             pen[j] = black;
484         }
485     }
486
487     /* Now update the dock icon */
488     tiff = [bmp TIFFRepresentationUsingCompression:
489             NSTIFFCompressionNone factor: 1.0];
490     icon = [[NSImage alloc] initWithData: tiff];
491     [NSApp setApplicationIconImage: icon];
492     [icon release];
493 }
494
495 - (void) updateUI: (NSTimer *) timer
496 {
497     
498     /* Update UI for fHandle (user scanning instance of libhb ) */
499     
500     hb_list_t  * list;
501     list = hb_get_titles( fHandle );
502     /* check to see if there has been a new scan done
503      this bypasses the constraints of HB_STATE_WORKING
504      not allowing setting a newly scanned source */
505         int checkScanCount = hb_get_scancount( fHandle );
506         if( checkScanCount > currentScanCount )
507         {
508                 currentScanCount = checkScanCount;
509         [fScanIndicator setIndeterminate: NO];
510         [fScanIndicator setDoubleValue: 0.0];
511         [fScanIndicator setHidden: YES];
512                 [self showNewScan:nil];
513         }
514     
515     hb_state_t s;
516     hb_get_state( fHandle, &s );
517     
518     switch( s.state )
519     {
520         case HB_STATE_IDLE:
521             break;
522 #define p s.param.scanning
523         case HB_STATE_SCANNING:
524                 {
525             [fSrcDVD2Field setStringValue: [NSString stringWithFormat:
526                                             NSLocalizedString( @"Scanning title %d of %d...", @"" ),
527                                             p.title_cur, p.title_count]];
528             [fScanIndicator setHidden: NO];
529             [fScanIndicator setDoubleValue: 100.0 * ( p.title_cur - 1 ) / p.title_count];
530             break;
531                 }
532 #undef p
533             
534 #define p s.param.scandone
535         case HB_STATE_SCANDONE:
536         {
537             [fScanIndicator setIndeterminate: NO];
538             [fScanIndicator setDoubleValue: 0.0];
539             [fScanIndicator setHidden: YES];
540                         [self writeToActivityLog:"ScanDone state received from fHandle"];
541             [self showNewScan:nil];
542             [[fWindow toolbar] validateVisibleItems];
543             
544                         break;
545         }
546 #undef p
547             
548 #define p s.param.working
549         case HB_STATE_WORKING:
550         {
551             
552             break;
553         }
554 #undef p
555             
556 #define p s.param.muxing
557         case HB_STATE_MUXING:
558         {
559             
560             break;
561         }
562 #undef p
563             
564         case HB_STATE_PAUSED:
565             break;
566             
567         case HB_STATE_WORKDONE:
568         {
569             break;
570         }
571     }
572     
573     
574     /* Update UI for fQueueEncodeLibhb */
575     // hb_list_t  * list;
576     // list = hb_get_titles( fQueueEncodeLibhb ); //fQueueEncodeLibhb
577     /* check to see if there has been a new scan done
578      this bypasses the constraints of HB_STATE_WORKING
579      not allowing setting a newly scanned source */
580         
581     checkScanCount = hb_get_scancount( fQueueEncodeLibhb );
582         if( checkScanCount > currentScanCount )
583         {
584                 currentScanCount = checkScanCount;
585         [self writeToActivityLog:"currentScanCount received from fQueueEncodeLibhb"];
586         }
587     
588     //hb_state_t s;
589     hb_get_state( fQueueEncodeLibhb, &s );
590     
591     switch( s.state )
592     {
593         case HB_STATE_IDLE:
594             break;
595 #define p s.param.scanning
596         case HB_STATE_SCANNING:
597                 {
598             [fStatusField setStringValue: [NSString stringWithFormat:
599                                            NSLocalizedString( @"Queue Scanning title %d of %d...", @"" ),
600                                            p.title_cur, p.title_count]];
601             [fRipIndicator setHidden: NO];
602             [fRipIndicator setDoubleValue: 100.0 * ( p.title_cur - 1 ) / p.title_count];
603             break;
604                 }
605 #undef p
606             
607 #define p s.param.scandone
608         case HB_STATE_SCANDONE:
609         {
610             [fRipIndicator setIndeterminate: NO];
611             [fRipIndicator setDoubleValue: 0.0];
612             
613                         [self writeToActivityLog:"ScanDone state received from fQueueEncodeLibhb"];
614             [self processNewQueueEncode];
615             [[fWindow toolbar] validateVisibleItems];
616             
617                         break;
618         }
619 #undef p
620             
621 #define p s.param.working
622         case HB_STATE_WORKING:
623         {
624             float progress_total;
625             NSMutableString * string;
626                         /* Update text field */
627                         string = [NSMutableString stringWithFormat: NSLocalizedString( @"Encoding: pass %d of %d, %.2f %%", @"" ), p.job_cur, p.job_count, 100.0 * p.progress];
628             
629                         if( p.seconds > -1 )
630             {
631                 [string appendFormat:
632                  NSLocalizedString( @" (%.2f fps, avg %.2f fps, ETA %02dh%02dm%02ds)", @"" ),
633                  p.rate_cur, p.rate_avg, p.hours, p.minutes, p.seconds];
634             }
635             
636             [fStatusField setStringValue: string];
637             
638             /* Update slider */
639                         progress_total = ( p.progress + p.job_cur - 1 ) / p.job_count;
640             [fRipIndicator setIndeterminate: NO];
641             [fRipIndicator setDoubleValue: 100.0 * progress_total];
642             
643             // If progress bar hasn't been revealed at the bottom of the window, do
644             // that now. This code used to be in doRip. I moved it to here to handle
645             // the case where hb_start is called by HBQueueController and not from
646             // HBController.
647             if( !fRipIndicatorShown )
648             {
649                 NSRect frame = [fWindow frame];
650                 if( frame.size.width <= 591 )
651                     frame.size.width = 591;
652                 frame.size.height += 36;
653                 frame.origin.y -= 36;
654                 [fWindow setFrame:frame display:YES animate:YES];
655                 fRipIndicatorShown = YES;
656                 /* We check to see if we need to warn the user that the computer will go to sleep
657                  or shut down when encoding is finished */
658                 [self remindUserOfSleepOrShutdown];
659             }
660             
661             /* Update dock icon */
662             [self UpdateDockIcon: progress_total];
663             
664             break;
665         }
666 #undef p
667             
668 #define p s.param.muxing
669         case HB_STATE_MUXING:
670         {
671             /* Update text field */
672             [fStatusField setStringValue: NSLocalizedString( @"Muxing...", @"" )];
673             
674             /* Update slider */
675             [fRipIndicator setIndeterminate: YES];
676             [fRipIndicator startAnimation: nil];
677             
678             /* Update dock icon */
679             [self UpdateDockIcon: 1.0];
680             
681                         break;
682         }
683 #undef p
684             
685         case HB_STATE_PAUSED:
686                     [fStatusField setStringValue: NSLocalizedString( @"Paused", @"" )];
687             
688                         break;
689             
690         case HB_STATE_WORKDONE:
691         {
692             // HB_STATE_WORKDONE happpens as a result of libhb finishing all its jobs
693             // or someone calling hb_stop. In the latter case, hb_stop does not clear
694             // out the remaining passes/jobs in the queue. We'll do that here.
695             
696             // Delete all remaining jobs of this encode.
697             [fStatusField setStringValue: NSLocalizedString( @"Done.", @"" )];
698             [fRipIndicator setIndeterminate: NO];
699             [fRipIndicator setDoubleValue: 0.0];
700             [[fWindow toolbar] validateVisibleItems];
701             
702             /* Restore dock icon */
703             [self UpdateDockIcon: -1.0];
704             
705             if( fRipIndicatorShown )
706             {
707                 NSRect frame = [fWindow frame];
708                 if( frame.size.width <= 591 )
709                                     frame.size.width = 591;
710                 frame.size.height += -36;
711                 frame.origin.y -= -36;
712                 [fWindow setFrame:frame display:YES animate:YES];
713                                 fRipIndicatorShown = NO;
714                         }
715             
716                         /* Check to see if the encode state has not been cancelled
717              to determine if we should check for encode done notifications */
718                         if( fEncodeState != 2 )
719             {
720                 /* since we have successfully completed an encode, we increment the queue counter */
721                 [self incrementQueueItemDone:nil];
722                 /* If Alert Window or Window and Growl has been selected */
723                                 if( [[[NSUserDefaults standardUserDefaults] stringForKey:@"AlertWhenDone"] isEqualToString: @"Alert Window"] ||
724                    [[[NSUserDefaults standardUserDefaults] stringForKey:@"AlertWhenDone"] isEqualToString: @"Alert Window And Growl"] )
725                 {
726                                         /*On Screen Notification*/
727                                         int status;
728                                         NSBeep();
729                                         status = NSRunAlertPanel(@"Put down that cocktail...",@"Your HandBrake encode is done!", @"OK", nil, nil);
730                                         [NSApp requestUserAttention:NSCriticalRequest];
731                 }
732                 /* If sleep has been selected */
733                 if( [[[NSUserDefaults standardUserDefaults] stringForKey:@"AlertWhenDone"] isEqualToString: @"Put Computer To Sleep"] )
734                 {
735                     /* Sleep */
736                     NSDictionary* errorDict;
737                     NSAppleEventDescriptor* returnDescriptor = nil;
738                     NSAppleScript* scriptObject = [[NSAppleScript alloc] initWithSource:
739                                                    @"tell application \"Finder\" to sleep"];
740                     returnDescriptor = [scriptObject executeAndReturnError: &errorDict];
741                     [scriptObject release];
742                 }
743                 /* If Shutdown has been selected */
744                 if( [[[NSUserDefaults standardUserDefaults] stringForKey:@"AlertWhenDone"] isEqualToString: @"Shut Down Computer"] )
745                 {
746                     /* Shut Down */
747                     NSDictionary* errorDict;
748                     NSAppleEventDescriptor* returnDescriptor = nil;
749                     NSAppleScript* scriptObject = [[NSAppleScript alloc] initWithSource:
750                                                    @"tell application \"Finder\" to shut down"];
751                     returnDescriptor = [scriptObject executeAndReturnError: &errorDict];
752                     [scriptObject release];
753                 }
754                 
755                 
756             }
757             
758             break;
759         }
760     }
761     
762 }
763
764 /* We use this to write messages to stderr from the macgui which show up in the activity window and log*/
765 - (void) writeToActivityLog:(char *) format, ...
766 {
767     va_list args;
768     va_start(args, format);
769     if (format != nil)
770     {
771         char str[1024];
772         vsnprintf( str, 1024, format, args );
773
774         time_t _now = time( NULL );
775         struct tm * now  = localtime( &_now );
776         fprintf(stderr, "[%02d:%02d:%02d] macgui: %s\n", now->tm_hour, now->tm_min, now->tm_sec, str );
777     }
778     va_end(args);
779 }
780
781 #pragma mark -
782 #pragma mark Toolbar
783 // ============================================================
784 // NSToolbar Related Methods
785 // ============================================================
786
787 - (void) setupToolbar {
788     NSToolbar *toolbar = [[[NSToolbar alloc] initWithIdentifier: @"HandBrake Toolbar"] autorelease];
789
790     [toolbar setAllowsUserCustomization: YES];
791     [toolbar setAutosavesConfiguration: YES];
792     [toolbar setDisplayMode: NSToolbarDisplayModeIconAndLabel];
793
794     [toolbar setDelegate: self];
795
796     [fWindow setToolbar: toolbar];
797 }
798
799 - (NSToolbarItem *) toolbar: (NSToolbar *)toolbar itemForItemIdentifier:
800     (NSString *) itemIdent willBeInsertedIntoToolbar:(BOOL) willBeInserted {
801     NSToolbarItem * item = [[[NSToolbarItem alloc] initWithItemIdentifier: itemIdent] autorelease];
802
803     if ([itemIdent isEqualToString: ToggleDrawerIdentifier])
804     {
805         [item setLabel: @"Toggle Presets"];
806         [item setPaletteLabel: @"Toggler Presets"];
807         [item setToolTip: @"Open/Close Preset Drawer"];
808         [item setImage: [NSImage imageNamed: @"Drawer"]];
809         [item setTarget: self];
810         [item setAction: @selector(toggleDrawer:)];
811         [item setAutovalidates: NO];
812     }
813     else if ([itemIdent isEqualToString: StartEncodingIdentifier])
814     {
815         [item setLabel: @"Start"];
816         [item setPaletteLabel: @"Start Encoding"];
817         [item setToolTip: @"Start Encoding"];
818         [item setImage: [NSImage imageNamed: @"Play"]];
819         [item setTarget: self];
820         [item setAction: @selector(Rip:)];
821     }
822     else if ([itemIdent isEqualToString: ShowQueueIdentifier])
823     {
824         [item setLabel: @"Show Queue"];
825         [item setPaletteLabel: @"Show Queue"];
826         [item setToolTip: @"Show Queue"];
827         [item setImage: [NSImage imageNamed: @"Queue"]];
828         [item setTarget: self];
829         [item setAction: @selector(showQueueWindow:)];
830         [item setAutovalidates: NO];
831     }
832     else if ([itemIdent isEqualToString: AddToQueueIdentifier])
833     {
834         [item setLabel: @"Add to Queue"];
835         [item setPaletteLabel: @"Add to Queue"];
836         [item setToolTip: @"Add to Queue"];
837         [item setImage: [NSImage imageNamed: @"AddToQueue"]];
838         [item setTarget: self];
839         [item setAction: @selector(addToQueue:)];
840     }
841     else if ([itemIdent isEqualToString: PauseEncodingIdentifier])
842     {
843         [item setLabel: @"Pause"];
844         [item setPaletteLabel: @"Pause Encoding"];
845         [item setToolTip: @"Pause Encoding"];
846         [item setImage: [NSImage imageNamed: @"Pause"]];
847         [item setTarget: self];
848         [item setAction: @selector(Pause:)];
849     }
850     else if ([itemIdent isEqualToString: ShowActivityIdentifier]) {
851         [item setLabel: @"Activity Window"];
852         [item setPaletteLabel: @"Show Activity Window"];
853         [item setToolTip: @"Show Activity Window"];
854         [item setImage: [NSImage imageNamed: @"ActivityWindow"]];
855         [item setTarget: self];
856         [item setAction: @selector(showDebugOutputPanel:)];
857         [item setAutovalidates: NO];
858     }
859     else if ([itemIdent isEqualToString: ChooseSourceIdentifier])
860     {
861         [item setLabel: @"Source"];
862         [item setPaletteLabel: @"Source"];
863         [item setToolTip: @"Choose Video Source"];
864         [item setImage: [NSImage imageNamed: @"Source"]];
865         [item setTarget: self];
866         [item setAction: @selector(browseSources:)];
867     }
868     else
869     {
870         return nil;
871     }
872
873     return item;
874 }
875
876 - (NSArray *) toolbarDefaultItemIdentifiers: (NSToolbar *) toolbar
877 {
878     return [NSArray arrayWithObjects: ChooseSourceIdentifier, NSToolbarSeparatorItemIdentifier, StartEncodingIdentifier,
879         PauseEncodingIdentifier, AddToQueueIdentifier, ShowQueueIdentifier, NSToolbarFlexibleSpaceItemIdentifier, 
880                 NSToolbarSpaceItemIdentifier, ShowActivityIdentifier, ToggleDrawerIdentifier, nil];
881 }
882
883 - (NSArray *) toolbarAllowedItemIdentifiers: (NSToolbar *) toolbar
884 {
885     return [NSArray arrayWithObjects:  StartEncodingIdentifier, PauseEncodingIdentifier, AddToQueueIdentifier,
886         ChooseSourceIdentifier, ShowQueueIdentifier, ShowActivityIdentifier, ToggleDrawerIdentifier,
887         NSToolbarCustomizeToolbarItemIdentifier, NSToolbarFlexibleSpaceItemIdentifier,
888         NSToolbarSpaceItemIdentifier, NSToolbarSeparatorItemIdentifier, nil];
889 }
890
891 - (BOOL) validateToolbarItem: (NSToolbarItem *) toolbarItem
892 {
893     NSString * ident = [toolbarItem itemIdentifier];
894         
895     if (fHandle)
896     {
897         hb_state_t s;
898         hb_get_state2( fQueueEncodeLibhb, &s );
899         
900         if (s.state == HB_STATE_WORKING || s.state == HB_STATE_MUXING)
901         {
902             if ([ident isEqualToString: StartEncodingIdentifier])
903             {
904                 [toolbarItem setImage: [NSImage imageNamed: @"Stop"]];
905                 [toolbarItem setLabel: @"Stop"];
906                 [toolbarItem setPaletteLabel: @"Stop"];
907                 [toolbarItem setToolTip: @"Stop Encoding"];
908                 return YES;
909             }
910             if ([ident isEqualToString: PauseEncodingIdentifier])
911             {
912                 [toolbarItem setImage: [NSImage imageNamed: @"Pause"]];
913                 [toolbarItem setLabel: @"Pause"];
914                 [toolbarItem setPaletteLabel: @"Pause Encoding"];
915                 [toolbarItem setToolTip: @"Pause Encoding"];
916                 return YES;
917             }
918             if (SuccessfulScan)
919                 if ([ident isEqualToString: AddToQueueIdentifier])
920                     return YES;
921         }
922         else if (s.state == HB_STATE_PAUSED)
923         {
924             if ([ident isEqualToString: PauseEncodingIdentifier])
925             {
926                 [toolbarItem setImage: [NSImage imageNamed: @"Play"]];
927                 [toolbarItem setLabel: @"Resume"];
928                 [toolbarItem setPaletteLabel: @"Resume Encoding"];
929                 [toolbarItem setToolTip: @"Resume Encoding"];
930                 return YES;
931             }
932             if ([ident isEqualToString: StartEncodingIdentifier])
933                 return YES;
934             if ([ident isEqualToString: AddToQueueIdentifier])
935                 return YES;
936         }
937         else if (s.state == HB_STATE_SCANNING)
938             return NO;
939         else if (s.state == HB_STATE_WORKDONE || s.state == HB_STATE_SCANDONE || SuccessfulScan)
940         {
941             if ([ident isEqualToString: StartEncodingIdentifier])
942             {
943                 [toolbarItem setImage: [NSImage imageNamed: @"Play"]];
944                 if (hb_count(fHandle) > 0)
945                     [toolbarItem setLabel: @"Start Queue"];
946                 else
947                     [toolbarItem setLabel: @"Start"];
948                 [toolbarItem setPaletteLabel: @"Start Encoding"];
949                 [toolbarItem setToolTip: @"Start Encoding"];
950                 return YES;
951             }
952             if ([ident isEqualToString: AddToQueueIdentifier])
953                 return YES;
954         }
955
956     }
957     /* If there are any pending queue items, make sure the start/stop button is active */
958     if ([ident isEqualToString: StartEncodingIdentifier] && fPendingCount > 0)
959         return YES;
960     if ([ident isEqualToString: ShowQueueIdentifier])
961         return YES;
962     if ([ident isEqualToString: ToggleDrawerIdentifier])
963         return YES;
964     if ([ident isEqualToString: ChooseSourceIdentifier])
965         return YES;
966     if ([ident isEqualToString: ShowActivityIdentifier])
967         return YES;
968     
969     return NO;
970 }
971
972 - (BOOL) validateMenuItem: (NSMenuItem *) menuItem
973 {
974     SEL action = [menuItem action];
975     
976     hb_state_t s;
977     hb_get_state2( fHandle, &s );
978     
979     if (fHandle)
980     {
981         if (action == @selector(addToQueue:) || action == @selector(showPicturePanel:) || action == @selector(showAddPresetPanel:))
982             return SuccessfulScan && [fWindow attachedSheet] == nil;
983         
984         if (action == @selector(browseSources:))
985         {
986             if (s.state == HB_STATE_SCANNING)
987                 return NO;
988             else
989                 return [fWindow attachedSheet] == nil;
990         }
991         if (action == @selector(selectDefaultPreset:))
992             return [fPresetsOutlineView selectedRow] >= 0 && [fWindow attachedSheet] == nil;
993         if (action == @selector(Pause:))
994         {
995             if (s.state == HB_STATE_WORKING)
996             {
997                 if(![[menuItem title] isEqualToString:@"Pause Encoding"])
998                     [menuItem setTitle:@"Pause Encoding"];
999                 return YES;
1000             }
1001             else if (s.state == HB_STATE_PAUSED)
1002             {
1003                 if(![[menuItem title] isEqualToString:@"Resume Encoding"])
1004                     [menuItem setTitle:@"Resume Encoding"];
1005                 return YES;
1006             }
1007             else
1008                 return NO;
1009         }
1010         if (action == @selector(Rip:))
1011         {
1012             if (s.state == HB_STATE_WORKING || s.state == HB_STATE_MUXING || s.state == HB_STATE_PAUSED)
1013             {
1014                 if(![[menuItem title] isEqualToString:@"Stop Encoding"])
1015                     [menuItem setTitle:@"Stop Encoding"];
1016                 return YES;
1017             }
1018             else if (SuccessfulScan)
1019             {
1020                 if(![[menuItem title] isEqualToString:@"Start Encoding"])
1021                     [menuItem setTitle:@"Start Encoding"];
1022                 return [fWindow attachedSheet] == nil;
1023             }
1024             else
1025                 return NO;
1026         }
1027     }
1028     if( action == @selector(setDefaultPreset:) )
1029     {
1030         return [fPresetsOutlineView selectedRow] != -1;
1031     }
1032
1033     return YES;
1034 }
1035
1036 #pragma mark -
1037 #pragma mark Encode Done Actions
1038 // register a test notification and make
1039 // it enabled by default
1040 #define SERVICE_NAME @"Encode Done"
1041 - (NSDictionary *)registrationDictionaryForGrowl 
1042
1043     NSDictionary *registrationDictionary = [NSDictionary dictionaryWithObjectsAndKeys: 
1044     [NSArray arrayWithObjects:SERVICE_NAME,nil], GROWL_NOTIFICATIONS_ALL, 
1045     [NSArray arrayWithObjects:SERVICE_NAME,nil], GROWL_NOTIFICATIONS_DEFAULT, 
1046     nil]; 
1047
1048     return registrationDictionary; 
1049
1050
1051 -(void)showGrowlDoneNotification:(NSString *) filePath
1052 {
1053     /* This is called from HBQueueController as jobs roll off of the queue in currentJobChanged */
1054     NSString * finishedEncode = filePath;
1055     /* strip off the path to just show the file name */
1056     finishedEncode = [finishedEncode lastPathComponent];
1057     if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"AlertWhenDone"] isEqualToString: @"Growl Notification"] || 
1058         [[[NSUserDefaults standardUserDefaults] stringForKey:@"AlertWhenDone"] isEqualToString: @"Alert Window And Growl"])
1059     {
1060         NSString * growlMssg = [NSString stringWithFormat: @"your HandBrake encode %@ is done!",finishedEncode];
1061         [GrowlApplicationBridge 
1062          notifyWithTitle:@"Put down that cocktail..." 
1063          description:growlMssg 
1064          notificationName:SERVICE_NAME
1065          iconData:nil 
1066          priority:0 
1067          isSticky:1 
1068          clickContext:nil];
1069     }
1070     
1071 }
1072 -(void)sendToMetaX:(NSString *) filePath
1073 {
1074     /* This is called from HBQueueController as jobs roll off of the queue in currentJobChanged */
1075     if([[NSUserDefaults standardUserDefaults] boolForKey: @"sendToMetaX"] == YES)
1076     {
1077         NSAppleScript *myScript = [[NSAppleScript alloc] initWithSource: [NSString stringWithFormat: @"%@%@%@", @"tell application \"MetaX\" to open (POSIX file \"", filePath, @"\")"]];
1078         [myScript executeAndReturnError: nil];
1079         [myScript release];
1080     }
1081 }
1082 #pragma mark -
1083 #pragma mark Get New Source
1084
1085 /*Opens the source browse window, called from Open Source widgets */
1086 - (IBAction) browseSources: (id) sender
1087 {
1088     NSOpenPanel * panel;
1089         
1090     panel = [NSOpenPanel openPanel];
1091     [panel setAllowsMultipleSelection: NO];
1092     [panel setCanChooseFiles: YES];
1093     [panel setCanChooseDirectories: YES ];
1094     NSString * sourceDirectory;
1095         if ([[NSUserDefaults standardUserDefaults] stringForKey:@"LastSourceDirectory"])
1096         {
1097                 sourceDirectory = [[NSUserDefaults standardUserDefaults] stringForKey:@"LastSourceDirectory"];
1098         }
1099         else
1100         {
1101                 sourceDirectory = @"~/Desktop";
1102                 sourceDirectory = [sourceDirectory stringByExpandingTildeInPath];
1103         }
1104     /* we open up the browse sources sheet here and call for browseSourcesDone after the sheet is closed
1105         * to evaluate whether we want to specify a title, we pass the sender in the contextInfo variable
1106         */
1107     [panel beginSheetForDirectory: sourceDirectory file: nil types: nil
1108                    modalForWindow: fWindow modalDelegate: self
1109                    didEndSelector: @selector( browseSourcesDone:returnCode:contextInfo: )
1110                       contextInfo: sender]; 
1111 }
1112
1113 - (void) browseSourcesDone: (NSOpenPanel *) sheet
1114                 returnCode: (int) returnCode contextInfo: (void *) contextInfo
1115 {
1116     /* we convert the sender content of contextInfo back into a variable called sender
1117      * mostly just for consistency for evaluation later
1118      */
1119     id sender = (id)contextInfo;
1120     /* User selected a file to open */
1121         if( returnCode == NSOKButton )
1122     {
1123             /* Free display name allocated previously by this code */
1124         [browsedSourceDisplayName release];
1125        
1126         NSString *scanPath = [[sheet filenames] objectAtIndex: 0];
1127         /* we set the last searched source directory in the prefs here */
1128         NSString *sourceDirectory = [scanPath stringByDeletingLastPathComponent];
1129         [[NSUserDefaults standardUserDefaults] setObject:sourceDirectory forKey:@"LastSourceDirectory"];
1130         /* we order out sheet, which is the browse window as we need to open
1131          * the title selection sheet right away
1132          */
1133         [sheet orderOut: self];
1134         
1135         if (sender == fOpenSourceTitleMMenu)
1136         {
1137             /* We put the chosen source path in the source display text field for the
1138              * source title selection sheet in which the user specifies the specific title to be
1139              * scanned  as well as the short source name in fSrcDsplyNameTitleScan just for display
1140              * purposes in the title panel
1141              */
1142             /* Full Path */
1143             [fScanSrcTitlePathField setStringValue:scanPath];
1144             NSString *displayTitlescanSourceName;
1145
1146             if ([[scanPath lastPathComponent] isEqualToString: @"VIDEO_TS"])
1147             {
1148                 /* If VIDEO_TS Folder is chosen, choose its parent folder for the source display name
1149                  we have to use the title->dvd value so we get the proper name of the volume if a physical dvd is the source*/
1150                 displayTitlescanSourceName = [[scanPath stringByDeletingLastPathComponent] lastPathComponent];
1151             }
1152             else
1153             {
1154                 /* if not the VIDEO_TS Folder, we can assume the chosen folder is the source name */
1155                 displayTitlescanSourceName = [scanPath lastPathComponent];
1156             }
1157             /* we set the source display name in the title selection dialogue */
1158             [fSrcDsplyNameTitleScan setStringValue:displayTitlescanSourceName];
1159             /* we set the attempted scans display name for main window to displayTitlescanSourceName*/
1160             browsedSourceDisplayName = [displayTitlescanSourceName retain];
1161             /* We show the actual sheet where the user specifies the title to be scanned
1162              * as we are going to do a title specific scan
1163              */
1164             [self showSourceTitleScanPanel:nil];
1165         }
1166         else
1167         {
1168             /* We are just doing a standard full source scan, so we specify "0" to libhb */
1169             NSString *path = [[sheet filenames] objectAtIndex: 0];
1170             
1171             /* We check to see if the chosen file at path is a package */
1172             if ([[NSWorkspace sharedWorkspace] isFilePackageAtPath:path])
1173             {
1174                 [self writeToActivityLog: "trying to open a package at: %s", [path UTF8String]];
1175                 /* We check to see if this is an .eyetv package */
1176                 if ([[path pathExtension] isEqualToString: @"eyetv"])
1177                 {
1178                     [self writeToActivityLog:"trying to open eyetv package"];
1179                     /* We're looking at an EyeTV package - try to open its enclosed
1180                      .mpg media file */
1181                      browsedSourceDisplayName = [[[path stringByDeletingPathExtension] lastPathComponent] retain];
1182                     NSString *mpgname;
1183                     int n = [[path stringByAppendingString: @"/"]
1184                              completePathIntoString: &mpgname caseSensitive: NO
1185                              matchesIntoArray: nil
1186                              filterTypes: [NSArray arrayWithObject: @"mpg"]];
1187                     if (n > 0)
1188                     {
1189                         /* Found an mpeg inside the eyetv package, make it our scan path 
1190                         and call performScan on the enclosed mpeg */
1191                         path = mpgname;
1192                         [self writeToActivityLog:"found mpeg in eyetv package"];
1193                         [self performScan:path scanTitleNum:0];
1194                     }
1195                     else
1196                     {
1197                         /* We did not find an mpeg file in our package, so we do not call performScan */
1198                         [self writeToActivityLog:"no valid mpeg in eyetv package"];
1199                     }
1200                 }
1201                 /* We check to see if this is a .dvdmedia package */
1202                 else if ([[path pathExtension] isEqualToString: @"dvdmedia"])
1203                 {
1204                     /* path IS a package - but dvdmedia packages can be treaded like normal directories */
1205                     browsedSourceDisplayName = [[[path stringByDeletingPathExtension] lastPathComponent] retain];
1206                     [self writeToActivityLog:"trying to open dvdmedia package"];
1207                     [self performScan:path scanTitleNum:0];
1208                 }
1209                 else
1210                 {
1211                     /* The package is not an eyetv package, so we do not call performScan */
1212                     [self writeToActivityLog:"unable to open package"];
1213                 }
1214             }
1215             else // path is not a package, so we treat it as a dvd parent folder or VIDEO_TS folder
1216             {
1217                 /* path is not a package, so we call perform scan directly on our file */
1218                 if ([[path lastPathComponent] isEqualToString: @"VIDEO_TS"])
1219                 {
1220                     [self writeToActivityLog:"trying to open video_ts folder (video_ts folder chosen)"];
1221                     /* If VIDEO_TS Folder is chosen, choose its parent folder for the source display name*/
1222                     browsedSourceDisplayName = [[[path stringByDeletingLastPathComponent] lastPathComponent] retain];
1223                 }
1224                 else
1225                 {
1226                     [self writeToActivityLog:"trying to open video_ts folder (parent directory chosen)"];
1227                     /* if not the VIDEO_TS Folder, we can assume the chosen folder is the source name */
1228                     /* make sure we remove any path extension as this can also be an '.mpg' file */
1229                     browsedSourceDisplayName = [[path lastPathComponent] retain];
1230                 }
1231                 [self performScan:path scanTitleNum:0];
1232             }
1233
1234         }
1235
1236     }
1237 }
1238
1239 /* Here we open the title selection sheet where we can specify an exact title to be scanned */
1240 - (IBAction) showSourceTitleScanPanel: (id) sender
1241 {
1242     /* We default the title number to be scanned to "0" which results in a full source scan, unless the
1243     * user changes it
1244     */
1245     [fScanSrcTitleNumField setStringValue: @"0"];
1246         /* Show the panel */
1247         [NSApp beginSheet:fScanSrcTitlePanel modalForWindow:fWindow modalDelegate:nil didEndSelector:NULL contextInfo:NULL];
1248 }
1249
1250 - (IBAction) closeSourceTitleScanPanel: (id) sender
1251 {
1252     [NSApp endSheet: fScanSrcTitlePanel];
1253     [fScanSrcTitlePanel orderOut: self];
1254
1255     if(sender == fScanSrcTitleOpenButton)
1256     {
1257         /* We setup the scan status in the main window to indicate a source title scan */
1258         [fSrcDVD2Field setStringValue: @"Opening a new source title ..."];
1259                 [fScanIndicator setHidden: NO];
1260         [fScanIndicator setIndeterminate: YES];
1261         [fScanIndicator startAnimation: nil];
1262                 
1263         /* We use the performScan method to actually perform the specified scan passing the path and the title
1264             * to be scanned
1265             */
1266         [self performScan:[fScanSrcTitlePathField stringValue] scanTitleNum:[fScanSrcTitleNumField intValue]];
1267     }
1268 }
1269
1270 /* Here we actually tell hb_scan to perform the source scan, using the path to source and title number*/
1271 - (void) performScan:(NSString *) scanPath scanTitleNum: (int) scanTitleNum
1272 {
1273     /* set the bool applyQueueToScan so that we dont apply a queue setting to the final scan */
1274     applyQueueToScan = NO;
1275     /* use a bool to determine whether or not we can decrypt using vlc */
1276     BOOL cancelScanDecrypt = 0;
1277     NSString *path = scanPath;
1278     HBDVDDetector *detector = [HBDVDDetector detectorForPath:path];
1279
1280     // Notify ChapterTitles that there's no title
1281     [fChapterTitlesDelegate resetWithTitle:nil];
1282     [fChapterTable reloadData];
1283
1284     [self enableUI: NO];
1285
1286     if( [detector isVideoDVD] )
1287     {
1288         // The chosen path was actually on a DVD, so use the raw block
1289         // device path instead.
1290         path = [detector devicePath];
1291         [self writeToActivityLog: "trying to open a physical dvd at: %s", [scanPath UTF8String]];
1292
1293         /* lets check for vlc here to make sure we have a dylib available to use for decrypting */
1294         NSString *vlcPath = @"/Applications/VLC.app";
1295         NSFileManager * fileManager = [NSFileManager defaultManager];
1296             if ([fileManager fileExistsAtPath:vlcPath] == 0) 
1297             {
1298             /*vlc not found in /Applications so we set the bool to cancel scanning to 1 */
1299             cancelScanDecrypt = 1;
1300             [self writeToActivityLog: "VLC app not found for decrypting physical dvd"];
1301             int status;
1302             status = NSRunAlertPanel(@"HandBrake could not find VLC.",@"Please download and install VLC media player in your /Applications folder if you wish to read encrypted DVDs.", @"Get VLC", @"Cancel Scan", @"Attempt Scan Anyway");
1303             [NSApp requestUserAttention:NSCriticalRequest];
1304             
1305             if (status == NSAlertDefaultReturn)
1306             {
1307                 /* User chose to go download vlc (as they rightfully should) so we send them to the vlc site */
1308                 [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.videolan.org/"]];
1309             }
1310             else if (status == NSAlertAlternateReturn)
1311             {
1312             /* User chose to cancel the scan */
1313             [self writeToActivityLog: "cannot open physical dvd , scan cancelled"];
1314             }
1315             else
1316             {
1317             /* User chose to override our warning and scan the physical dvd anyway, at their own peril. on an encrypted dvd this produces massive log files and fails */
1318             cancelScanDecrypt = 0;
1319             [self writeToActivityLog: "user overrode vlc warning -trying to open physical dvd without decryption"];
1320             }
1321
1322         }
1323         else
1324         {
1325             /* VLC was found in /Applications so all is well, we can carry on using vlc's libdvdcss.dylib for decrypting if needed */
1326             [self writeToActivityLog: "VLC app found for decrypting physical dvd"];
1327         }
1328     }
1329
1330     if (cancelScanDecrypt == 0)
1331     {
1332         /* we actually pass the scan off to libhb here */
1333         /* If there is no title number passed to scan, we use "0"
1334          * which causes the default behavior of a full source scan
1335          */
1336         if (!scanTitleNum)
1337         {
1338             scanTitleNum = 0;
1339         }
1340         if (scanTitleNum > 0)
1341         {
1342             [self writeToActivityLog: "scanning specifically for title: %d", scanTitleNum];
1343         }
1344
1345         hb_scan( fHandle, [path UTF8String], scanTitleNum );
1346         [fSrcDVD2Field setStringValue:@"Scanning new source ..."];
1347     }
1348 }
1349
1350 - (IBAction) showNewScan:(id)sender
1351 {
1352     hb_list_t  * list;
1353         hb_title_t * title;
1354         int indxpri=0;    // Used to search the longuest title (default in combobox)
1355         int longuestpri=0; // Used to search the longuest title (default in combobox)
1356     
1357
1358         list = hb_get_titles( fHandle );
1359         
1360         if( !hb_list_count( list ) )
1361         {
1362             /* We display a message if a valid dvd source was not chosen */
1363             [fSrcDVD2Field setStringValue: @"No Valid Source Found"];
1364             SuccessfulScan = NO;
1365             
1366             // Notify ChapterTitles that there's no title
1367             [fChapterTitlesDelegate resetWithTitle:nil];
1368             [fChapterTable reloadData];
1369         }
1370         else
1371         {
1372             /* We increment the successful scancount here by one,
1373              which we use at the end of this function to tell the gui
1374              if this is the first successful scan since launch and whether
1375              or not we should set all settings to the defaults */
1376             
1377             currentSuccessfulScanCount++;
1378             
1379             [[fWindow toolbar] validateVisibleItems];
1380             
1381             [fSrcTitlePopUp removeAllItems];
1382             for( int i = 0; i < hb_list_count( list ); i++ )
1383             {
1384                 title = (hb_title_t *) hb_list_item( list, i );
1385                 
1386                 currentSource = [NSString stringWithUTF8String: title->name];
1387                 /*Set DVD Name at top of window with the browsedSourceDisplayName grokked right before -performScan */
1388                 [fSrcDVD2Field setStringValue:browsedSourceDisplayName];
1389                 
1390                 /* Use the dvd name in the default output field here
1391                  May want to add code to remove blank spaces for some dvd names*/
1392                 /* Check to see if the last destination has been set,use if so, if not, use Desktop */
1393                 if ([[NSUserDefaults standardUserDefaults] stringForKey:@"LastDestinationDirectory"])
1394                 {
1395                     [fDstFile2Field setStringValue: [NSString stringWithFormat:
1396                                                      @"%@/%@.mp4", [[NSUserDefaults standardUserDefaults] stringForKey:@"LastDestinationDirectory"],[browsedSourceDisplayName stringByDeletingPathExtension]]];
1397                 }
1398                 else
1399                 {
1400                     [fDstFile2Field setStringValue: [NSString stringWithFormat:
1401                                                      @"%@/Desktop/%@.mp4", NSHomeDirectory(),[browsedSourceDisplayName stringByDeletingPathExtension]]];
1402                 }
1403                 
1404                 
1405                 if (longuestpri < title->hours*60*60 + title->minutes *60 + title->seconds)
1406                 {
1407                     longuestpri=title->hours*60*60 + title->minutes *60 + title->seconds;
1408                     indxpri=i;
1409                 }
1410                 
1411                 [fSrcTitlePopUp addItemWithTitle: [NSString
1412                                                    stringWithFormat: @"%d - %02dh%02dm%02ds",
1413                                                    title->index, title->hours, title->minutes,
1414                                                    title->seconds]];
1415             }
1416             
1417             // Select the longuest title
1418             [fSrcTitlePopUp selectItemAtIndex: indxpri];
1419             [self titlePopUpChanged:nil];
1420             
1421             SuccessfulScan = YES;
1422             [self enableUI: YES];
1423
1424                 /* if its the initial successful scan after awakeFromNib */
1425                 if (currentSuccessfulScanCount == 1)
1426                 {
1427                     [self selectDefaultPreset:nil];
1428                     /* initially set deinterlace to 0, will be overridden reset by the default preset anyway */
1429                     //[fPictureController setDeinterlace:0];
1430                     
1431                     /* lets set Denoise to index 0 or "None" since this is the first scan */
1432                     //[fPictureController setDenoise:0];
1433                     
1434                     [fPictureController setInitialPictureFilters];
1435                 }
1436
1437             
1438         }
1439
1440 }
1441
1442
1443 #pragma mark -
1444 #pragma mark New Output Destination
1445
1446 - (IBAction) browseFile: (id) sender
1447 {
1448     /* Open a panel to let the user choose and update the text field */
1449     NSSavePanel * panel = [NSSavePanel savePanel];
1450         /* We get the current file name and path from the destination field here */
1451         [panel beginSheetForDirectory: [[fDstFile2Field stringValue] stringByDeletingLastPathComponent] file: [[fDstFile2Field stringValue] lastPathComponent]
1452                                    modalForWindow: fWindow modalDelegate: self
1453                                    didEndSelector: @selector( browseFileDone:returnCode:contextInfo: )
1454                                           contextInfo: NULL];
1455 }
1456
1457 - (void) browseFileDone: (NSSavePanel *) sheet
1458     returnCode: (int) returnCode contextInfo: (void *) contextInfo
1459 {
1460     if( returnCode == NSOKButton )
1461     {
1462         [fDstFile2Field setStringValue: [sheet filename]];
1463     }
1464 }
1465
1466
1467 #pragma mark -
1468 #pragma mark Main Window Control
1469
1470 - (IBAction) openMainWindow: (id) sender
1471 {
1472     [fWindow  makeKeyAndOrderFront:nil];
1473 }
1474
1475 - (BOOL) windowShouldClose: (id) sender
1476 {
1477     return YES;
1478 }
1479
1480 - (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows:(BOOL)flag
1481 {
1482     if( !flag ) {
1483         [fWindow  makeKeyAndOrderFront:nil];
1484                 
1485         return YES;
1486     }
1487     
1488     return NO;
1489 }
1490
1491
1492 #pragma mark -
1493 #pragma mark Queue File
1494
1495 - (void) loadQueueFile {
1496         /* We declare the default NSFileManager into fileManager */
1497         NSFileManager * fileManager = [NSFileManager defaultManager];
1498         /*We define the location of the user presets file */
1499     QueueFile = @"~/Library/Application Support/HandBrake/Queue.plist";
1500         QueueFile = [[QueueFile stringByExpandingTildeInPath]retain];
1501     /* We check for the presets.plist */
1502         if ([fileManager fileExistsAtPath:QueueFile] == 0)
1503         {
1504                 [fileManager createFileAtPath:QueueFile contents:nil attributes:nil];
1505         }
1506
1507         QueueFileArray = [[NSMutableArray alloc] initWithContentsOfFile:QueueFile];
1508         /* lets check to see if there is anything in the queue file .plist */
1509     if (nil == QueueFileArray)
1510         {
1511         /* if not, then lets initialize an empty array */
1512                 QueueFileArray = [[NSMutableArray alloc] init];
1513         
1514      /* Initialize our curQueueEncodeIndex to 0
1515      * so we can use it to track which queue
1516      * item is to be used to track our encodes */
1517      /* NOTE: this should be changed if and when we
1518       * are able to get the last unfinished encode
1519       * in the case of a crash or shutdown */
1520     
1521         }
1522     else
1523     {
1524     [self clearQueueEncodedItems];
1525     }
1526     currentQueueEncodeIndex = 0;
1527 }
1528
1529 - (void)addQueueFileItem
1530 {
1531         [QueueFileArray addObject:[self createQueueFileItem]];
1532         [self saveQueueFileItem];
1533
1534 }
1535
1536 - (void) removeQueueFileItem:(int) queueItemToRemove
1537 {
1538    
1539    // FIX ME: WE NEED TO IDENTIFY AN ENCODING ITEM AND CALL 
1540    
1541     [QueueFileArray removeObjectAtIndex:queueItemToRemove];
1542     [self saveQueueFileItem];
1543
1544 }
1545
1546 - (void)saveQueueFileItem
1547 {
1548     [QueueFileArray writeToFile:QueueFile atomically:YES];
1549     [fQueueController setQueueArray: QueueFileArray];
1550     [self getQueueStats];
1551 }
1552
1553 - (void)getQueueStats
1554 {
1555 /* lets get the stats on the status of the queue array */
1556
1557 fEncodingQueueItem = 0;
1558 fPendingCount = 0;
1559 fCompletedCount = 0;
1560 fCanceledCount = 0;
1561 fWorkingCount = 0;
1562
1563     /* We use a number system to set the encode status of the queue item
1564      * in controller.mm
1565      * 0 == already encoded
1566      * 1 == is being encoded
1567      * 2 == is yet to be encoded
1568      * 3 == cancelled
1569      */
1570
1571         int i = 0;
1572     NSEnumerator *enumerator = [QueueFileArray objectEnumerator];
1573         id tempObject;
1574         while (tempObject = [enumerator nextObject])
1575         {
1576                 NSDictionary *thisQueueDict = tempObject;
1577                 if ([[thisQueueDict objectForKey:@"Status"] intValue] == 0) // Completed
1578                 {
1579                         fCompletedCount++;      
1580                 }
1581                 if ([[thisQueueDict objectForKey:@"Status"] intValue] == 1) // being encoded
1582                 {
1583                         fWorkingCount++;
1584             fEncodingQueueItem = i;     
1585                 }
1586         if ([[thisQueueDict objectForKey:@"Status"] intValue] == 2) // pending          
1587         {
1588                         fPendingCount++;
1589                 }
1590         if ([[thisQueueDict objectForKey:@"Status"] intValue] == 3) // cancelled                
1591         {
1592                         fCanceledCount++;
1593                 }
1594                 i++;
1595         }
1596
1597     /* Set the queue status field in the main window */
1598     NSMutableString * string;
1599     if (fPendingCount == 1)
1600     {
1601         string = [NSMutableString stringWithFormat: NSLocalizedString( @"%d encode pending in the queue", @"" ), fPendingCount];
1602     }
1603     else
1604     {
1605         string = [NSMutableString stringWithFormat: NSLocalizedString( @"%d encode(s) pending in the queue", @"" ), fPendingCount];
1606     }
1607     [fQueueStatus setStringValue:string];
1608 }
1609
1610
1611 /* This method will clear the queue of any encodes that are not still pending
1612  * this includes both successfully completed encodes as well as cancelled encodes */
1613 - (void) clearQueueEncodedItems
1614 {
1615     NSEnumerator *enumerator = [QueueFileArray objectEnumerator];
1616         id tempObject;
1617     NSMutableArray *tempArray;
1618     tempArray = [NSMutableArray array];
1619     /* we look here to see if the preset is we move on to the next one */
1620     while ( tempObject = [enumerator nextObject] )  
1621     {
1622         /* If the queue item is not still pending (finished successfully or it was cancelled
1623          * during the last session, then we put it in tempArray to be deleted from QueueFileArray*/
1624         if ([[tempObject objectForKey:@"Status"] intValue] != 2)
1625         {
1626             [tempArray addObject:tempObject];
1627         }
1628     }
1629     
1630     [QueueFileArray removeObjectsInArray:tempArray];
1631     [self saveQueueFileItem];
1632     
1633 }
1634
1635 /* This method will clear the queue of any encodes that are not still pending
1636  * this includes both successfully completed encodes as well as cancelled encodes */
1637 - (void) clearQueueAllItems
1638 {
1639     NSEnumerator *enumerator = [QueueFileArray objectEnumerator];
1640         id tempObject;
1641     NSMutableArray *tempArray;
1642     tempArray = [NSMutableArray array];
1643     /* we look here to see if the preset is we move on to the next one */
1644     while ( tempObject = [enumerator nextObject] )  
1645     {
1646         [tempArray addObject:tempObject];
1647     }
1648     
1649     [QueueFileArray removeObjectsInArray:tempArray];
1650     [self saveQueueFileItem];
1651     
1652 }
1653
1654 /* This method will duplicate prepareJob however into the
1655  * queue .plist instead of into the job structure so it can
1656  * be recalled later */
1657 - (NSDictionary *)createQueueFileItem
1658 {
1659     NSMutableDictionary *queueFileJob = [[NSMutableDictionary alloc] init];
1660     
1661        hb_list_t  * list  = hb_get_titles( fHandle );
1662     hb_title_t * title = (hb_title_t *) hb_list_item( list,
1663             [fSrcTitlePopUp indexOfSelectedItem] );
1664     hb_job_t * job = title->job;
1665     //hb_audio_config_t * audio;
1666     
1667       // For picture filters
1668       //hb_job_t * job = fTitle->job;
1669     
1670     /* We use a number system to set the encode status of the queue item
1671      * 0 == already encoded
1672      * 1 == is being encoded
1673      * 2 == is yet to be encoded
1674      * 3 == cancelled
1675      */
1676     [queueFileJob setObject:[NSNumber numberWithInt:2] forKey:@"Status"];
1677     /* Source and Destination Information */
1678     
1679     [queueFileJob setObject:[NSString stringWithUTF8String: title->dvd] forKey:@"SourcePath"];
1680     [queueFileJob setObject:[fSrcDVD2Field stringValue] forKey:@"SourceName"];
1681     [queueFileJob setObject:[NSNumber numberWithInt:title->index] forKey:@"TitleNumber"];
1682     [queueFileJob setObject:[NSNumber numberWithInt:[fSrcChapterStartPopUp indexOfSelectedItem] + 1] forKey:@"ChapterStart"];
1683     
1684     [queueFileJob setObject:[NSNumber numberWithInt:[fSrcChapterEndPopUp indexOfSelectedItem] + 1] forKey:@"ChapterEnd"];
1685     
1686     [queueFileJob setObject:[fDstFile2Field stringValue] forKey:@"DestinationPath"];
1687     
1688     /* Lets get the preset info if there is any */
1689     [queueFileJob setObject:[fPresetSelectedDisplay stringValue] forKey:@"PresetName"];
1690     [queueFileJob setObject:[NSNumber numberWithInt:[fPresetsOutlineView selectedRow]] forKey:@"PresetIndexNum"];
1691     
1692     [queueFileJob setObject:[fDstFormatPopUp titleOfSelectedItem] forKey:@"FileFormat"];
1693         /* Chapter Markers fCreateChapterMarkers*/
1694         [queueFileJob setObject:[NSNumber numberWithInt:[fCreateChapterMarkers state]] forKey:@"ChapterMarkers"];
1695         /* Allow Mpeg4 64 bit formatting +4GB file sizes */
1696         [queueFileJob setObject:[NSNumber numberWithInt:[fDstMp4LargeFileCheck state]] forKey:@"Mp4LargeFile"];
1697     /* Mux mp4 with http optimization */
1698     [queueFileJob setObject:[NSNumber numberWithInt:[fDstMp4HttpOptFileCheck state]] forKey:@"Mp4HttpOptimize"];
1699     /* Add iPod uuid atom */
1700     [queueFileJob setObject:[NSNumber numberWithInt:[fDstMp4iPodFileCheck state]] forKey:@"Mp4iPodCompatible"];
1701     
1702     /* Codecs */
1703         /* Video encoder */
1704         [queueFileJob setObject:[fVidEncoderPopUp titleOfSelectedItem] forKey:@"VideoEncoder"];
1705         /* x264 Option String */
1706         [queueFileJob setObject:[fAdvancedOptions optionsString] forKey:@"x264Option"];
1707
1708         [queueFileJob setObject:[NSNumber numberWithInt:[fVidQualityMatrix selectedRow]] forKey:@"VideoQualityType"];
1709         [queueFileJob setObject:[fVidTargetSizeField stringValue] forKey:@"VideoTargetSize"];
1710         [queueFileJob setObject:[fVidBitrateField stringValue] forKey:@"VideoAvgBitrate"];
1711         [queueFileJob setObject:[NSNumber numberWithFloat:[fVidQualitySlider floatValue]] forKey:@"VideoQualitySlider"];
1712     /* Framerate */
1713     [queueFileJob setObject:[fVidRatePopUp titleOfSelectedItem] forKey:@"VideoFramerate"];
1714     
1715     /* GrayScale */
1716         [queueFileJob setObject:[NSNumber numberWithInt:[fVidGrayscaleCheck state]] forKey:@"VideoGrayScale"];
1717         /* 2 Pass Encoding */
1718         [queueFileJob setObject:[NSNumber numberWithInt:[fVidTwoPassCheck state]] forKey:@"VideoTwoPass"];
1719         /* Turbo 2 pass Encoding fVidTurboPassCheck*/
1720         [queueFileJob setObject:[NSNumber numberWithInt:[fVidTurboPassCheck state]] forKey:@"VideoTurboTwoPass"];
1721     
1722         /* Picture Sizing */
1723         /* Use Max Picture settings for whatever the dvd is.*/
1724         [queueFileJob setObject:[NSNumber numberWithInt:0] forKey:@"UsesMaxPictureSettings"];
1725         [queueFileJob setObject:[NSNumber numberWithInt:fTitle->job->width] forKey:@"PictureWidth"];
1726         [queueFileJob setObject:[NSNumber numberWithInt:fTitle->job->height] forKey:@"PictureHeight"];
1727         [queueFileJob setObject:[NSNumber numberWithInt:fTitle->job->keep_ratio] forKey:@"PictureKeepRatio"];
1728         [queueFileJob setObject:[NSNumber numberWithInt:fTitle->job->pixel_ratio] forKey:@"PicturePAR"];
1729     NSString * pictureSummary;
1730     pictureSummary = [NSString stringWithFormat:@"Source: %@ Output: %@ Anamorphic: %@", 
1731                      [fPicSettingsSrc stringValue], 
1732                      [fPicSettingsOutp stringValue], 
1733                      [fPicSettingsAnamorphic stringValue]];
1734     [queueFileJob setObject:pictureSummary forKey:@"PictureSizingSummary"];                 
1735     /* Set crop settings here */
1736         [queueFileJob setObject:[NSNumber numberWithInt:[fPictureController autoCrop]] forKey:@"PictureAutoCrop"];
1737     [queueFileJob setObject:[NSNumber numberWithInt:job->crop[0]] forKey:@"PictureTopCrop"];
1738     [queueFileJob setObject:[NSNumber numberWithInt:job->crop[1]] forKey:@"PictureBottomCrop"];
1739         [queueFileJob setObject:[NSNumber numberWithInt:job->crop[2]] forKey:@"PictureLeftCrop"];
1740         [queueFileJob setObject:[NSNumber numberWithInt:job->crop[3]] forKey:@"PictureRightCrop"];
1741     
1742     /* Picture Filters */
1743     [queueFileJob setObject:[NSNumber numberWithInt:[fPictureController deinterlace]] forKey:@"PictureDeinterlace"];
1744         [queueFileJob setObject:[NSNumber numberWithInt:[fPictureController detelecine]] forKey:@"PictureDetelecine"];
1745     [queueFileJob setObject:[NSNumber numberWithInt:[fPictureController vfr]] forKey:@"VFR"];
1746         [queueFileJob setObject:[NSNumber numberWithInt:[fPictureController denoise]] forKey:@"PictureDenoise"];
1747     [queueFileJob setObject:[NSNumber numberWithInt:[fPictureController deblock]] forKey:@"PictureDeblock"]; 
1748     [queueFileJob setObject:[NSNumber numberWithInt:[fPictureController decomb]] forKey:@"PictureDecomb"];
1749     
1750     /*Audio*/
1751     if ([fAudLang1PopUp indexOfSelectedItem] > 0)
1752     {
1753         [queueFileJob setObject:[NSNumber numberWithInt:[fAudLang1PopUp indexOfSelectedItem]] forKey:@"Audio1Track"];
1754         [queueFileJob setObject:[fAudLang1PopUp titleOfSelectedItem] forKey:@"Audio1TrackDescription"];
1755         [queueFileJob setObject:[fAudTrack1CodecPopUp titleOfSelectedItem] forKey:@"Audio1Encoder"];
1756         [queueFileJob setObject:[fAudTrack1MixPopUp titleOfSelectedItem] forKey:@"Audio1Mixdown"];
1757         [queueFileJob setObject:[fAudTrack1RatePopUp titleOfSelectedItem] forKey:@"Audio1Samplerate"];
1758         [queueFileJob setObject:[fAudTrack1BitratePopUp titleOfSelectedItem] forKey:@"Audio1Bitrate"];
1759         [queueFileJob setObject:[NSNumber numberWithFloat:[fAudTrack1DrcSlider floatValue]] forKey:@"Audio1TrackDRCSlider"];
1760     }
1761     if ([fAudLang2PopUp indexOfSelectedItem] > 0)
1762     {
1763         [queueFileJob setObject:[NSNumber numberWithInt:[fAudLang2PopUp indexOfSelectedItem]] forKey:@"Audio2Track"];
1764         [queueFileJob setObject:[fAudLang2PopUp titleOfSelectedItem] forKey:@"Audio2TrackDescription"];
1765         [queueFileJob setObject:[fAudTrack2CodecPopUp titleOfSelectedItem] forKey:@"Audio2Encoder"];
1766         [queueFileJob setObject:[fAudTrack2MixPopUp titleOfSelectedItem] forKey:@"Audio2Mixdown"];
1767         [queueFileJob setObject:[fAudTrack2RatePopUp titleOfSelectedItem] forKey:@"Audio2Samplerate"];
1768         [queueFileJob setObject:[fAudTrack2BitratePopUp titleOfSelectedItem] forKey:@"Audio2Bitrate"];
1769         [queueFileJob setObject:[NSNumber numberWithFloat:[fAudTrack2DrcSlider floatValue]] forKey:@"Audio2TrackDRCSlider"];
1770     }
1771     if ([fAudLang3PopUp indexOfSelectedItem] > 0)
1772     {
1773         [queueFileJob setObject:[NSNumber numberWithInt:[fAudLang3PopUp indexOfSelectedItem]] forKey:@"Audio3Track"];
1774         [queueFileJob setObject:[fAudLang3PopUp titleOfSelectedItem] forKey:@"Audio3TrackDescription"];
1775         [queueFileJob setObject:[fAudTrack3CodecPopUp titleOfSelectedItem] forKey:@"Audio3Encoder"];
1776         [queueFileJob setObject:[fAudTrack3MixPopUp titleOfSelectedItem] forKey:@"Audio3Mixdown"];
1777         [queueFileJob setObject:[fAudTrack3RatePopUp titleOfSelectedItem] forKey:@"Audio3Samplerate"];
1778         [queueFileJob setObject:[fAudTrack3BitratePopUp titleOfSelectedItem] forKey:@"Audio3Bitrate"];
1779         [queueFileJob setObject:[NSNumber numberWithFloat:[fAudTrack3DrcSlider floatValue]] forKey:@"Audio3TrackDRCSlider"];
1780     }
1781     if ([fAudLang4PopUp indexOfSelectedItem] > 0)
1782     {
1783         [queueFileJob setObject:[NSNumber numberWithInt:[fAudLang4PopUp indexOfSelectedItem]] forKey:@"Audio4Track"];
1784         [queueFileJob setObject:[fAudLang4PopUp titleOfSelectedItem] forKey:@"Audio4TrackDescription"];
1785         [queueFileJob setObject:[fAudTrack4CodecPopUp titleOfSelectedItem] forKey:@"Audio4Encoder"];
1786         [queueFileJob setObject:[fAudTrack4MixPopUp titleOfSelectedItem] forKey:@"Audio4Mixdown"];
1787         [queueFileJob setObject:[fAudTrack4RatePopUp titleOfSelectedItem] forKey:@"Audio4Samplerate"];
1788         [queueFileJob setObject:[fAudTrack4BitratePopUp titleOfSelectedItem] forKey:@"Audio4Bitrate"];
1789         [queueFileJob setObject:[NSNumber numberWithFloat:[fAudTrack4DrcSlider floatValue]] forKey:@"Audio4TrackDRCSlider"];
1790     }
1791     
1792         /* Subtitles*/
1793         [queueFileJob setObject:[fSubPopUp titleOfSelectedItem] forKey:@"Subtitles"];
1794     [queueFileJob setObject:[NSNumber numberWithInt:[fSubPopUp indexOfSelectedItem]] forKey:@"JobSubtitlesIndex"];
1795     /* Forced Subtitles */
1796         [queueFileJob setObject:[NSNumber numberWithInt:[fSubForcedCheck state]] forKey:@"SubtitlesForced"];
1797     
1798     
1799     
1800     /* Now we go ahead and set the "job->values in the plist for passing right to fQueueEncodeLibhb */
1801      
1802     [queueFileJob setObject:[NSNumber numberWithInt:[fSrcChapterStartPopUp indexOfSelectedItem] + 1] forKey:@"JobChapterStart"];
1803     
1804     [queueFileJob setObject:[NSNumber numberWithInt:[fSrcChapterEndPopUp indexOfSelectedItem] + 1] forKey:@"JobChapterEnd"];
1805     
1806     
1807     [queueFileJob setObject:[NSNumber numberWithInt:[[fDstFormatPopUp selectedItem] tag]] forKey:@"JobFileFormatMux"];
1808         /* Chapter Markers fCreateChapterMarkers*/
1809         //[queueFileJob setObject:[NSNumber numberWithInt:[fCreateChapterMarkers state]] forKey:@"ChapterMarkers"];
1810         /* Allow Mpeg4 64 bit formatting +4GB file sizes */
1811         //[queueFileJob setObject:[NSNumber numberWithInt:[fDstMp4LargeFileCheck state]] forKey:@"Mp4LargeFile"];
1812     /* Mux mp4 with http optimization */
1813     //[queueFileJob setObject:[NSNumber numberWithInt:[fDstMp4HttpOptFileCheck state]] forKey:@"Mp4HttpOptimize"];
1814     /* Add iPod uuid atom */
1815     //[queueFileJob setObject:[NSNumber numberWithInt:[fDstMp4iPodFileCheck state]] forKey:@"Mp4iPodCompatible"];
1816     
1817     /* Codecs */
1818         /* Video encoder */
1819         [queueFileJob setObject:[NSNumber numberWithInt:[[fVidEncoderPopUp selectedItem] tag]] forKey:@"JobVideoEncoderVcodec"];
1820         /* x264 Option String */
1821         //[queueFileJob setObject:[fAdvancedOptions optionsString] forKey:@"x264Option"];
1822
1823         //[queueFileJob setObject:[NSNumber numberWithInt:[fVidQualityMatrix selectedRow]] forKey:@"VideoQualityType"];
1824         //[queueFileJob setObject:[fVidTargetSizeField stringValue] forKey:@"VideoTargetSize"];
1825         //[queueFileJob setObject:[fVidBitrateField stringValue] forKey:@"VideoAvgBitrate"];
1826         //[queueFileJob setObject:[NSNumber numberWithFloat:[fVidQualitySlider floatValue]] forKey:@"VideoQualitySlider"];
1827     /* Framerate */
1828     [queueFileJob setObject:[NSNumber numberWithInt:[fVidRatePopUp indexOfSelectedItem]] forKey:@"JobIndexVideoFramerate"];
1829     [queueFileJob setObject:[NSNumber numberWithInt:title->rate] forKey:@"JobVrate"];
1830     [queueFileJob setObject:[NSNumber numberWithInt:title->rate_base] forKey:@"JobVrateBase"];
1831         /* Picture Sizing */
1832         /* Use Max Picture settings for whatever the dvd is.*/
1833         [queueFileJob setObject:[NSNumber numberWithInt:0] forKey:@"UsesMaxPictureSettings"];
1834         [queueFileJob setObject:[NSNumber numberWithInt:fTitle->job->width] forKey:@"PictureWidth"];
1835         [queueFileJob setObject:[NSNumber numberWithInt:fTitle->job->height] forKey:@"PictureHeight"];
1836         [queueFileJob setObject:[NSNumber numberWithInt:fTitle->job->keep_ratio] forKey:@"PictureKeepRatio"];
1837         [queueFileJob setObject:[NSNumber numberWithInt:fTitle->job->pixel_ratio] forKey:@"PicturePAR"];
1838     
1839     /* Set crop settings here */
1840         [queueFileJob setObject:[NSNumber numberWithInt:[fPictureController autoCrop]] forKey:@"PictureAutoCrop"];
1841     [queueFileJob setObject:[NSNumber numberWithInt:job->crop[0]] forKey:@"PictureTopCrop"];
1842     [queueFileJob setObject:[NSNumber numberWithInt:job->crop[1]] forKey:@"PictureBottomCrop"];
1843         [queueFileJob setObject:[NSNumber numberWithInt:job->crop[2]] forKey:@"PictureLeftCrop"];
1844         [queueFileJob setObject:[NSNumber numberWithInt:job->crop[3]] forKey:@"PictureRightCrop"];
1845     
1846     /* Picture Filters */
1847     [queueFileJob setObject:[fPicSettingDecomb stringValue] forKey:@"JobPictureDecomb"];
1848     
1849     /*Audio*/
1850     if ([fAudLang1PopUp indexOfSelectedItem] > 0)
1851     {
1852         //[queueFileJob setObject:[fAudTrack1CodecPopUp indexOfSelectedItem] forKey:@"JobAudio1Encoder"];
1853         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack1CodecPopUp selectedItem] tag]] forKey:@"JobAudio1Encoder"];
1854         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack1MixPopUp selectedItem] tag]] forKey:@"JobAudio1Mixdown"];
1855         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack1RatePopUp selectedItem] tag]] forKey:@"JobAudio1Samplerate"];
1856         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack1BitratePopUp selectedItem] tag]] forKey:@"JobAudio1Bitrate"];
1857      }
1858     if ([fAudLang2PopUp indexOfSelectedItem] > 0)
1859     {
1860         //[queueFileJob setObject:[fAudTrack1CodecPopUp indexOfSelectedItem] forKey:@"JobAudio2Encoder"];
1861         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack2CodecPopUp selectedItem] tag]] forKey:@"JobAudio2Encoder"];
1862         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack2MixPopUp selectedItem] tag]] forKey:@"JobAudio2Mixdown"];
1863         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack2RatePopUp selectedItem] tag]] forKey:@"JobAudio2Samplerate"];
1864         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack2BitratePopUp selectedItem] tag]] forKey:@"JobAudio2Bitrate"];
1865     }
1866     if ([fAudLang3PopUp indexOfSelectedItem] > 0)
1867     {
1868         //[queueFileJob setObject:[fAudTrack1CodecPopUp indexOfSelectedItem] forKey:@"JobAudio3Encoder"];
1869         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack3CodecPopUp selectedItem] tag]] forKey:@"JobAudio3Encoder"];
1870         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack3MixPopUp selectedItem] tag]] forKey:@"JobAudio3Mixdown"];
1871         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack3RatePopUp selectedItem] tag]] forKey:@"JobAudio3Samplerate"];
1872         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack3BitratePopUp selectedItem] tag]] forKey:@"JobAudio3Bitrate"];
1873     }
1874     if ([fAudLang4PopUp indexOfSelectedItem] > 0)
1875     {
1876         //[queueFileJob setObject:[fAudTrack1CodecPopUp indexOfSelectedItem] forKey:@"JobAudio4Encoder"];
1877         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack4CodecPopUp selectedItem] tag]] forKey:@"JobAudio4Encoder"];
1878         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack4MixPopUp selectedItem] tag]] forKey:@"JobAudio4Mixdown"];
1879         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack4RatePopUp selectedItem] tag]] forKey:@"JobAudio4Samplerate"];
1880         [queueFileJob setObject:[NSNumber numberWithInt:[[fAudTrack4BitratePopUp selectedItem] tag]] forKey:@"JobAudio4Bitrate"];
1881     }
1882         /* Subtitles*/
1883         [queueFileJob setObject:[fSubPopUp titleOfSelectedItem] forKey:@"Subtitles"];
1884     /* Forced Subtitles */
1885         [queueFileJob setObject:[NSNumber numberWithInt:[fSubForcedCheck state]] forKey:@"SubtitlesForced"];
1886  
1887     /* we need to auto relase the queueFileJob and return it */
1888     [queueFileJob autorelease];
1889     return queueFileJob;
1890
1891 }
1892
1893 /* this is actually called from the queue controller to modify the queue array and return it back to the queue controller */
1894 - (void)moveObjectsInQueueArray:(NSMutableArray *)array fromIndexes:(NSIndexSet *)indexSet toIndex:(unsigned)insertIndex
1895 {
1896     unsigned index = [indexSet lastIndex];
1897     unsigned aboveInsertIndexCount = 0;
1898     
1899     while (index != NSNotFound)
1900     {
1901         unsigned removeIndex;
1902         
1903         if (index >= insertIndex)
1904         {
1905             removeIndex = index + aboveInsertIndexCount;
1906             aboveInsertIndexCount++;
1907         }
1908         else
1909         {
1910             removeIndex = index;
1911             insertIndex--;
1912         }
1913         
1914         id object = [[QueueFileArray objectAtIndex:removeIndex] retain];
1915         [QueueFileArray removeObjectAtIndex:removeIndex];
1916         [QueueFileArray insertObject:object atIndex:insertIndex];
1917         [object release];
1918         
1919         index = [indexSet indexLessThanIndex:index];
1920     }
1921    /* We save all of the Queue data here 
1922     * and it also gets sent back to the queue controller*/
1923     [self saveQueueFileItem]; 
1924     
1925 }
1926
1927
1928 #pragma mark -
1929 #pragma mark Queue Job Processing
1930
1931 - (void) incrementQueueItemDone:(int) queueItemDoneIndexNum
1932 {
1933     int i = currentQueueEncodeIndex;
1934     [[QueueFileArray objectAtIndex:i] setObject:[NSNumber numberWithInt:0] forKey:@"Status"];
1935         
1936     /* We save all of the Queue data here */
1937     [self saveQueueFileItem];
1938         /* We Reload the New Table data for presets */
1939     //[fPresetsOutlineView reloadData];
1940
1941     /* Since we have now marked a queue item as done
1942      * we can go ahead and increment currentQueueEncodeIndex 
1943      * so that if there is anything left in the queue we can
1944      * go ahead and move to the next item if we want to */
1945     currentQueueEncodeIndex++ ;
1946     [self writeToActivityLog: "incrementQueueItemDone currentQueueEncodeIndex is incremented to: %d", currentQueueEncodeIndex];
1947     int queueItems = [QueueFileArray count];
1948     /* If we still have more items in our queue, lets go to the next one */
1949     if (currentQueueEncodeIndex < queueItems)
1950     {
1951     [self writeToActivityLog: "incrementQueueItemDone currentQueueEncodeIndex is incremented to: %d", currentQueueEncodeIndex];
1952     [self performNewQueueScan:[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"SourcePath"] scanTitleNum:[[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"TitleNumber"]intValue]];
1953     }
1954     else
1955     {
1956         [self writeToActivityLog: "incrementQueueItemDone the %d item queue is complete", currentQueueEncodeIndex - 1];
1957     }
1958 }
1959
1960 /* Here we actually tell hb_scan to perform the source scan, using the path to source and title number*/
1961 - (void) performNewQueueScan:(NSString *) scanPath scanTitleNum: (int) scanTitleNum
1962 {
1963    //NSRunAlertPanel(@"Hello!", @"We are now performing a new queue scan!", @"OK", nil, nil);
1964
1965      /* use a bool to determine whether or not we can decrypt using vlc */
1966     BOOL cancelScanDecrypt = 0;
1967     /* set the bool so that showNewScan knows to apply the appropriate queue
1968     * settings as this is a queue rescan
1969     */
1970     applyQueueToScan = YES;
1971     NSString *path = scanPath;
1972     HBDVDDetector *detector = [HBDVDDetector detectorForPath:path];
1973
1974         /*On Screen Notification*/
1975         //int status;
1976         //status = NSRunAlertPanel(@"HandBrake is now loading up a new queue item...",@"Would You Like to wait until you add another encode?", @"Cancel", @"Okay", nil);
1977         //[NSApp requestUserAttention:NSCriticalRequest];
1978
1979     // Notify ChapterTitles that there's no title
1980     [fChapterTitlesDelegate resetWithTitle:nil];
1981     [fChapterTable reloadData];
1982
1983     //[self enableUI: NO];
1984
1985     if( [detector isVideoDVD] )
1986     {
1987         // The chosen path was actually on a DVD, so use the raw block
1988         // device path instead.
1989         path = [detector devicePath];
1990         [self writeToActivityLog: "trying to open a physical dvd at: %s", [scanPath UTF8String]];
1991
1992         /* lets check for vlc here to make sure we have a dylib available to use for decrypting */
1993         NSString *vlcPath = @"/Applications/VLC.app";
1994         NSFileManager * fileManager = [NSFileManager defaultManager];
1995             if ([fileManager fileExistsAtPath:vlcPath] == 0) 
1996             {
1997             /*vlc not found in /Applications so we set the bool to cancel scanning to 1 */
1998             cancelScanDecrypt = 1;
1999             [self writeToActivityLog: "VLC app not found for decrypting physical dvd"];
2000             int status;
2001             status = NSRunAlertPanel(@"HandBrake could not find VLC.",@"Please download and install VLC media player in your /Applications folder if you wish to read encrypted DVDs.", @"Get VLC", @"Cancel Scan", @"Attempt Scan Anyway");
2002             [NSApp requestUserAttention:NSCriticalRequest];
2003             
2004             if (status == NSAlertDefaultReturn)
2005             {
2006                 /* User chose to go download vlc (as they rightfully should) so we send them to the vlc site */
2007                 [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.videolan.org/"]];
2008             }
2009             else if (status == NSAlertAlternateReturn)
2010             {
2011             /* User chose to cancel the scan */
2012             [self writeToActivityLog: "cannot open physical dvd , scan cancelled"];
2013             }
2014             else
2015             {
2016             /* User chose to override our warning and scan the physical dvd anyway, at their own peril. on an encrypted dvd this produces massive log files and fails */
2017             cancelScanDecrypt = 0;
2018             [self writeToActivityLog: "user overrode vlc warning -trying to open physical dvd without decryption"];
2019             }
2020
2021         }
2022         else
2023         {
2024             /* VLC was found in /Applications so all is well, we can carry on using vlc's libdvdcss.dylib for decrypting if needed */
2025             [self writeToActivityLog: "VLC app found for decrypting physical dvd"];
2026         }
2027     }
2028
2029     if (cancelScanDecrypt == 0)
2030     {
2031         /* we actually pass the scan off to libhb here */
2032         /* If there is no title number passed to scan, we use "0"
2033          * which causes the default behavior of a full source scan
2034          */
2035         if (!scanTitleNum)
2036         {
2037             scanTitleNum = 0;
2038         }
2039         if (scanTitleNum > 0)
2040         {
2041             [self writeToActivityLog: "scanning specifically for title: %d", scanTitleNum];
2042         }
2043         [self writeToActivityLog: "performNewQueueScan currentQueueEncodeIndex is: %d", currentQueueEncodeIndex];
2044         hb_scan( fQueueEncodeLibhb, [path UTF8String], scanTitleNum );
2045     }
2046 }
2047
2048 /* This method was originally used to load up a new queue item in the gui and
2049  * then start processing it. However we now have modified -prepareJob and use a second
2050  * instance of libhb to do our actual encoding, therefor right now it is not required. 
2051  * Nonetheless I want to leave this in here
2052  * because basically its everything we need to be able to actually modify a pending queue
2053  * item in the gui and resave it. At least for now - dynaflash
2054  */
2055
2056 - (IBAction)applyQueueSettings:(id)sender
2057 {
2058     NSMutableDictionary * queueToApply = [QueueFileArray objectAtIndex:currentQueueEncodeIndex];
2059     hb_job_t * job = fTitle->job;
2060     
2061     /* Set title number and chapters */
2062     /* since the queue only scans a single title, we really don't need to pick a title */
2063     //[fSrcTitlePopUp selectItemAtIndex: [[queueToApply objectForKey:@"TitleNumber"] intValue] - 1];
2064     
2065     [fSrcChapterStartPopUp selectItemAtIndex: [[queueToApply objectForKey:@"ChapterStart"] intValue] - 1];
2066     [fSrcChapterEndPopUp selectItemAtIndex: [[queueToApply objectForKey:@"ChapterEnd"] intValue] - 1];
2067     
2068     /* File Format */
2069     [fDstFormatPopUp selectItemWithTitle:[queueToApply objectForKey:@"FileFormat"]];
2070     [self formatPopUpChanged:nil];
2071     
2072     /* Chapter Markers*/
2073     [fCreateChapterMarkers setState:[[queueToApply objectForKey:@"ChapterMarkers"] intValue]];
2074     /* Allow Mpeg4 64 bit formatting +4GB file sizes */
2075     [fDstMp4LargeFileCheck setState:[[queueToApply objectForKey:@"Mp4LargeFile"] intValue]];
2076     /* Mux mp4 with http optimization */
2077     [fDstMp4HttpOptFileCheck setState:[[queueToApply objectForKey:@"Mp4HttpOptimize"] intValue]];
2078     
2079     /* Video encoder */
2080     /* We set the advanced opt string here if applicable*/
2081     [fVidEncoderPopUp selectItemWithTitle:[queueToApply objectForKey:@"VideoEncoder"]];
2082     [fAdvancedOptions setOptions:[queueToApply objectForKey:@"x264Option"]];
2083     
2084     /* Lets run through the following functions to get variables set there */
2085     [self videoEncoderPopUpChanged:nil];
2086     /* Set the state of ipod compatible with Mp4iPodCompatible. Only for x264*/
2087     [fDstMp4iPodFileCheck setState:[[queueToApply objectForKey:@"Mp4iPodCompatible"] intValue]];
2088     [self calculateBitrate:nil];
2089     
2090     /* Video quality */
2091     [fVidQualityMatrix selectCellAtRow:[[queueToApply objectForKey:@"VideoQualityType"] intValue] column:0];
2092     
2093     [fVidTargetSizeField setStringValue:[queueToApply objectForKey:@"VideoTargetSize"]];
2094     [fVidBitrateField setStringValue:[queueToApply objectForKey:@"VideoAvgBitrate"]];
2095     [fVidQualitySlider setFloatValue:[[queueToApply objectForKey:@"VideoQualitySlider"] floatValue]];
2096     
2097     [self videoMatrixChanged:nil];
2098     
2099     /* Video framerate */
2100     /* For video preset video framerate, we want to make sure that Same as source does not conflict with the
2101      detected framerate in the fVidRatePopUp so we use index 0*/
2102     if ([[queueToApply objectForKey:@"VideoFramerate"] isEqualToString:@"Same as source"])
2103     {
2104         [fVidRatePopUp selectItemAtIndex: 0];
2105     }
2106     else
2107     {
2108         [fVidRatePopUp selectItemWithTitle:[queueToApply objectForKey:@"VideoFramerate"]];
2109     }
2110     
2111     /* GrayScale */
2112     [fVidGrayscaleCheck setState:[[queueToApply objectForKey:@"VideoGrayScale"] intValue]];
2113     
2114     /* 2 Pass Encoding */
2115     [fVidTwoPassCheck setState:[[queueToApply objectForKey:@"VideoTwoPass"] intValue]];
2116     [self twoPassCheckboxChanged:nil];
2117     /* Turbo 1st pass for 2 Pass Encoding */
2118     [fVidTurboPassCheck setState:[[queueToApply objectForKey:@"VideoTurboTwoPass"] intValue]];
2119     
2120     /*Audio*/
2121     if ([queueToApply objectForKey:@"Audio1Track"] > 0)
2122     {
2123         if ([fAudLang1PopUp indexOfSelectedItem] == 0)
2124         {
2125             [fAudLang1PopUp selectItemAtIndex: 1];
2126         }
2127         [self audioTrackPopUpChanged: fAudLang1PopUp];
2128         [fAudTrack1CodecPopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio1Encoder"]];
2129         [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
2130         [fAudTrack1MixPopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio1Mixdown"]];
2131         /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
2132          * mixdown*/
2133         if  ([fAudTrack1MixPopUp selectedItem] == nil)
2134         {
2135             [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
2136         }
2137         [fAudTrack1RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio1Samplerate"]];
2138         /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
2139         if (![[queueToApply objectForKey:@"Audio1Encoder"] isEqualToString:@"AC3 Passthru"])
2140         {
2141             [fAudTrack1BitratePopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio1Bitrate"]];
2142         }
2143         [fAudTrack1DrcSlider setFloatValue:[[queueToApply objectForKey:@"Audio1TrackDRCSlider"] floatValue]];
2144         [self audioDRCSliderChanged: fAudTrack1DrcSlider];
2145     }
2146     if ([queueToApply objectForKey:@"Audio2Track"] > 0)
2147     {
2148         if ([fAudLang2PopUp indexOfSelectedItem] == 0)
2149         {
2150             [fAudLang2PopUp selectItemAtIndex: 1];
2151         }
2152         [self audioTrackPopUpChanged: fAudLang2PopUp];
2153         [fAudTrack2CodecPopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio2Encoder"]];
2154         [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
2155         [fAudTrack2MixPopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio2Mixdown"]];
2156         /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
2157          * mixdown*/
2158         if  ([fAudTrack2MixPopUp selectedItem] == nil)
2159         {
2160             [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
2161         }
2162         [fAudTrack2RatePopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio2Samplerate"]];
2163         /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
2164         if (![[queueToApply objectForKey:@"Audio2Encoder"] isEqualToString:@"AC3 Passthru"])
2165         {
2166             [fAudTrack2BitratePopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio2Bitrate"]];
2167         }
2168         [fAudTrack2DrcSlider setFloatValue:[[queueToApply objectForKey:@"Audio2TrackDRCSlider"] floatValue]];
2169         [self audioDRCSliderChanged: fAudTrack2DrcSlider];
2170     }
2171     if ([queueToApply objectForKey:@"Audio3Track"] > 0)
2172     {
2173         if ([fAudLang3PopUp indexOfSelectedItem] == 0)
2174         {
2175             [fAudLang3PopUp selectItemAtIndex: 1];
2176         }
2177         [self audioTrackPopUpChanged: fAudLang3PopUp];
2178         [fAudTrack3CodecPopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio3Encoder"]];
2179         [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
2180         [fAudTrack3MixPopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio3Mixdown"]];
2181         /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
2182          * mixdown*/
2183         if  ([fAudTrack3MixPopUp selectedItem] == nil)
2184         {
2185             [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
2186         }
2187         [fAudTrack3RatePopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio3Samplerate"]];
2188         /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
2189         if (![[queueToApply objectForKey:@"Audio3Encoder"] isEqualToString: @"AC3 Passthru"])
2190         {
2191             [fAudTrack3BitratePopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio3Bitrate"]];
2192         }
2193         [fAudTrack3DrcSlider setFloatValue:[[queueToApply objectForKey:@"Audio3TrackDRCSlider"] floatValue]];
2194         [self audioDRCSliderChanged: fAudTrack3DrcSlider];
2195     }
2196     if ([queueToApply objectForKey:@"Audio4Track"] > 0)
2197     {
2198         if ([fAudLang4PopUp indexOfSelectedItem] == 0)
2199         {
2200             [fAudLang4PopUp selectItemAtIndex: 1];
2201         }
2202         [self audioTrackPopUpChanged: fAudLang4PopUp];
2203         [fAudTrack4CodecPopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio4Encoder"]];
2204         [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
2205         [fAudTrack4MixPopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio4Mixdown"]];
2206         /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
2207          * mixdown*/
2208         if  ([fAudTrack4MixPopUp selectedItem] == nil)
2209         {
2210             [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
2211         }
2212         [fAudTrack4RatePopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio4Samplerate"]];
2213         /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
2214         if (![[chosenPreset objectForKey:@"Audio4Encoder"] isEqualToString:@"AC3 Passthru"])
2215         {
2216             [fAudTrack4BitratePopUp selectItemWithTitle:[queueToApply objectForKey:@"Audio4Bitrate"]];
2217         }
2218         [fAudTrack4DrcSlider setFloatValue:[[queueToApply objectForKey:@"Audio4TrackDRCSlider"] floatValue]];
2219         [self audioDRCSliderChanged: fAudTrack4DrcSlider];
2220     }
2221     
2222     
2223     /*Subtitles*/
2224     [fSubPopUp selectItemWithTitle:[queueToApply objectForKey:@"Subtitles"]];
2225     /* Forced Subtitles */
2226     [fSubForcedCheck setState:[[queueToApply objectForKey:@"SubtitlesForced"] intValue]];
2227     
2228     /* Picture Settings */
2229     /* we check to make sure the presets width/height does not exceed the sources width/height */
2230     if (fTitle->width < [[queueToApply objectForKey:@"PictureWidth"]  intValue] || fTitle->height < [[queueToApply objectForKey:@"PictureHeight"]  intValue])
2231     {
2232         /* if so, then we use the sources height and width to avoid scaling up */
2233         job->width = fTitle->width;
2234         job->height = fTitle->height;
2235     }
2236     else // source width/height is >= the preset height/width
2237     {
2238         /* we can go ahead and use the presets values for height and width */
2239         job->width = [[queueToApply objectForKey:@"PictureWidth"]  intValue];
2240         job->height = [[queueToApply objectForKey:@"PictureHeight"]  intValue];
2241     }
2242     job->keep_ratio = [[queueToApply objectForKey:@"PictureKeepRatio"]  intValue];
2243     if (job->keep_ratio == 1)
2244     {
2245         hb_fix_aspect( job, HB_KEEP_WIDTH );
2246         if( job->height > fTitle->height )
2247         {
2248             job->height = fTitle->height;
2249             hb_fix_aspect( job, HB_KEEP_HEIGHT );
2250         }
2251     }
2252     job->pixel_ratio = [[queueToApply objectForKey:@"PicturePAR"]  intValue];
2253     
2254     
2255     /* If Cropping is set to custom, then recall all four crop values from
2256      when the preset was created and apply them */
2257     if ([[queueToApply objectForKey:@"PictureAutoCrop"]  intValue] == 0)
2258     {
2259         [fPictureController setAutoCrop:NO];
2260         
2261         /* Here we use the custom crop values saved at the time the preset was saved */
2262         job->crop[0] = [[queueToApply objectForKey:@"PictureTopCrop"]  intValue];
2263         job->crop[1] = [[queueToApply objectForKey:@"PictureBottomCrop"]  intValue];
2264         job->crop[2] = [[queueToApply objectForKey:@"PictureLeftCrop"]  intValue];
2265         job->crop[3] = [[queueToApply objectForKey:@"PictureRightCrop"]  intValue];
2266         
2267     }
2268     else /* if auto crop has been saved in preset, set to auto and use post scan auto crop */
2269     {
2270         [fPictureController setAutoCrop:YES];
2271         /* Here we use the auto crop values determined right after scan */
2272         job->crop[0] = AutoCropTop;
2273         job->crop[1] = AutoCropBottom;
2274         job->crop[2] = AutoCropLeft;
2275         job->crop[3] = AutoCropRight;
2276         
2277     }
2278     
2279     /* Filters */
2280     /* Deinterlace */
2281     [fPictureController setDeinterlace:[[queueToApply objectForKey:@"PictureDeinterlace"] intValue]];
2282     /* VFR */
2283     [fPictureController setVFR:[[queueToApply objectForKey:@"VFR"] intValue]];
2284     /* Detelecine */
2285     [fPictureController setDetelecine:[[queueToApply objectForKey:@"PictureDetelecine"] intValue]];
2286     /* Denoise */
2287     [fPictureController setDenoise:[[queueToApply objectForKey:@"PictureDenoise"] intValue]];
2288     /* Deblock */
2289     [fPictureController setDeblock:[[queueToApply objectForKey:@"PictureDeblock"] intValue]];
2290     /* Decomb */
2291     [fPictureController setDecomb:[[queueToApply objectForKey:@"PictureDecomb"] intValue]];
2292     
2293     [self calculatePictureSizing:nil];
2294     
2295     
2296     /* somehow we need to figure out a way to tie the queue item to a preset if it used one */
2297     //[queueFileJob setObject:[fPresetSelectedDisplay stringValue] forKey:@"PresetName"];
2298     //    [queueFileJob setObject:[NSNumber numberWithInt:[fPresetsOutlineView selectedRow]] forKey:@"PresetIndexNum"];
2299     if ([queueToApply objectForKey:@"PresetIndexNum"]) // This item used a preset so insert that info
2300         {
2301                 /* Deselect the currently selected Preset if there is one*/
2302         //[fPresetsOutlineView selectRowIndexes:[NSIndexSet indexSetWithIndex:[[queueToApply objectForKey:@"PresetIndexNum"] intValue]] byExtendingSelection:NO];
2303         //[self selectPreset:nil];
2304                 
2305         //[fPresetsOutlineView selectRow:[[queueToApply objectForKey:@"PresetIndexNum"] intValue]];
2306                 /* Change UI to show "Custom" settings are being used */
2307                 //[fPresetSelectedDisplay setStringValue: [[queueToApply objectForKey:@"PresetName"] stringValue]];
2308         
2309                 curUserPresetChosenNum = nil;
2310         }
2311     else
2312     {
2313         /* Deselect the currently selected Preset if there is one*/
2314                 [fPresetsOutlineView deselectRow:[fPresetsOutlineView selectedRow]];
2315                 /* Change UI to show "Custom" settings are being used */
2316                 [fPresetSelectedDisplay setStringValue: @"Custom"];
2317         
2318                 //curUserPresetChosenNum = nil;
2319     }
2320     
2321     /* We need to set this bool back to NO, in case the user wants to do a scan */
2322     //applyQueueToScan = NO;
2323     
2324     /* so now we go ahead and process the new settings */
2325     [self processNewQueueEncode];
2326 }
2327
2328
2329
2330 /* This assumes that we have re-scanned and loaded up a new queue item to send to libhb as fQueueEncodeLibhb */
2331 - (void) processNewQueueEncode
2332 {
2333     hb_list_t  * list  = hb_get_titles( fQueueEncodeLibhb );
2334     hb_title_t * title = (hb_title_t *) hb_list_item( list,0 ); // is always zero since now its a single title scan
2335     hb_job_t * job = title->job;
2336     
2337     if( !hb_list_count( list ) )
2338     {
2339         [self writeToActivityLog: "processNewQueueEncode WARNING nothing found in the title list"];
2340     }
2341     else
2342     {
2343         [self writeToActivityLog: "processNewQueueEncode title list is: %d", hb_list_count( list )];
2344     }
2345     
2346     NSMutableDictionary * queueToApply = [QueueFileArray objectAtIndex:currentQueueEncodeIndex];
2347     [self writeToActivityLog: "processNewQueueEncode currentQueueEncodeIndex is: %d", currentQueueEncodeIndex];
2348     [self writeToActivityLog: "processNewQueueEncode number of passes expected is: %d", ([[queueToApply objectForKey:@"VideoTwoPass"] intValue] + 1)];
2349     job->file = [[queueToApply objectForKey:@"DestinationPath"] UTF8String];
2350     [self writeToActivityLog: "processNewQueueEncode sending to prepareJob"];
2351     [self prepareJob];
2352     [self writeToActivityLog: "processNewQueueEncode back from prepareJob"];
2353     if( [[queueToApply objectForKey:@"SubtitlesForced"] intValue] == 1 )
2354         job->subtitle_force = 1;
2355     else
2356         job->subtitle_force = 0;
2357     
2358     /*
2359      * subtitle of -1 is a scan
2360      */
2361     if( job->subtitle == -1 )
2362     {
2363         char *x264opts_tmp;
2364         
2365         /*
2366          * When subtitle scan is enabled do a fast pre-scan job
2367          * which will determine which subtitles to enable, if any.
2368          */
2369         job->pass = -1;
2370         x264opts_tmp = job->x264opts;
2371         job->subtitle = -1;
2372         
2373         job->x264opts = NULL;
2374         
2375         job->indepth_scan = 1;  
2376         
2377         job->select_subtitle = (hb_subtitle_t**)malloc(sizeof(hb_subtitle_t*));
2378         *(job->select_subtitle) = NULL;
2379         
2380         /*
2381          * Add the pre-scan job
2382          */
2383         hb_add( fQueueEncodeLibhb, job );
2384         job->x264opts = x264opts_tmp;
2385     }
2386     else
2387         job->select_subtitle = NULL;
2388     
2389     /* No subtitle were selected, so reset the subtitle to -1 (which before
2390      * this point meant we were scanning
2391      */
2392     if( job->subtitle == -2 )
2393         job->subtitle = -1;
2394     
2395     if( [[queueToApply objectForKey:@"VideoTwoPass"] intValue] == 1 )
2396     {
2397         hb_subtitle_t **subtitle_tmp = job->select_subtitle;
2398         job->indepth_scan = 0;
2399         
2400         /*
2401          * Do not autoselect subtitles on the first pass of a two pass
2402          */
2403         job->select_subtitle = NULL;
2404         
2405         job->pass = 1;
2406         
2407         hb_add( fQueueEncodeLibhb, job );
2408         
2409         job->pass = 2;
2410         
2411         job->x264opts = (char *)calloc(1024, 1); /* Fixme, this just leaks */  
2412         strcpy(job->x264opts, [[queueToApply objectForKey:@"x264Option"] UTF8String]);
2413         
2414         job->select_subtitle = subtitle_tmp;
2415         
2416         hb_add( fQueueEncodeLibhb, job );
2417         
2418     }
2419     else
2420     {
2421         job->indepth_scan = 0;
2422         job->pass = 0;
2423         
2424         hb_add( fQueueEncodeLibhb, job );
2425     }
2426         
2427     NSString *destinationDirectory = [[queueToApply objectForKey:@"DestinationPath"] stringByDeletingLastPathComponent];
2428         [[NSUserDefaults standardUserDefaults] setObject:destinationDirectory forKey:@"LastDestinationDirectory"];
2429         /* Lets mark our new encode as 1 or "Encoding" */
2430     [queueToApply setObject:[NSNumber numberWithInt:1] forKey:@"Status"];
2431     [self saveQueueFileItem];
2432     /* We should be all setup so let 'er rip */   
2433     [self doRip];
2434 }
2435
2436
2437 #pragma mark -
2438 #pragma mark Job Handling
2439
2440
2441 - (void) prepareJob
2442 {
2443     
2444     NSMutableDictionary * queueToApply = [QueueFileArray objectAtIndex:currentQueueEncodeIndex];
2445     hb_list_t  * list  = hb_get_titles( fQueueEncodeLibhb );
2446     hb_title_t * title = (hb_title_t *) hb_list_item( list,0 ); // is always zero since now its a single title scan
2447     hb_job_t * job = title->job;
2448     hb_audio_config_t * audio;
2449     [self writeToActivityLog: "prepareJob reached"];
2450     /* Chapter selection */
2451     job->chapter_start = [[queueToApply objectForKey:@"JobChapterStart"] intValue];
2452     job->chapter_end   = [[queueToApply objectForKey:@"JobChapterEnd"] intValue];
2453         
2454     /* Format (Muxer) and Video Encoder */
2455     job->mux = [[queueToApply objectForKey:@"JobFileFormatMux"] intValue];
2456     job->vcodec = [[queueToApply objectForKey:@"JobVideoEncoderVcodec"] intValue];
2457     
2458     
2459     /* If mpeg-4, then set mpeg-4 specific options like chapters and > 4gb file sizes */
2460         //if( [fDstFormatPopUp indexOfSelectedItem] == 0 )
2461         //{
2462     /* We set the largeFileSize (64 bit formatting) variable here to allow for > 4gb files based on the format being
2463      mpeg4 and the checkbox being checked 
2464      *Note: this will break compatibility with some target devices like iPod, etc.!!!!*/
2465     if( [[queueToApply objectForKey:@"Mp4LargeFile"] intValue] == 1)
2466     {
2467         job->largeFileSize = 1;
2468     }
2469     else
2470     {
2471         job->largeFileSize = 0;
2472     }
2473     /* We set http optimized mp4 here */
2474     if( [[queueToApply objectForKey:@"Mp4HttpOptimize"] intValue] == 1 )
2475     {
2476         job->mp4_optimize = 1;
2477     }
2478     else
2479     {
2480         job->mp4_optimize = 0;
2481     }
2482     //}
2483         
2484     /* We set the chapter marker extraction here based on the format being
2485      mpeg4 or mkv and the checkbox being checked */
2486     if ([[queueToApply objectForKey:@"ChapterMarkers"] intValue] == 1)
2487     {
2488         job->chapter_markers = 1;
2489     }
2490     else
2491     {
2492         job->chapter_markers = 0;
2493     }
2494     
2495         
2496     if( job->vcodec & HB_VCODEC_X264 )
2497     {
2498                 if ([[queueToApply objectForKey:@"Mp4iPodCompatible"] intValue] == 1)
2499             {
2500             job->ipod_atom = 1;
2501                 }
2502         else
2503         {
2504             job->ipod_atom = 0;
2505         }
2506                 
2507                 /* Set this flag to switch from Constant Quantizer(default) to Constant Rate Factor Thanks jbrjake
2508          Currently only used with Constant Quality setting*/
2509                 if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultCrf"] > 0 && [[queueToApply objectForKey:@"VideoQualityType"] intValue] == 2)
2510                 {
2511                 job->crf = 1;
2512                 }
2513                 /* Below Sends x264 options to the core library if x264 is selected*/
2514                 /* Lets use this as per Nyx, Thanks Nyx!*/
2515                 job->x264opts = (char *)calloc(1024, 1); /* Fixme, this just leaks */
2516                 /* Turbo first pass if two pass and Turbo First pass is selected */
2517                 if( [[queueToApply objectForKey:@"VideoTwoPass"] intValue] == 1 && [[queueToApply objectForKey:@"VideoTurboTwoPass"] intValue] == 1 )
2518                 {
2519                         /* pass the "Turbo" string to be appended to the existing x264 opts string into a variable for the first pass */
2520                         NSString *firstPassOptStringTurbo = @":ref=1:subme=1:me=dia:analyse=none:trellis=0:no-fast-pskip=0:8x8dct=0:weightb=0";
2521                         /* append the "Turbo" string variable to the existing opts string.
2522              Note: the "Turbo" string must be appended, not prepended to work properly*/
2523                         NSString *firstPassOptStringCombined = [[[queueToApply objectForKey:@"x264Option"] stringValue] stringByAppendingString:firstPassOptStringTurbo];
2524                         strcpy(job->x264opts, [firstPassOptStringCombined UTF8String]);
2525                 }
2526                 else
2527                 {
2528                         strcpy(job->x264opts, [[queueToApply objectForKey:@"x264Option"] UTF8String]);
2529                 }
2530         
2531     }
2532     
2533     /* Picture Size Settings */
2534     job->width = [[queueToApply objectForKey:@"PictureWidth"]  intValue];
2535     job->height = [[queueToApply objectForKey:@"PictureHeight"]  intValue];
2536     
2537     job->keep_ratio = [[queueToApply objectForKey:@"PictureKeepRatio"]  intValue];
2538     job->pixel_ratio = [[queueToApply objectForKey:@"PicturePAR"]  intValue];
2539     
2540     
2541     /* Here we use the crop values saved at the time the preset was saved */
2542     job->crop[0] = [[queueToApply objectForKey:@"PictureTopCrop"]  intValue];
2543     job->crop[1] = [[queueToApply objectForKey:@"PictureBottomCrop"]  intValue];
2544     job->crop[2] = [[queueToApply objectForKey:@"PictureLeftCrop"]  intValue];
2545     job->crop[3] = [[queueToApply objectForKey:@"PictureRightCrop"]  intValue];
2546     
2547     /* Video settings */
2548     if( [[queueToApply objectForKey:@"JobIndexVideoFramerate"] intValue] > 0 )
2549     {
2550         job->vrate      = 27000000;
2551         job->vrate_base = hb_video_rates[[[queueToApply objectForKey:@"JobIndexVideoFramerate"] intValue]-1].rate;
2552         /* We are not same as source so we set job->cfr to 1 
2553          * to enable constant frame rate since user has specified
2554          * a specific framerate*/
2555         job->cfr = 1;
2556     }
2557     else
2558     {
2559         job->vrate      = [[queueToApply objectForKey:@"JobVrate"] intValue];
2560         job->vrate_base = [[queueToApply objectForKey:@"JobVrateBase"] intValue];
2561         /* We are same as source so we set job->cfr to 0 
2562          * to enable true same as source framerate */
2563         job->cfr = 0;
2564     }
2565     
2566     if ( [[queueToApply objectForKey:@"VideoQualityType"] intValue] == 0 )
2567     {
2568         /* Target size.
2569          Bitrate should already have been calculated and displayed
2570          in fVidBitrateField, so let's just use it */
2571     }
2572     if ( [[queueToApply objectForKey:@"VideoQualityType"] intValue] == 1 )
2573     {
2574         job->vquality = -1.0;
2575         job->vbitrate = [[queueToApply objectForKey:@"VideoAvgBitrate"] intValue];
2576     }
2577     if ( [[queueToApply objectForKey:@"VideoQualityType"] intValue] == 2 )
2578     {
2579         job->vquality = [[queueToApply objectForKey:@"VideoQualitySlider"] floatValue];
2580         job->vbitrate = 0;
2581         
2582     }
2583     
2584     job->grayscale = [[queueToApply objectForKey:@"VideoGrayScale"] intValue];
2585     /* Subtitle settings */
2586     job->subtitle = [[queueToApply objectForKey:@"JobSubtitlesIndex"] intValue] - 2;
2587     
2588     /* Audio tracks and mixdowns */
2589     /* Lets make sure there arent any erroneous audio tracks in the job list, so lets make sure its empty*/
2590     int audiotrack_count = hb_list_count(job->list_audio);
2591     for( int i = 0; i < audiotrack_count;i++)
2592     {
2593         hb_audio_t * temp_audio = (hb_audio_t*) hb_list_item( job->list_audio, 0 );
2594         hb_list_rem(job->list_audio, temp_audio);
2595     }
2596     /* Now lets add our new tracks to the audio list here */
2597     if ([[queueToApply objectForKey:@"Audio1Track"] intValue] > 0)
2598     {
2599         audio = (hb_audio_config_t *) calloc(1, sizeof(*audio));
2600         hb_audio_config_init(audio);
2601         audio->in.track = [[queueToApply objectForKey:@"Audio1Track"] intValue] - 1;
2602         /* We go ahead and assign values to our audio->out.<properties> */
2603         audio->out.track = [[queueToApply objectForKey:@"Audio1Track"] intValue] - 1;
2604         audio->out.codec = [[queueToApply objectForKey:@"JobAudio1Encoder"] intValue];
2605         audio->out.mixdown = [[queueToApply objectForKey:@"JobAudio1Mixdown"] intValue];
2606         audio->out.bitrate = [[queueToApply objectForKey:@"JobAudio1Bitrate"] intValue];
2607         audio->out.samplerate = [[queueToApply objectForKey:@"JobAudio1Samplerate"] intValue];
2608         audio->out.dynamic_range_compression = [[queueToApply objectForKey:@"Audio1TrackDRCSlider"] floatValue];
2609         
2610         hb_audio_add( job, audio );
2611         free(audio);
2612     }  
2613     if ([[queueToApply objectForKey:@"Audio2Track"] intValue] > 0)
2614     {
2615         
2616         audio = (hb_audio_config_t *) calloc(1, sizeof(*audio));
2617         hb_audio_config_init(audio);
2618         audio->in.track = [[queueToApply objectForKey:@"Audio2Track"] intValue] - 1;
2619         [self writeToActivityLog: "prepareJob audiotrack 2 is: %d", audio->in.track];
2620         /* We go ahead and assign values to our audio->out.<properties> */
2621         audio->out.track = [[queueToApply objectForKey:@"Audio2Track"] intValue] - 1;
2622         audio->out.codec = [[queueToApply objectForKey:@"JobAudio2Encoder"] intValue];
2623         audio->out.mixdown = [[queueToApply objectForKey:@"JobAudio2Mixdown"] intValue];
2624         audio->out.bitrate = [[queueToApply objectForKey:@"JobAudio2Bitrate"] intValue];
2625         audio->out.samplerate = [[queueToApply objectForKey:@"JobAudio2Samplerate"] intValue];
2626         audio->out.dynamic_range_compression = [[queueToApply objectForKey:@"Audio2TrackDRCSlider"] floatValue];
2627         
2628         hb_audio_add( job, audio );
2629         free(audio);
2630     }
2631     
2632     if ([[queueToApply objectForKey:@"Audio3Track"] intValue] > 0)
2633     {
2634         audio = (hb_audio_config_t *) calloc(1, sizeof(*audio));
2635         hb_audio_config_init(audio);
2636         audio->in.track = [[queueToApply objectForKey:@"Audio3Track"] intValue] - 1;
2637         /* We go ahead and assign values to our audio->out.<properties> */
2638         audio->out.track = [[queueToApply objectForKey:@"Audio3Track"] intValue] - 1;
2639         audio->out.codec = [[queueToApply objectForKey:@"JobAudio3Encoder"] intValue];
2640         audio->out.mixdown = [[queueToApply objectForKey:@"JobAudio3Mixdown"] intValue];
2641         audio->out.bitrate = [[queueToApply objectForKey:@"JobAudio3Bitrate"] intValue];
2642         audio->out.samplerate = [[queueToApply objectForKey:@"JobAudio3Samplerate"] intValue];
2643         audio->out.dynamic_range_compression = [[queueToApply objectForKey:@"Audio3TrackDRCSlider"] floatValue];
2644         
2645         hb_audio_add( job, audio );
2646         free(audio);        
2647     }
2648     
2649     if ([[queueToApply objectForKey:@"Audio4Track"] intValue] > 0)
2650     {
2651         audio = (hb_audio_config_t *) calloc(1, sizeof(*audio));
2652         hb_audio_config_init(audio);
2653         audio->in.track = [[queueToApply objectForKey:@"Audio4Track"] intValue] - 1;
2654         /* We go ahead and assign values to our audio->out.<properties> */
2655         audio->out.track = [[queueToApply objectForKey:@"Audio4Track"] intValue] - 1;
2656         audio->out.codec = [[queueToApply objectForKey:@"JobAudio4Encoder"] intValue];
2657         audio->out.mixdown = [[queueToApply objectForKey:@"JobAudio4Mixdown"] intValue];
2658         audio->out.bitrate = [[queueToApply objectForKey:@"JobAudio4Bitrate"] intValue];
2659         audio->out.samplerate = [[queueToApply objectForKey:@"JobAudio4Samplerate"] intValue];
2660         audio->out.dynamic_range_compression = [[queueToApply objectForKey:@"Audio3TrackDRCSlider"] floatValue];
2661         
2662         hb_audio_add( job, audio );
2663         free(audio);
2664     }
2665     
2666     /* set vfr according to the Picture Window */
2667     if ([[queueToApply objectForKey:@"VFR"] intValue] == 1)
2668     {
2669         job->vfr = 1;
2670     }
2671     else
2672     {
2673         job->vfr = 0;
2674     }
2675     
2676     /* Filters */ 
2677     job->filters = hb_list_init();
2678     
2679     /* Now lets call the filters if applicable.
2680      * The order of the filters is critical
2681      */
2682     /* Detelecine */
2683     if ([[queueToApply objectForKey:@"PictureDetelecine"] intValue] == 1)
2684     {
2685         hb_list_add( job->filters, &hb_filter_detelecine );
2686     }
2687     
2688     /* Decomb */
2689     if ([[queueToApply objectForKey:@"PictureDecomb"] intValue] == 1)
2690     {
2691         /* Run old deinterlacer fd by default */
2692         hb_filter_decomb.settings = (char *) [[queueToApply objectForKey:@"JobPictureDecomb"] UTF8String];
2693         hb_list_add( job->filters, &hb_filter_decomb );
2694     }
2695     
2696     /* Deinterlace */
2697     if ([[queueToApply objectForKey:@"PictureDeinterlace"] intValue] == 1)
2698     {
2699         /* Run old deinterlacer fd by default */
2700         hb_filter_deinterlace.settings = "-1"; 
2701         hb_list_add( job->filters, &hb_filter_deinterlace );
2702     }
2703     else if ([[queueToApply objectForKey:@"PictureDeinterlace"] intValue] == 2)
2704     {
2705         /* Yadif mode 0 (without spatial deinterlacing.) */
2706         hb_filter_deinterlace.settings = "2"; 
2707         hb_list_add( job->filters, &hb_filter_deinterlace );            
2708     }
2709     else if ([[queueToApply objectForKey:@"PictureDeinterlace"] intValue] == 3)
2710     {
2711         /* Yadif (with spatial deinterlacing) */
2712         hb_filter_deinterlace.settings = "0"; 
2713         hb_list_add( job->filters, &hb_filter_deinterlace );            
2714     }
2715         
2716     /* Denoise */
2717         if ([[queueToApply objectForKey:@"PictureDenoise"] intValue] == 1) // Weak in popup
2718         {
2719                 hb_filter_denoise.settings = "2:1:2:3"; 
2720         hb_list_add( job->filters, &hb_filter_denoise );        
2721         }
2722         else if ([[queueToApply objectForKey:@"PictureDenoise"] intValue] == 2) // Medium in popup
2723         {
2724                 hb_filter_denoise.settings = "3:2:2:3"; 
2725         hb_list_add( job->filters, &hb_filter_denoise );        
2726         }
2727         else if ([[queueToApply objectForKey:@"PictureDenoise"] intValue] == 3) // Strong in popup
2728         {
2729                 hb_filter_denoise.settings = "7:7:5:5"; 
2730         hb_list_add( job->filters, &hb_filter_denoise );        
2731         }
2732     
2733     /* Deblock  (uses pp7 default) */
2734     if ([[queueToApply objectForKey:@"PictureDeblock"] intValue] == 1)
2735     {
2736         hb_list_add( job->filters, &hb_filter_deblock );
2737     }
2738 [self writeToActivityLog: "prepareJob exiting"];    
2739 }
2740
2741
2742
2743 /* addToQueue: puts up an alert before ultimately calling doAddToQueue
2744 */
2745 - (IBAction) addToQueue: (id) sender
2746 {
2747         /* We get the destination directory from the destination field here */
2748         NSString *destinationDirectory = [[fDstFile2Field stringValue] stringByDeletingLastPathComponent];
2749         /* We check for a valid destination here */
2750         if ([[NSFileManager defaultManager] fileExistsAtPath:destinationDirectory] == 0) 
2751         {
2752                 NSRunAlertPanel(@"Warning!", @"This is not a valid destination directory!", @"OK", nil, nil);
2753         return;
2754         }
2755
2756     /* We check for duplicate name here */
2757         if( [[NSFileManager defaultManager] fileExistsAtPath:
2758             [fDstFile2Field stringValue]] )
2759     {
2760         NSBeginCriticalAlertSheet( NSLocalizedString( @"File already exists", @"" ),
2761             NSLocalizedString( @"Cancel", @"" ), NSLocalizedString( @"Overwrite", @"" ), nil, fWindow, self,
2762             @selector( overwriteAddToQueueAlertDone:returnCode:contextInfo: ),
2763             NULL, NULL, [NSString stringWithFormat:
2764             NSLocalizedString( @"Do you want to overwrite %@?", @"" ),
2765             [fDstFile2Field stringValue]] );
2766         // overwriteAddToQueueAlertDone: will be called when the alert is dismissed.
2767     }
2768     else
2769     {
2770         [self doAddToQueue];
2771     }
2772 }
2773
2774 /* overwriteAddToQueueAlertDone: called from the alert posted by addToQueue that asks
2775    the user if they want to overwrite an exiting movie file.
2776 */
2777 - (void) overwriteAddToQueueAlertDone: (NSWindow *) sheet
2778     returnCode: (int) returnCode contextInfo: (void *) contextInfo
2779 {
2780     if( returnCode == NSAlertAlternateReturn )
2781         [self doAddToQueue];
2782 }
2783
2784 - (void) doAddToQueue
2785 {
2786     [self addQueueFileItem ];
2787 }
2788
2789
2790
2791 /* Rip: puts up an alert before ultimately calling doRip
2792 */
2793 - (IBAction) Rip: (id) sender
2794 {
2795     /* Rip or Cancel ? */
2796     hb_state_t s;
2797     hb_get_state2( fQueueEncodeLibhb, &s );
2798
2799     if(s.state == HB_STATE_WORKING || s.state == HB_STATE_PAUSED)
2800         {
2801         [self Cancel: sender];
2802         return;
2803     }
2804     
2805     // If there are jobs in the queue, then this is a rip the queue
2806     
2807     if ([QueueFileArray count] > 0)
2808     {
2809        /* here lets start the queue with the first item */
2810       [self performNewQueueScan:[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"SourcePath"] scanTitleNum:[[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"TitleNumber"]intValue]]; 
2811       
2812         return;
2813     }
2814
2815     // Before adding jobs to the queue, check for a valid destination.
2816
2817     NSString *destinationDirectory = [[fDstFile2Field stringValue] stringByDeletingLastPathComponent];
2818     if ([[NSFileManager defaultManager] fileExistsAtPath:destinationDirectory] == 0) 
2819     {
2820         NSRunAlertPanel(@"Warning!", @"This is not a valid destination directory!", @"OK", nil, nil);
2821         return;
2822     }
2823
2824     /* We check for duplicate name here */
2825     if( [[NSFileManager defaultManager] fileExistsAtPath:[fDstFile2Field stringValue]] )
2826     {
2827         NSBeginCriticalAlertSheet( NSLocalizedString( @"File already exists", @"" ),
2828             NSLocalizedString( @"Cancel", "" ), NSLocalizedString( @"Overwrite", @"" ), nil, fWindow, self,
2829             @selector( overWriteAlertDone:returnCode:contextInfo: ),
2830             NULL, NULL, [NSString stringWithFormat:
2831             NSLocalizedString( @"Do you want to overwrite %@?", @"" ),
2832             [fDstFile2Field stringValue]] );
2833
2834         // overWriteAlertDone: will be called when the alert is dismissed. It will call doRip.
2835     }
2836     else
2837     {
2838         /* if there are no jobs in the queue, then add this one to the queue and rip
2839         otherwise, just rip the queue */
2840         if([QueueFileArray count] == 0)
2841         {
2842             [self doAddToQueue];
2843         }
2844
2845         NSString *destinationDirectory = [[fDstFile2Field stringValue] stringByDeletingLastPathComponent];
2846         [[NSUserDefaults standardUserDefaults] setObject:destinationDirectory forKey:@"LastDestinationDirectory"];
2847         /* go right to processing the new queue encode */
2848         [self performNewQueueScan:[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"SourcePath"] scanTitleNum:[[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"TitleNumber"]intValue]]; 
2849         
2850     }
2851 }
2852
2853 /* overWriteAlertDone: called from the alert posted by Rip: that asks the user if they
2854    want to overwrite an exiting movie file.
2855 */
2856 - (void) overWriteAlertDone: (NSWindow *) sheet
2857     returnCode: (int) returnCode contextInfo: (void *) contextInfo
2858 {
2859     if( returnCode == NSAlertAlternateReturn )
2860     {
2861         /* if there are no jobs in the queue, then add this one to the queue and rip 
2862         otherwise, just rip the queue */
2863         if( [QueueFileArray count] == 0 )
2864         {
2865             [self doAddToQueue];
2866         }
2867
2868         NSString *destinationDirectory = [[fDstFile2Field stringValue] stringByDeletingLastPathComponent];
2869         [[NSUserDefaults standardUserDefaults] setObject:destinationDirectory forKey:@"LastDestinationDirectory"];
2870         [self performNewQueueScan:[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"SourcePath"] scanTitleNum:[[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"TitleNumber"]intValue]]; 
2871       
2872     }
2873 }
2874
2875 - (void) remindUserOfSleepOrShutdown
2876 {
2877        if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"AlertWhenDone"] isEqualToString: @"Put Computer To Sleep"])
2878        {
2879                /*Warn that computer will sleep after encoding*/
2880                int reminduser;
2881                NSBeep();
2882                reminduser = NSRunAlertPanel(@"The computer will sleep after encoding is done.",@"You have selected to sleep the computer after encoding. To turn off sleeping, go to the HandBrake preferences.", @"OK", @"Preferences...", nil);
2883                [NSApp requestUserAttention:NSCriticalRequest];
2884                if ( reminduser == NSAlertAlternateReturn )
2885                {
2886                        [self showPreferencesWindow:nil];
2887                }
2888        }
2889        else if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"AlertWhenDone"] isEqualToString: @"Shut Down Computer"])
2890        {
2891                /*Warn that computer will shut down after encoding*/
2892                int reminduser;
2893                NSBeep();
2894                reminduser = NSRunAlertPanel(@"The computer will shut down after encoding is done.",@"You have selected to shut down the computer after encoding. To turn off shut down, go to the HandBrake preferences.", @"OK", @"Preferences...", nil);
2895                [NSApp requestUserAttention:NSCriticalRequest];
2896                if ( reminduser == NSAlertAlternateReturn )
2897                {
2898                        [self showPreferencesWindow:nil];
2899                }
2900        }
2901
2902 }
2903
2904
2905 - (void) doRip
2906 {
2907     /* Let libhb do the job */
2908     hb_start( fQueueEncodeLibhb );
2909     /*set the fEncodeState State */
2910         fEncodeState = 1;
2911 }
2912
2913
2914 //------------------------------------------------------------------------------------
2915 // Cancels and deletes the current job and stops libhb from processing the remaining
2916 // encodes.
2917 //------------------------------------------------------------------------------------
2918 - (void) doCancelCurrentJob
2919 {
2920     // Stop the current job. hb_stop will only cancel the current pass and then set
2921     // its state to HB_STATE_WORKDONE. It also does this asynchronously. So when we
2922     // see the state has changed to HB_STATE_WORKDONE (in updateUI), we'll delete the
2923     // remaining passes of the job and then start the queue back up if there are any
2924     // remaining jobs.
2925      
2926     
2927     hb_stop( fQueueEncodeLibhb );
2928     fEncodeState = 2;   // don't alert at end of processing since this was a cancel
2929     
2930     // now that we've stopped the currently encoding job, lets mark it as cancelled
2931     [[QueueFileArray objectAtIndex:currentQueueEncodeIndex] setObject:[NSNumber numberWithInt:3] forKey:@"Status"];
2932     // and as always, save it in the queue .plist...
2933     /* We save all of the Queue data here */
2934     [self saveQueueFileItem];
2935     // so now lets move to 
2936     currentQueueEncodeIndex++ ;
2937     // ... and see if there are more items left in our queue
2938     int queueItems = [QueueFileArray count];
2939     /* If we still have more items in our queue, lets go to the next one */
2940     if (currentQueueEncodeIndex < queueItems)
2941     {
2942     [self writeToActivityLog: "doCancelCurrentJob currentQueueEncodeIndex is incremented to: %d", currentQueueEncodeIndex];
2943     [self writeToActivityLog: "doCancelCurrentJob moving to the next job"];
2944     
2945     [self performNewQueueScan:[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"SourcePath"] scanTitleNum:[[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"TitleNumber"]intValue]];
2946     }
2947     else
2948     {
2949         [self writeToActivityLog: "doCancelCurrentJob the item queue is complete"];
2950     }
2951
2952 }
2953
2954 //------------------------------------------------------------------------------------
2955 // Displays an alert asking user if the want to cancel encoding of current job.
2956 // Cancel: returns immediately after posting the alert. Later, when the user
2957 // acknowledges the alert, doCancelCurrentJob is called.
2958 //------------------------------------------------------------------------------------
2959 - (IBAction)Cancel: (id)sender
2960 {
2961     if (!fQueueController) return;
2962     
2963   
2964     NSString * alertTitle = [NSString stringWithFormat:NSLocalizedString(@"Stop encoding ?", nil)];
2965    
2966     // Which window to attach the sheet to?
2967     NSWindow * docWindow;
2968     if ([sender respondsToSelector: @selector(window)])
2969         docWindow = [sender window];
2970     else
2971         docWindow = fWindow;
2972         
2973     NSBeginCriticalAlertSheet(
2974             alertTitle,
2975             NSLocalizedString(@"Keep Encoding", nil),
2976             nil,
2977             NSLocalizedString(@"Stop Encoding", nil),
2978             docWindow, self,
2979             nil, @selector(didDimissCancelCurrentJob:returnCode:contextInfo:), nil,
2980             NSLocalizedString(@"Your movie will be lost if you don't continue encoding.", nil));
2981     
2982     // didDimissCancelCurrentJob:returnCode:contextInfo: will be called when the dialog is dismissed
2983 }
2984
2985 - (void) didDimissCancelCurrentJob: (NSWindow *)sheet returnCode: (int)returnCode contextInfo: (void *)contextInfo
2986 {
2987     if (returnCode == NSAlertOtherReturn)
2988         [self doCancelCurrentJob];  // <- this also stops libhb
2989 }
2990
2991 - (IBAction) Pause: (id) sender
2992 {
2993     hb_state_t s;
2994     hb_get_state2( fHandle, &s );
2995
2996     if( s.state == HB_STATE_PAUSED )
2997     {
2998         hb_resume( fHandle );
2999     }
3000     else
3001     {
3002         hb_pause( fHandle );
3003     }
3004 }
3005
3006 #pragma mark -
3007 #pragma mark GUI Controls Changed Methods
3008
3009 - (IBAction) titlePopUpChanged: (id) sender
3010 {
3011     hb_list_t  * list  = hb_get_titles( fHandle );
3012     hb_title_t * title = (hb_title_t*)
3013         hb_list_item( list, [fSrcTitlePopUp indexOfSelectedItem] );
3014
3015     /* If Auto Naming is on. We create an output filename of dvd name - title number */
3016     if( [[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultAutoNaming"] > 0 && ( hb_list_count( list ) > 1 ) )
3017         {
3018                 [fDstFile2Field setStringValue: [NSString stringWithFormat:
3019                         @"%@/%@-%d.%@", [[fDstFile2Field stringValue] stringByDeletingLastPathComponent],
3020                         [browsedSourceDisplayName stringByDeletingPathExtension],
3021             title->index,
3022                         [[fDstFile2Field stringValue] pathExtension]]]; 
3023         }
3024
3025     /* Update chapter popups */
3026     [fSrcChapterStartPopUp removeAllItems];
3027     [fSrcChapterEndPopUp   removeAllItems];
3028     for( int i = 0; i < hb_list_count( title->list_chapter ); i++ )
3029     {
3030         [fSrcChapterStartPopUp addItemWithTitle: [NSString
3031             stringWithFormat: @"%d", i + 1]];
3032         [fSrcChapterEndPopUp addItemWithTitle: [NSString
3033             stringWithFormat: @"%d", i + 1]];
3034     }
3035
3036     [fSrcChapterStartPopUp selectItemAtIndex: 0];
3037     [fSrcChapterEndPopUp   selectItemAtIndex:
3038         hb_list_count( title->list_chapter ) - 1];
3039     [self chapterPopUpChanged:nil];
3040
3041     /* Start Get and set the initial pic size for display */
3042         hb_job_t * job = title->job;
3043         fTitle = title;
3044
3045         /*Set Source Size Field Here */
3046     [fPicSettingsSrc setStringValue: [NSString stringWithFormat: @"%d x %d", fTitle->width, fTitle->height]];
3047         
3048         /* Set Auto Crop to on upon selecting a new title */
3049     [fPictureController setAutoCrop:YES];
3050     
3051         /* We get the originial output picture width and height and put them
3052         in variables for use with some presets later on */
3053         PicOrigOutputWidth = job->width;
3054         PicOrigOutputHeight = job->height;
3055         AutoCropTop = job->crop[0];
3056         AutoCropBottom = job->crop[1];
3057         AutoCropLeft = job->crop[2];
3058         AutoCropRight = job->crop[3];
3059
3060         /* Run Through encoderPopUpChanged to see if there
3061                 needs to be any pic value modifications based on encoder settings */
3062         //[self encoderPopUpChanged: NULL];
3063         /* END Get and set the initial pic size for display */ 
3064
3065     /* Update subtitle popups */
3066     hb_subtitle_t * subtitle;
3067     [fSubPopUp removeAllItems];
3068     [fSubPopUp addItemWithTitle: @"None"];
3069     [fSubPopUp addItemWithTitle: @"Autoselect"];
3070     for( int i = 0; i < hb_list_count( title->list_subtitle ); i++ )
3071     {
3072         subtitle = (hb_subtitle_t *) hb_list_item( title->list_subtitle, i );
3073
3074         /* We cannot use NSPopUpButton's addItemWithTitle because
3075            it checks for duplicate entries */
3076         [[fSubPopUp menu] addItemWithTitle: [NSString stringWithCString:
3077             subtitle->lang] action: NULL keyEquivalent: @""];
3078     }
3079     [fSubPopUp selectItemAtIndex: 0];
3080
3081         [self subtitleSelectionChanged:nil];
3082
3083     /* Update chapter table */
3084     [fChapterTitlesDelegate resetWithTitle:title];
3085     [fChapterTable reloadData];
3086
3087    /* Lets make sure there arent any erroneous audio tracks in the job list, so lets make sure its empty*/
3088     int audiotrack_count = hb_list_count(job->list_audio);
3089     for( int i = 0; i < audiotrack_count;i++)
3090     {
3091         hb_audio_t * temp_audio = (hb_audio_t*) hb_list_item( job->list_audio, 0 );
3092         hb_list_rem(job->list_audio, temp_audio);
3093     }
3094
3095     /* Update audio popups */
3096     [self addAllAudioTracksToPopUp: fAudLang1PopUp];
3097     [self addAllAudioTracksToPopUp: fAudLang2PopUp];
3098     [self addAllAudioTracksToPopUp: fAudLang3PopUp];
3099     [self addAllAudioTracksToPopUp: fAudLang4PopUp];
3100     /* search for the first instance of our prefs default language for track 1, and set track 2 to "none" */
3101         NSString * audioSearchPrefix = [[NSUserDefaults standardUserDefaults] stringForKey:@"DefaultLanguage"];
3102         [self selectAudioTrackInPopUp: fAudLang1PopUp searchPrefixString: audioSearchPrefix selectIndexIfNotFound: 1];
3103     [self selectAudioTrackInPopUp:fAudLang2PopUp searchPrefixString:nil selectIndexIfNotFound:0];
3104     [self selectAudioTrackInPopUp:fAudLang3PopUp searchPrefixString:nil selectIndexIfNotFound:0];
3105     [self selectAudioTrackInPopUp:fAudLang4PopUp searchPrefixString:nil selectIndexIfNotFound:0];
3106
3107         /* changing the title may have changed the audio channels on offer, */
3108         /* so call audioTrackPopUpChanged for both audio tracks to update the mixdown popups */
3109         [self audioTrackPopUpChanged: fAudLang1PopUp];
3110         [self audioTrackPopUpChanged: fAudLang2PopUp];
3111     [self audioTrackPopUpChanged: fAudLang3PopUp];
3112     [self audioTrackPopUpChanged: fAudLang4PopUp];
3113
3114     [fVidRatePopUp selectItemAtIndex: 0];
3115
3116     /* we run the picture size values through calculatePictureSizing to get all picture setting information*/
3117         [self calculatePictureSizing:nil];
3118
3119    /* lets call tableViewSelected to make sure that any preset we have selected is enforced after a title change */
3120         [self selectPreset:nil];
3121 }
3122
3123 - (IBAction) chapterPopUpChanged: (id) sender
3124 {
3125
3126         /* If start chapter popup is greater than end chapter popup,
3127         we set the end chapter popup to the same as start chapter popup */
3128         if ([fSrcChapterStartPopUp indexOfSelectedItem] > [fSrcChapterEndPopUp indexOfSelectedItem])
3129         {
3130                 [fSrcChapterEndPopUp selectItemAtIndex: [fSrcChapterStartPopUp indexOfSelectedItem]];
3131     }
3132
3133                 
3134         hb_list_t  * list  = hb_get_titles( fHandle );
3135     hb_title_t * title = (hb_title_t *)
3136         hb_list_item( list, [fSrcTitlePopUp indexOfSelectedItem] );
3137
3138     hb_chapter_t * chapter;
3139     int64_t        duration = 0;
3140     for( int i = [fSrcChapterStartPopUp indexOfSelectedItem];
3141          i <= [fSrcChapterEndPopUp indexOfSelectedItem]; i++ )
3142     {
3143         chapter = (hb_chapter_t *) hb_list_item( title->list_chapter, i );
3144         duration += chapter->duration;
3145     }
3146     
3147     duration /= 90000; /* pts -> seconds */
3148     [fSrcDuration2Field setStringValue: [NSString stringWithFormat:
3149         @"%02lld:%02lld:%02lld", duration / 3600, ( duration / 60 ) % 60,
3150         duration % 60]];
3151
3152     [self calculateBitrate: sender];
3153 }
3154
3155 - (IBAction) formatPopUpChanged: (id) sender
3156 {
3157     NSString * string = [fDstFile2Field stringValue];
3158     int format = [fDstFormatPopUp indexOfSelectedItem];
3159     char * ext = NULL;
3160         /* Initially set the large file (64 bit formatting) output checkbox to hidden */
3161     [fDstMp4LargeFileCheck setHidden: YES];
3162     [fDstMp4HttpOptFileCheck setHidden: YES];
3163     [fDstMp4iPodFileCheck setHidden: YES];
3164     
3165     /* Update the Video Codec PopUp */
3166     /* Note: we now store the video encoder int values from common.c in the tags of each popup for easy retrieval later */
3167     [fVidEncoderPopUp removeAllItems];
3168     NSMenuItem *menuItem;
3169     /* These video encoders are available to all of our current muxers, so lets list them once here */
3170     menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"MPEG-4 (FFmpeg)" action: NULL keyEquivalent: @""];
3171     [menuItem setTag: HB_VCODEC_FFMPEG];
3172     
3173     menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"MPEG-4 (XviD)" action: NULL keyEquivalent: @""];
3174     [menuItem setTag: HB_VCODEC_XVID];
3175     switch( format )
3176     {
3177         case 0:
3178                         /*Get Default MP4 File Extension*/
3179                         if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultMpegName"] > 0)
3180                         {
3181                                 ext = "m4v";
3182                         }
3183                         else
3184                         {
3185                                 ext = "mp4";
3186                         }
3187             /* Add additional video encoders here */
3188             menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"H.264 (x264)" action: NULL keyEquivalent: @""];
3189             [menuItem setTag: HB_VCODEC_X264];
3190             /* We show the mp4 option checkboxes here since we are mp4 */
3191             [fCreateChapterMarkers setEnabled: YES];
3192                         [fDstMp4LargeFileCheck setHidden: NO];
3193                         [fDstMp4HttpOptFileCheck setHidden: NO];
3194             [fDstMp4iPodFileCheck setHidden: NO];
3195             break;
3196             
3197             case 1:
3198             ext = "mkv";
3199             /* Add additional video encoders here */
3200             menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"H.264 (x264)" action: NULL keyEquivalent: @""];
3201             [menuItem setTag: HB_VCODEC_X264];
3202             menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"VP3 (Theora)" action: NULL keyEquivalent: @""];
3203             [menuItem setTag: HB_VCODEC_THEORA];
3204             /* We enable the create chapters checkbox here */
3205                         [fCreateChapterMarkers setEnabled: YES];
3206                         break;
3207             
3208             case 2: 
3209             ext = "avi";
3210             /* Add additional video encoders here */
3211             menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"H.264 (x264)" action: NULL keyEquivalent: @""];
3212             [menuItem setTag: HB_VCODEC_X264];
3213             /* We disable the create chapters checkbox here and make sure it is unchecked*/
3214                         [fCreateChapterMarkers setEnabled: NO];
3215                         [fCreateChapterMarkers setState: NSOffState];
3216                         break;
3217             
3218             case 3:
3219             ext = "ogm";
3220             /* Add additional video encoders here */
3221             menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"VP3 (Theora)" action: NULL keyEquivalent: @""];
3222             [menuItem setTag: HB_VCODEC_THEORA];
3223             /* We disable the create chapters checkbox here and make sure it is unchecked*/
3224                         [fCreateChapterMarkers setEnabled: NO];
3225                         [fCreateChapterMarkers setState: NSOffState];
3226                         break;
3227     }
3228     [fVidEncoderPopUp selectItemAtIndex: 0];
3229
3230     [self audioAddAudioTrackCodecs: fAudTrack1CodecPopUp];
3231     [self audioAddAudioTrackCodecs: fAudTrack2CodecPopUp];
3232     [self audioAddAudioTrackCodecs: fAudTrack3CodecPopUp];
3233     [self audioAddAudioTrackCodecs: fAudTrack4CodecPopUp];
3234
3235     if( format == 0 )
3236         [self autoSetM4vExtension: sender];
3237     else
3238         [fDstFile2Field setStringValue: [NSString stringWithFormat:@"%@.%s", [string stringByDeletingPathExtension], ext]];
3239
3240     if( SuccessfulScan )
3241     {
3242         /* Add/replace to the correct extension */
3243         [self audioTrackPopUpChanged: fAudLang1PopUp];
3244         [self audioTrackPopUpChanged: fAudLang2PopUp];
3245         [self audioTrackPopUpChanged: fAudLang3PopUp];
3246         [self audioTrackPopUpChanged: fAudLang4PopUp];
3247
3248         if( [fVidEncoderPopUp selectedItem] == nil )
3249         {
3250
3251             [fVidEncoderPopUp selectItemAtIndex:0];
3252             [self videoEncoderPopUpChanged:nil];
3253
3254             /* changing the format may mean that we can / can't offer mono or 6ch, */
3255             /* so call audioTrackPopUpChanged for both audio tracks to update the mixdown popups */
3256
3257             /* We call the method to properly enable/disable turbo 2 pass */
3258             [self twoPassCheckboxChanged: sender];
3259             /* We call method method to change UI to reflect whether a preset is used or not*/
3260         }
3261     }
3262         [self customSettingUsed: sender];
3263 }
3264
3265 - (IBAction) autoSetM4vExtension: (id) sender
3266 {
3267     if ( [fDstFormatPopUp indexOfSelectedItem] )
3268         return;
3269
3270     NSString * extension = @"mp4";
3271
3272     if( [[fAudTrack1CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 || [[fAudTrack2CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 ||
3273                                                         [[fAudTrack3CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 ||
3274                                                         [[fAudTrack4CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 ||
3275                                                         [fCreateChapterMarkers state] == NSOnState ||
3276                                                         [[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultMpegName"] > 0 )
3277     {
3278         extension = @"m4v";
3279     }
3280
3281     if( [extension isEqualTo: [[fDstFile2Field stringValue] pathExtension]] )
3282         return;
3283     else
3284         [fDstFile2Field setStringValue: [NSString stringWithFormat:@"%@.%@",
3285                                     [[fDstFile2Field stringValue] stringByDeletingPathExtension], extension]];
3286 }
3287
3288 - (void) shouldEnableHttpMp4CheckBox: (id) sender
3289 {
3290     if( [[fAudTrack1CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 || [[fAudTrack2CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 ||
3291                                                         [[fAudTrack3CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 ||
3292                                                         [[fAudTrack4CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 )
3293         [fDstMp4HttpOptFileCheck setEnabled: NO];
3294     else
3295         [fDstMp4HttpOptFileCheck setEnabled: YES];
3296 }
3297         
3298 /* Method to determine if we should change the UI
3299 To reflect whether or not a Preset is being used or if
3300 the user is using "Custom" settings by determining the sender*/
3301 - (IBAction) customSettingUsed: (id) sender
3302 {
3303         if ([sender stringValue])
3304         {
3305                 /* Deselect the currently selected Preset if there is one*/
3306                 [fPresetsOutlineView deselectRow:[fPresetsOutlineView selectedRow]];
3307                 /* Change UI to show "Custom" settings are being used */
3308                 [fPresetSelectedDisplay setStringValue: @"Custom"];
3309
3310                 curUserPresetChosenNum = nil;
3311         }
3312 }
3313
3314
3315 #pragma mark -
3316 #pragma mark - Video
3317
3318 - (IBAction) videoEncoderPopUpChanged: (id) sender
3319 {
3320     hb_job_t * job = fTitle->job;
3321     int videoEncoder = [[fVidEncoderPopUp selectedItem] tag];
3322     
3323     [fAdvancedOptions setHidden:YES];
3324     /* If we are using x264 then show the x264 advanced panel*/
3325     if (videoEncoder == HB_VCODEC_X264)
3326     {
3327         [fAdvancedOptions setHidden:NO];
3328         [self autoSetM4vExtension: sender];
3329     }
3330     
3331     /* We need to set loose anamorphic as available depending on whether or not the ffmpeg encoder
3332     is being used as it borks up loose anamorphic .
3333     For convenience lets use the titleOfSelected index. Probably should revisit whether or not we want
3334     to use the index itself but this is easier */
3335     if (videoEncoder == HB_VCODEC_FFMPEG)
3336     {
3337         if (job->pixel_ratio == 2)
3338         {
3339             job->pixel_ratio = 0;
3340         }
3341         [fPictureController setAllowLooseAnamorphic:NO];
3342         /* We set the iPod atom checkbox to disabled and uncheck it as its only for x264 in the mp4
3343          container. Format is taken care of in formatPopUpChanged method by hiding and unchecking
3344          anything other than MP4.
3345          */ 
3346         [fDstMp4iPodFileCheck setEnabled: NO];
3347         [fDstMp4iPodFileCheck setState: NSOffState];
3348     }
3349     else
3350     {
3351         [fPictureController setAllowLooseAnamorphic:YES];
3352         [fDstMp4iPodFileCheck setEnabled: YES];
3353     }
3354     
3355         [self calculatePictureSizing: sender];
3356         [self twoPassCheckboxChanged: sender];
3357 }
3358
3359
3360 - (IBAction) twoPassCheckboxChanged: (id) sender
3361 {
3362         /* check to see if x264 is chosen */
3363         if([[fVidEncoderPopUp selectedItem] tag] == HB_VCODEC_X264)
3364     {
3365                 if( [fVidTwoPassCheck state] == NSOnState)
3366                 {
3367                         [fVidTurboPassCheck setHidden: NO];
3368                 }
3369                 else
3370                 {
3371                         [fVidTurboPassCheck setHidden: YES];
3372                         [fVidTurboPassCheck setState: NSOffState];
3373                 }
3374                 /* Make sure Two Pass is checked if Turbo is checked */
3375                 if( [fVidTurboPassCheck state] == NSOnState)
3376                 {
3377                         [fVidTwoPassCheck setState: NSOnState];
3378                 }
3379         }
3380         else
3381         {
3382                 [fVidTurboPassCheck setHidden: YES];
3383                 [fVidTurboPassCheck setState: NSOffState];
3384         }
3385         
3386         /* We call method method to change UI to reflect whether a preset is used or not*/
3387         [self customSettingUsed: sender];
3388 }
3389
3390 - (IBAction ) videoFrameRateChanged: (id) sender
3391 {
3392     /* We call method method to calculatePictureSizing to error check detelecine*/
3393     [self calculatePictureSizing: sender];
3394
3395     /* We call method method to change UI to reflect whether a preset is used or not*/
3396         [self customSettingUsed: sender];
3397 }
3398 - (IBAction) videoMatrixChanged: (id) sender;
3399 {
3400     bool target, bitrate, quality;
3401
3402     target = bitrate = quality = false;
3403     if( [fVidQualityMatrix isEnabled] )
3404     {
3405         switch( [fVidQualityMatrix selectedRow] )
3406         {
3407             case 0:
3408                 target = true;
3409                 break;
3410             case 1:
3411                 bitrate = true;
3412                 break;
3413             case 2:
3414                 quality = true;
3415                 break;
3416         }
3417     }
3418     [fVidTargetSizeField  setEnabled: target];
3419     [fVidBitrateField     setEnabled: bitrate];
3420     [fVidQualitySlider    setEnabled: quality];
3421     [fVidTwoPassCheck     setEnabled: !quality &&
3422         [fVidQualityMatrix isEnabled]];
3423     if( quality )
3424     {
3425         [fVidTwoPassCheck setState: NSOffState];
3426                 [fVidTurboPassCheck setHidden: YES];
3427                 [fVidTurboPassCheck setState: NSOffState];
3428     }
3429
3430     [self qualitySliderChanged: sender];
3431     [self calculateBitrate: sender];
3432         [self customSettingUsed: sender];
3433 }
3434
3435 - (IBAction) qualitySliderChanged: (id) sender
3436 {
3437     [fVidConstantCell setTitle: [NSString stringWithFormat:
3438         NSLocalizedString( @"Constant quality: %.0f %%", @"" ), 100.0 *
3439         [fVidQualitySlider floatValue]]];
3440                 [self customSettingUsed: sender];
3441 }
3442
3443 - (void) controlTextDidChange: (NSNotification *) notification
3444 {
3445     [self calculateBitrate:nil];
3446 }
3447
3448 - (IBAction) calculateBitrate: (id) sender
3449 {
3450     if( !fHandle || [fVidQualityMatrix selectedRow] != 0 || !SuccessfulScan )
3451     {
3452         return;
3453     }
3454
3455     hb_list_t  * list  = hb_get_titles( fHandle );
3456     hb_title_t * title = (hb_title_t *) hb_list_item( list,
3457             [fSrcTitlePopUp indexOfSelectedItem] );
3458     hb_job_t * job = title->job;
3459      
3460     [fVidBitrateField setIntValue: hb_calc_bitrate( job,
3461             [fVidTargetSizeField intValue] )];
3462 }
3463
3464 #pragma mark -
3465 #pragma mark - Picture
3466
3467 /* lets set the picture size back to the max from right after title scan
3468    Lets use an IBAction here as down the road we could always use a checkbox
3469    in the gui to easily take the user back to max. Remember, the compiler
3470    resolves IBActions down to -(void) during compile anyway */
3471 - (IBAction) revertPictureSizeToMax: (id) sender
3472 {
3473         hb_job_t * job = fTitle->job;
3474         /* We use the output picture width and height
3475      as calculated from libhb right after title is set
3476      in TitlePopUpChanged */
3477         job->width = PicOrigOutputWidth;
3478         job->height = PicOrigOutputHeight;
3479     [fPictureController setAutoCrop:YES];
3480         /* Here we use the auto crop values determined right after scan */
3481         job->crop[0] = AutoCropTop;
3482         job->crop[1] = AutoCropBottom;
3483         job->crop[2] = AutoCropLeft;
3484         job->crop[3] = AutoCropRight;
3485     
3486     
3487     [self calculatePictureSizing: sender];
3488     /* We call method to change UI to reflect whether a preset is used or not*/    
3489     [self customSettingUsed: sender];
3490 }
3491
3492 /**
3493  * Registers changes made in the Picture Settings Window.
3494  */
3495
3496 - (void)pictureSettingsDidChange {
3497         [self calculatePictureSizing:nil];
3498 }
3499
3500 /* Get and Display Current Pic Settings in main window */
3501 - (IBAction) calculatePictureSizing: (id) sender
3502 {
3503         [fPicSettingsOutp setStringValue: [NSString stringWithFormat:@"%d x %d", fTitle->job->width, fTitle->job->height]];
3504         
3505     if (fTitle->job->pixel_ratio == 1)
3506         {
3507         int titlewidth = fTitle->width-fTitle->job->crop[2]-fTitle->job->crop[3];
3508         int arpwidth = fTitle->job->pixel_aspect_width;
3509         int arpheight = fTitle->job->pixel_aspect_height;
3510         int displayparwidth = titlewidth * arpwidth / arpheight;
3511         int displayparheight = fTitle->height-fTitle->job->crop[0]-fTitle->job->crop[1];
3512         [fPicSettingsOutp setStringValue: [NSString stringWithFormat:@"%d x %d", titlewidth, displayparheight]];
3513         [fPicSettingsAnamorphic setStringValue: [NSString stringWithFormat:@"%d x %d Strict", displayparwidth, displayparheight]];
3514         fTitle->job->keep_ratio = 0;
3515         }
3516     else if (fTitle->job->pixel_ratio == 2)
3517     {
3518         hb_job_t * job = fTitle->job;
3519         int output_width, output_height, output_par_width, output_par_height;
3520         hb_set_anamorphic_size(job, &output_width, &output_height, &output_par_width, &output_par_height);
3521         int display_width;
3522         display_width = output_width * output_par_width / output_par_height;
3523
3524         [fPicSettingsOutp setStringValue: [NSString stringWithFormat:@"%d x %d", output_width, output_height]];
3525         [fPicSettingsAnamorphic setStringValue: [NSString stringWithFormat:@"%d x %d Loose", display_width, output_height]];
3526
3527         fTitle->job->keep_ratio = 0;
3528     }
3529         else
3530         {
3531         [fPicSettingsAnamorphic setStringValue:@"Off"];
3532         }
3533
3534         /* Set ON/Off values for the deinterlace/keep aspect ratio according to boolean */
3535         if (fTitle->job->keep_ratio > 0)
3536         {
3537                 [fPicSettingARkeep setStringValue: @"On"];
3538         }
3539         else
3540         {
3541                 [fPicSettingARkeep setStringValue: @"Off"];
3542         }       
3543     
3544     /* Detelecine */
3545     if ([fPictureController detelecine]) {
3546         [fPicSettingDetelecine setStringValue: @"Yes"];
3547     }
3548     else {
3549         [fPicSettingDetelecine setStringValue: @"No"];
3550     }
3551     
3552     /* Decomb */
3553         if ([fPictureController decomb] == 0)
3554         {
3555                 [fPicSettingDecomb setStringValue: @"Off"];
3556         }
3557         else if ([fPictureController decomb] == 1)
3558         {
3559                 [fPicSettingDecomb setStringValue: @"1:2:6:9:80:16:16"];
3560         }
3561     else if ([fPictureController decomb] == 2)
3562     {
3563         [fPicSettingDecomb setStringValue:[[NSUserDefaults standardUserDefaults] stringForKey:@"DecombCustomString"]];
3564     }
3565
3566     /* VFR (Variable Frame Rate) */
3567     if ([fPictureController vfr]) {
3568         /* We change the string of the fps popup to warn that vfr is on Framerate (FPS): */
3569         [fVidRateField setStringValue: @"Framerate (VFR On):"]; 
3570         /* for VFR we select same as source (or title framerate) and disable the popup.
3571         * We know its index 0 as that is determined in titlePopUpChanged */
3572         [fVidRatePopUp selectItemAtIndex: 0];
3573         [fVidRatePopUp setEnabled: NO];  
3574         
3575     }
3576     else {
3577         /* make sure the label for framerate is set to its default */  
3578         [fVidRateField setStringValue: @"Framerate (FPS):"];
3579         [fVidRatePopUp setEnabled: YES];
3580     }
3581     
3582         /* Deinterlace */
3583         if ([fPictureController deinterlace] == 0)
3584         {
3585                 [fPicSettingDeinterlace setStringValue: @"Off"];
3586         }
3587         else if ([fPictureController deinterlace] == 1)
3588         {
3589                 [fPicSettingDeinterlace setStringValue: @"Fast"];
3590         }
3591         else if ([fPictureController deinterlace] == 2)
3592         {
3593                 [fPicSettingDeinterlace setStringValue: @"Slow"];
3594         }
3595         else if ([fPictureController deinterlace] == 3)
3596         {
3597                 [fPicSettingDeinterlace setStringValue: @"Slower"];
3598         }
3599                 
3600     /* Denoise */
3601         if ([fPictureController denoise] == 0)
3602         {
3603                 [fPicSettingDenoise setStringValue: @"Off"];
3604         }
3605         else if ([fPictureController denoise] == 1)
3606         {
3607                 [fPicSettingDenoise setStringValue: @"Weak"];
3608         }
3609         else if ([fPictureController denoise] == 2)
3610         {
3611                 [fPicSettingDenoise setStringValue: @"Medium"];
3612         }
3613         else if ([fPictureController denoise] == 3)
3614         {
3615                 [fPicSettingDenoise setStringValue: @"Strong"];
3616         }
3617     
3618     /* Deblock */
3619     if ([fPictureController deblock]) {
3620         [fPicSettingDeblock setStringValue: @"Yes"];
3621     }
3622     else {
3623         [fPicSettingDeblock setStringValue: @"No"];
3624     }
3625         
3626         if (fTitle->job->pixel_ratio > 0)
3627         {
3628                 [fPicSettingPAR setStringValue: @""];
3629         }
3630         else
3631         {
3632                 [fPicSettingPAR setStringValue: @"Off"];
3633         }
3634         
3635     /* Set the display field for crop as per boolean */
3636         if (![fPictureController autoCrop])
3637         {
3638             [fPicSettingAutoCrop setStringValue: @"Custom"];
3639         }
3640         else
3641         {
3642                 [fPicSettingAutoCrop setStringValue: @"Auto"];
3643         }       
3644         
3645     
3646 }
3647
3648
3649 #pragma mark -
3650 #pragma mark - Audio and Subtitles
3651 - (IBAction) audioCodecsPopUpChanged: (id) sender
3652 {
3653     
3654     NSPopUpButton * audiotrackPopUp;
3655     NSPopUpButton * sampleratePopUp;
3656     NSPopUpButton * bitratePopUp;
3657     NSPopUpButton * audiocodecPopUp;
3658     if (sender == fAudTrack1CodecPopUp)
3659     {
3660         audiotrackPopUp = fAudLang1PopUp;
3661         audiocodecPopUp = fAudTrack1CodecPopUp;
3662         sampleratePopUp = fAudTrack1RatePopUp;
3663         bitratePopUp = fAudTrack1BitratePopUp;
3664     }
3665     else if (sender == fAudTrack2CodecPopUp)
3666     {
3667         audiotrackPopUp = fAudLang2PopUp;
3668         audiocodecPopUp = fAudTrack2CodecPopUp;
3669         sampleratePopUp = fAudTrack2RatePopUp;
3670         bitratePopUp = fAudTrack2BitratePopUp;
3671     }
3672     else if (sender == fAudTrack3CodecPopUp)
3673     {
3674         audiotrackPopUp = fAudLang3PopUp;
3675         audiocodecPopUp = fAudTrack3CodecPopUp;
3676         sampleratePopUp = fAudTrack3RatePopUp;
3677         bitratePopUp = fAudTrack3BitratePopUp;
3678     }
3679     else
3680     {
3681         audiotrackPopUp = fAudLang4PopUp;
3682         audiocodecPopUp = fAudTrack4CodecPopUp;
3683         sampleratePopUp = fAudTrack4RatePopUp;
3684         bitratePopUp = fAudTrack4BitratePopUp;
3685     }
3686         
3687     /* changing the codecs on offer may mean that we can / can't offer mono or 6ch, */
3688         /* so call audioTrackPopUpChanged for both audio tracks to update the mixdown popups */
3689     [self audioTrackPopUpChanged: audiotrackPopUp];
3690     
3691 }
3692
3693 - (IBAction) setEnabledStateOfAudioMixdownControls: (id) sender
3694 {
3695     /* We will be setting the enabled/disabled state of each tracks audio controls based on
3696      * the settings of the source audio for that track. We leave the samplerate and bitrate
3697      * to audiotrackMixdownChanged
3698      */
3699     
3700     /* We will first verify that a lower track number has been selected before enabling each track
3701      * for example, make sure a track is selected for track 1 before enabling track 2, etc.
3702      */
3703     if ([fAudLang1PopUp indexOfSelectedItem] == 0)
3704     {
3705         [fAudLang2PopUp setEnabled: NO];
3706         [fAudLang2PopUp selectItemAtIndex: 0];
3707     }
3708     else
3709     {
3710         [fAudLang2PopUp setEnabled: YES];
3711     }
3712     
3713     if ([fAudLang2PopUp indexOfSelectedItem] == 0)
3714     {
3715         [fAudLang3PopUp setEnabled: NO];
3716         [fAudLang3PopUp selectItemAtIndex: 0];
3717     }
3718     else
3719     {
3720         [fAudLang3PopUp setEnabled: YES];
3721     }
3722     if ([fAudLang3PopUp indexOfSelectedItem] == 0)
3723     {
3724         [fAudLang4PopUp setEnabled: NO];
3725         [fAudLang4PopUp selectItemAtIndex: 0];
3726     }
3727     else
3728     {
3729         [fAudLang4PopUp setEnabled: YES];
3730     }
3731     /* enable/disable the mixdown text and popupbutton for audio track 1 */
3732     [fAudTrack1CodecPopUp setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3733     [fAudTrack1MixPopUp setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3734     [fAudTrack1RatePopUp setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3735     [fAudTrack1BitratePopUp setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3736     [fAudTrack1DrcSlider setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3737     [fAudTrack1DrcField setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3738     if ([fAudLang1PopUp indexOfSelectedItem] == 0)
3739     {
3740         [fAudTrack1CodecPopUp removeAllItems];
3741         [fAudTrack1MixPopUp removeAllItems];
3742         [fAudTrack1RatePopUp removeAllItems];
3743         [fAudTrack1BitratePopUp removeAllItems];
3744         [fAudTrack1DrcSlider setFloatValue: 1.00];
3745         [self audioDRCSliderChanged: fAudTrack1DrcSlider];
3746     }
3747     else if ([[fAudTrack1MixPopUp selectedItem] tag] == HB_ACODEC_AC3)
3748     {
3749         [fAudTrack1RatePopUp setEnabled: NO];
3750         [fAudTrack1BitratePopUp setEnabled: NO];
3751         [fAudTrack1DrcSlider setEnabled: NO];
3752         [fAudTrack1DrcField setEnabled: NO];
3753     }
3754     
3755     /* enable/disable the mixdown text and popupbutton for audio track 2 */
3756     [fAudTrack2CodecPopUp setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3757     [fAudTrack2MixPopUp setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3758     [fAudTrack2RatePopUp setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3759     [fAudTrack2BitratePopUp setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3760     [fAudTrack2DrcSlider setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3761     [fAudTrack2DrcField setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3762     if ([fAudLang2PopUp indexOfSelectedItem] == 0)
3763     {
3764         [fAudTrack2CodecPopUp removeAllItems];
3765         [fAudTrack2MixPopUp removeAllItems];
3766         [fAudTrack2RatePopUp removeAllItems];
3767         [fAudTrack2BitratePopUp removeAllItems];
3768         [fAudTrack2DrcSlider setFloatValue: 1.00];
3769         [self audioDRCSliderChanged: fAudTrack2DrcSlider];
3770     }
3771     else if ([[fAudTrack2MixPopUp selectedItem] tag] == HB_ACODEC_AC3)
3772     {
3773         [fAudTrack2RatePopUp setEnabled: NO];
3774         [fAudTrack2BitratePopUp setEnabled: NO];
3775         [fAudTrack2DrcSlider setEnabled: NO];
3776         [fAudTrack2DrcField setEnabled: NO];
3777     }
3778     
3779     /* enable/disable the mixdown text and popupbutton for audio track 3 */
3780     [fAudTrack3CodecPopUp setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3781     [fAudTrack3MixPopUp setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3782     [fAudTrack3RatePopUp setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3783     [fAudTrack3BitratePopUp setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3784     [fAudTrack3DrcSlider setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3785     [fAudTrack3DrcField setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3786     if ([fAudLang3PopUp indexOfSelectedItem] == 0)
3787     {
3788         [fAudTrack3CodecPopUp removeAllItems];
3789         [fAudTrack3MixPopUp removeAllItems];
3790         [fAudTrack3RatePopUp removeAllItems];
3791         [fAudTrack3BitratePopUp removeAllItems];
3792         [fAudTrack3DrcSlider setFloatValue: 1.00];
3793         [self audioDRCSliderChanged: fAudTrack3DrcSlider];
3794     }
3795     else if ([[fAudTrack3MixPopUp selectedItem] tag] == HB_ACODEC_AC3)
3796     {
3797         [fAudTrack3RatePopUp setEnabled: NO];
3798         [fAudTrack3BitratePopUp setEnabled: NO];
3799         [fAudTrack3DrcSlider setEnabled: NO];
3800         [fAudTrack3DrcField setEnabled: NO];
3801     }
3802     
3803     /* enable/disable the mixdown text and popupbutton for audio track 4 */
3804     [fAudTrack4CodecPopUp setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3805     [fAudTrack4MixPopUp setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3806     [fAudTrack4RatePopUp setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3807     [fAudTrack4BitratePopUp setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3808     [fAudTrack4DrcSlider setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3809     [fAudTrack4DrcField setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3810     if ([fAudLang4PopUp indexOfSelectedItem] == 0)
3811     {
3812         [fAudTrack4CodecPopUp removeAllItems];
3813         [fAudTrack4MixPopUp removeAllItems];
3814         [fAudTrack4RatePopUp removeAllItems];
3815         [fAudTrack4BitratePopUp removeAllItems];
3816         [fAudTrack4DrcSlider setFloatValue: 1.00];
3817         [self audioDRCSliderChanged: fAudTrack4DrcSlider];
3818     }
3819     else if ([[fAudTrack4MixPopUp selectedItem] tag] == HB_ACODEC_AC3)
3820     {
3821         [fAudTrack4RatePopUp setEnabled: NO];
3822         [fAudTrack4BitratePopUp setEnabled: NO];
3823         [fAudTrack4DrcSlider setEnabled: NO];
3824         [fAudTrack4DrcField setEnabled: NO];
3825     }
3826     
3827 }
3828
3829 - (IBAction) addAllAudioTracksToPopUp: (id) sender
3830 {
3831
3832     hb_list_t  * list  = hb_get_titles( fHandle );
3833     hb_title_t * title = (hb_title_t*)
3834         hb_list_item( list, [fSrcTitlePopUp indexOfSelectedItem] );
3835
3836         hb_audio_config_t * audio;
3837
3838     [sender removeAllItems];
3839     [sender addItemWithTitle: NSLocalizedString( @"None", @"" )];
3840     for( int i = 0; i < hb_list_count( title->list_audio ); i++ )
3841     {
3842         audio = (hb_audio_config_t *) hb_list_audio_config_item( title->list_audio, i );
3843         [[sender menu] addItemWithTitle:
3844             [NSString stringWithCString: audio->lang.description]
3845             action: NULL keyEquivalent: @""];
3846     }
3847     [sender selectItemAtIndex: 0];
3848
3849 }
3850
3851 - (IBAction) selectAudioTrackInPopUp: (id) sender searchPrefixString: (NSString *) searchPrefixString selectIndexIfNotFound: (int) selectIndexIfNotFound
3852 {
3853
3854     /* this method can be used to find a language, or a language-and-source-format combination, by passing in the appropriate string */
3855     /* e.g. to find the first French track, pass in an NSString * of "Francais" */
3856     /* e.g. to find the first English 5.1 AC3 track, pass in an NSString * of "English (AC3) (5.1 ch)" */
3857     /* if no matching track is found, then selectIndexIfNotFound is used to choose which track to select instead */
3858
3859         if (searchPrefixString)
3860         {
3861
3862         for( int i = 0; i < [sender numberOfItems]; i++ )
3863         {
3864             /* Try to find the desired search string */
3865             if ([[[sender itemAtIndex: i] title] hasPrefix:searchPrefixString])
3866             {
3867                 [sender selectItemAtIndex: i];
3868                 return;
3869             }
3870         }
3871         /* couldn't find the string, so select the requested "search string not found" item */
3872         /* index of 0 means select the "none" item */
3873         /* index of 1 means select the first audio track */
3874         [sender selectItemAtIndex: selectIndexIfNotFound];
3875         }
3876     else
3877     {
3878         /* if no search string is provided, then select the selectIndexIfNotFound item */
3879         [sender selectItemAtIndex: selectIndexIfNotFound];
3880     }
3881
3882 }
3883 - (IBAction) audioAddAudioTrackCodecs: (id)sender
3884 {
3885     int format = [fDstFormatPopUp indexOfSelectedItem];
3886     
3887     /* setup pointers to the appropriate popups for the correct track */
3888     NSPopUpButton * audiocodecPopUp;
3889     NSPopUpButton * audiotrackPopUp;
3890     if (sender == fAudTrack1CodecPopUp)
3891     {
3892         audiotrackPopUp = fAudLang1PopUp;
3893         audiocodecPopUp = fAudTrack1CodecPopUp;
3894     }
3895     else if (sender == fAudTrack2CodecPopUp)
3896     {
3897         audiotrackPopUp = fAudLang2PopUp;
3898         audiocodecPopUp = fAudTrack2CodecPopUp;
3899     }
3900     else if (sender == fAudTrack3CodecPopUp)
3901     {
3902         audiotrackPopUp = fAudLang3PopUp;
3903         audiocodecPopUp = fAudTrack3CodecPopUp;
3904     }
3905     else
3906     {
3907         audiotrackPopUp = fAudLang4PopUp;
3908         audiocodecPopUp = fAudTrack4CodecPopUp;
3909     }
3910     
3911     [audiocodecPopUp removeAllItems];
3912     /* Make sure "None" isnt selected in the source track */
3913     if ([audiotrackPopUp indexOfSelectedItem] > 0)
3914     {
3915         [audiocodecPopUp setEnabled:YES];
3916         NSMenuItem *menuItem;
3917         /* We setup our appropriate popups for codecs and put the int value in the popup tag for easy retrieval */
3918         switch( format )
3919         {
3920             case 0:
3921                 /* MP4 */
3922                 // AAC
3923                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"AAC (faac)" action: NULL keyEquivalent: @""];
3924                 [menuItem setTag: HB_ACODEC_FAAC];
3925                 
3926                 // AC3 Passthru
3927                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"AC3 Passthru" action: NULL keyEquivalent: @""];
3928                 [menuItem setTag: HB_ACODEC_AC3];
3929                 break;
3930                 
3931             case 1:
3932                 /* MKV */
3933                 // AAC
3934                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"AAC (faac)" action: NULL keyEquivalent: @""];
3935                 [menuItem setTag: HB_ACODEC_FAAC];
3936                 // AC3 Passthru
3937                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"AC3 Passthru" action: NULL keyEquivalent: @""];
3938                 [menuItem setTag: HB_ACODEC_AC3];
3939                 // MP3
3940                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"MP3 (lame)" action: NULL keyEquivalent: @""];
3941                 [menuItem setTag: HB_ACODEC_LAME];
3942                 // Vorbis
3943                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"Vorbis (vorbis)" action: NULL keyEquivalent: @""];
3944                 [menuItem setTag: HB_ACODEC_VORBIS];
3945                 break;
3946                 
3947             case 2: 
3948                 /* AVI */
3949                 // MP3
3950                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"MP3 (lame)" action: NULL keyEquivalent: @""];
3951                 [menuItem setTag: HB_ACODEC_LAME];
3952                 // AC3 Passthru
3953                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"AC3 Passthru" action: NULL keyEquivalent: @""];
3954                 [menuItem setTag: HB_ACODEC_AC3];
3955                 break;
3956                 
3957             case 3:
3958                 /* OGM */
3959                 // Vorbis
3960                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"Vorbis (vorbis)" action: NULL keyEquivalent: @""];
3961                 [menuItem setTag: HB_ACODEC_VORBIS];
3962                 // MP3
3963                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"MP3 (lame)" action: NULL keyEquivalent: @""];
3964                 [menuItem setTag: HB_ACODEC_LAME];
3965                 break;
3966         }
3967         [audiocodecPopUp selectItemAtIndex:0];
3968     }
3969     else
3970     {
3971         [audiocodecPopUp setEnabled:NO];
3972     }
3973 }
3974
3975 - (IBAction) audioTrackPopUpChanged: (id) sender
3976 {
3977     /* utility function to call audioTrackPopUpChanged without passing in a mixdown-to-use */
3978     [self audioTrackPopUpChanged: sender mixdownToUse: 0];
3979 }
3980
3981 - (IBAction) audioTrackPopUpChanged: (id) sender mixdownToUse: (int) mixdownToUse
3982 {
3983     
3984     /* make sure we have a selected title before continuing */
3985     if (fTitle == NULL) return;
3986     /* if the sender is the lanaguage popup and there is nothing in the codec popup, lets call
3987     * audioAddAudioTrackCodecs on the codec popup to populate it properly before moving on
3988     */
3989     if (sender == fAudLang1PopUp && [[fAudTrack1CodecPopUp menu] numberOfItems] == 0)
3990     {
3991         [self audioAddAudioTrackCodecs: fAudTrack1CodecPopUp];
3992     }
3993     if (sender == fAudLang2PopUp && [[fAudTrack2CodecPopUp menu] numberOfItems] == 0)
3994     {
3995         [self audioAddAudioTrackCodecs: fAudTrack2CodecPopUp];
3996     }
3997     if (sender == fAudLang3PopUp && [[fAudTrack3CodecPopUp menu] numberOfItems] == 0)
3998     {
3999         [self audioAddAudioTrackCodecs: fAudTrack3CodecPopUp];
4000     }
4001     if (sender == fAudLang4PopUp && [[fAudTrack4CodecPopUp menu] numberOfItems] == 0)
4002     {
4003         [self audioAddAudioTrackCodecs: fAudTrack4CodecPopUp];
4004     }
4005     
4006     /* Now lets make the sender the appropriate Audio Track popup from this point on */
4007     if (sender == fAudTrack1CodecPopUp || sender == fAudTrack1MixPopUp)
4008     {
4009         sender = fAudLang1PopUp;
4010     }
4011     if (sender == fAudTrack2CodecPopUp || sender == fAudTrack2MixPopUp)
4012     {
4013         sender = fAudLang2PopUp;
4014     }
4015     if (sender == fAudTrack3CodecPopUp || sender == fAudTrack3MixPopUp)
4016     {
4017         sender = fAudLang3PopUp;
4018     }
4019     if (sender == fAudTrack4CodecPopUp || sender == fAudTrack4MixPopUp)
4020     {
4021         sender = fAudLang4PopUp;
4022     }
4023     
4024     /* pointer to this track's mixdown, codec, sample rate and bitrate NSPopUpButton's */
4025     NSPopUpButton * mixdownPopUp;
4026     NSPopUpButton * audiocodecPopUp;
4027     NSPopUpButton * sampleratePopUp;
4028     NSPopUpButton * bitratePopUp;
4029     if (sender == fAudLang1PopUp)
4030     {
4031         mixdownPopUp = fAudTrack1MixPopUp;
4032         audiocodecPopUp = fAudTrack1CodecPopUp;
4033         sampleratePopUp = fAudTrack1RatePopUp;
4034         bitratePopUp = fAudTrack1BitratePopUp;
4035     }
4036     else if (sender == fAudLang2PopUp)
4037     {
4038         mixdownPopUp = fAudTrack2MixPopUp;
4039         audiocodecPopUp = fAudTrack2CodecPopUp;
4040         sampleratePopUp = fAudTrack2RatePopUp;
4041         bitratePopUp = fAudTrack2BitratePopUp;
4042     }
4043     else if (sender == fAudLang3PopUp)
4044     {
4045         mixdownPopUp = fAudTrack3MixPopUp;
4046         audiocodecPopUp = fAudTrack3CodecPopUp;
4047         sampleratePopUp = fAudTrack3RatePopUp;
4048         bitratePopUp = fAudTrack3BitratePopUp;
4049     }
4050     else
4051     {
4052         mixdownPopUp = fAudTrack4MixPopUp;
4053         audiocodecPopUp = fAudTrack4CodecPopUp;
4054         sampleratePopUp = fAudTrack4RatePopUp;
4055         bitratePopUp = fAudTrack4BitratePopUp;
4056     }
4057
4058     /* get the index of the selected audio Track*/
4059     int thisAudioIndex = [sender indexOfSelectedItem] - 1;
4060
4061     /* pointer for the hb_audio_s struct we will use later on */
4062     hb_audio_config_t * audio;
4063
4064     int acodec;
4065     /* check if the audio mixdown controls need their enabled state changing */
4066     [self setEnabledStateOfAudioMixdownControls:nil];
4067
4068     if (thisAudioIndex != -1)
4069     {
4070
4071         /* get the audio */
4072         audio = (hb_audio_config_t *) hb_list_audio_config_item( fTitle->list_audio, thisAudioIndex );// Should "fTitle" be title and be setup ?
4073
4074         /* actually manipulate the proper mixdowns here */
4075         /* delete the previous audio mixdown options */
4076         [mixdownPopUp removeAllItems];
4077
4078         acodec = [[audiocodecPopUp selectedItem] tag];
4079
4080         if (audio != NULL)
4081         {
4082
4083             /* find out if our selected output audio codec supports mono and / or 6ch */
4084             /* we also check for an input codec of AC3 or DCA,
4085              as they are the only libraries able to do the mixdown to mono / conversion to 6-ch */
4086             /* audioCodecsSupportMono and audioCodecsSupport6Ch are the same for now,
4087              but this may change in the future, so they are separated for flexibility */
4088             int audioCodecsSupportMono =
4089                     (audio->in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA)) &&
4090                     (acodec != HB_ACODEC_LAME);
4091             int audioCodecsSupport6Ch =
4092                     (audio->in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA)) &&
4093                     (acodec != HB_ACODEC_LAME);
4094             
4095             /* check for AC-3 passthru */
4096             if (audio->in.codec == HB_ACODEC_AC3 && acodec == HB_ACODEC_AC3)
4097             {
4098                 
4099             NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4100                  [NSString stringWithCString: "AC3 Passthru"]
4101                                                action: NULL keyEquivalent: @""];
4102              [menuItem setTag: HB_ACODEC_AC3];   
4103             }
4104             else
4105             {
4106                 
4107                 /* add the appropriate audio mixdown menuitems to the popupbutton */
4108                 /* in each case, we set the new menuitem's tag to be the amixdown value for that mixdown,
4109                  so that we can reference the mixdown later */
4110                 
4111                 /* keep a track of the min and max mixdowns we used, so we can select the best match later */
4112                 int minMixdownUsed = 0;
4113                 int maxMixdownUsed = 0;
4114                 
4115                 /* get the input channel layout without any lfe channels */
4116                 int layout = audio->in.channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK;
4117                 
4118                 /* do we want to add a mono option? */
4119                 if (audioCodecsSupportMono == 1)
4120                 {
4121                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4122                                             [NSString stringWithCString: hb_audio_mixdowns[0].human_readable_name]
4123                                                                           action: NULL keyEquivalent: @""];
4124                     [menuItem setTag: hb_audio_mixdowns[0].amixdown];
4125                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[0].amixdown;
4126                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[0].amixdown);
4127                 }
4128                 
4129                 /* do we want to add a stereo option? */
4130                 /* offer stereo if we have a mono source and non-mono-supporting codecs, as otherwise we won't have a mixdown at all */
4131                 /* also offer stereo if we have a stereo-or-better source */
4132                 if ((layout == HB_INPUT_CH_LAYOUT_MONO && audioCodecsSupportMono == 0) || layout >= HB_INPUT_CH_LAYOUT_STEREO)
4133                 {
4134                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4135                                             [NSString stringWithCString: hb_audio_mixdowns[1].human_readable_name]
4136                                                                           action: NULL keyEquivalent: @""];
4137                     [menuItem setTag: hb_audio_mixdowns[1].amixdown];
4138                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[1].amixdown;
4139                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[1].amixdown);
4140                 }
4141                 
4142                 /* do we want to add a dolby surround (DPL1) option? */
4143                 if (layout == HB_INPUT_CH_LAYOUT_3F1R || layout == HB_INPUT_CH_LAYOUT_3F2R || layout == HB_INPUT_CH_LAYOUT_DOLBY)
4144                 {
4145                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4146                                             [NSString stringWithCString: hb_audio_mixdowns[2].human_readable_name]
4147                                                                           action: NULL keyEquivalent: @""];
4148                     [menuItem setTag: hb_audio_mixdowns[2].amixdown];
4149                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[2].amixdown;
4150                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[2].amixdown);
4151                 }
4152                 
4153                 /* do we want to add a dolby pro logic 2 (DPL2) option? */
4154                 if (layout == HB_INPUT_CH_LAYOUT_3F2R)
4155                 {
4156                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4157                                             [NSString stringWithCString: hb_audio_mixdowns[3].human_readable_name]
4158                                                                           action: NULL keyEquivalent: @""];
4159                     [menuItem setTag: hb_audio_mixdowns[3].amixdown];
4160                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[3].amixdown;
4161                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[3].amixdown);
4162                 }
4163                 
4164                 /* do we want to add a 6-channel discrete option? */
4165                 if (audioCodecsSupport6Ch == 1 && layout == HB_INPUT_CH_LAYOUT_3F2R && (audio->in.channel_layout & HB_INPUT_CH_LAYOUT_HAS_LFE))
4166                 {
4167                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4168                                             [NSString stringWithCString: hb_audio_mixdowns[4].human_readable_name]
4169                                                                           action: NULL keyEquivalent: @""];
4170                     [menuItem setTag: hb_audio_mixdowns[4].amixdown];
4171                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[4].amixdown;
4172                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[4].amixdown);
4173                 }
4174                 
4175                 /* do we want to add an AC-3 passthrough option? */
4176                 if (audio->in.codec == HB_ACODEC_AC3 && acodec == HB_ACODEC_AC3) 
4177                 {
4178                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4179                                             [NSString stringWithCString: hb_audio_mixdowns[5].human_readable_name]
4180                                                                           action: NULL keyEquivalent: @""];
4181                     [menuItem setTag: HB_ACODEC_AC3];
4182                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[5].amixdown;
4183                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[5].amixdown);
4184                 }
4185                 
4186                 /* auto-select the best mixdown based on our saved mixdown preference */
4187                 
4188                 /* for now, this is hard-coded to a "best" mixdown of HB_AMIXDOWN_DOLBYPLII */
4189                 /* ultimately this should be a prefs option */
4190                 int useMixdown;
4191                 
4192                 /* if we passed in a mixdown to use - in order to load a preset - then try and use it */
4193                 if (mixdownToUse > 0)
4194                 {
4195                     useMixdown = mixdownToUse;
4196                 }
4197                 else
4198                 {
4199                     useMixdown = HB_AMIXDOWN_DOLBYPLII;
4200                 }
4201                 
4202                 /* if useMixdown > maxMixdownUsed, then use maxMixdownUsed */
4203                 if (useMixdown > maxMixdownUsed)
4204                 { 
4205                     useMixdown = maxMixdownUsed;
4206                 }
4207                 
4208                 /* if useMixdown < minMixdownUsed, then use minMixdownUsed */
4209                 if (useMixdown < minMixdownUsed)
4210                 { 
4211                     useMixdown = minMixdownUsed;
4212                 }
4213                 
4214                 /* select the (possibly-amended) preferred mixdown */
4215                 [mixdownPopUp selectItemWithTag: useMixdown];
4216
4217             }
4218             /* In the case of a source track that is not AC3 and the user tries to use AC3 Passthru (which does not work)
4219              * we force the Audio Codec choice back to a workable codec. We use MP3 for avi and aac for all
4220              * other containers.
4221              */
4222             if (audio->in.codec != HB_ACODEC_AC3 && [[audiocodecPopUp selectedItem] tag] == HB_ACODEC_AC3)
4223             {
4224                 /* If we are using the avi container, we select MP3 as there is no aac available*/
4225                 if ([[fDstFormatPopUp selectedItem] tag] == HB_MUX_AVI)
4226                 {
4227                     [audiocodecPopUp selectItemWithTag: HB_ACODEC_LAME];
4228                 }
4229                 else
4230                 {
4231                     [audiocodecPopUp selectItemWithTag: HB_ACODEC_FAAC];
4232                 }
4233             }
4234             /* Setup our samplerate and bitrate popups we will need based on mixdown */
4235             [self audioTrackMixdownChanged: mixdownPopUp];             
4236         }
4237     
4238     }
4239     if( [fDstFormatPopUp indexOfSelectedItem] == 0 )
4240     {
4241         [self autoSetM4vExtension: sender];
4242         [self shouldEnableHttpMp4CheckBox: sender];
4243     }
4244 }
4245
4246 - (IBAction) audioTrackMixdownChanged: (id) sender
4247 {
4248     
4249     int acodec;
4250     /* setup pointers to all of the other audio track controls
4251     * we will need later
4252     */
4253     NSPopUpButton * mixdownPopUp;
4254     NSPopUpButton * sampleratePopUp;
4255     NSPopUpButton * bitratePopUp;
4256     NSPopUpButton * audiocodecPopUp;
4257     NSPopUpButton * audiotrackPopUp;
4258     NSSlider * drcSlider;
4259     NSTextField * drcField;
4260     if (sender == fAudTrack1MixPopUp)
4261     {
4262         audiotrackPopUp = fAudLang1PopUp;
4263         audiocodecPopUp = fAudTrack1CodecPopUp;
4264         mixdownPopUp = fAudTrack1MixPopUp;
4265         sampleratePopUp = fAudTrack1RatePopUp;
4266         bitratePopUp = fAudTrack1BitratePopUp;
4267         drcSlider = fAudTrack1DrcSlider;
4268         drcField = fAudTrack1DrcField;
4269     }
4270     else if (sender == fAudTrack2MixPopUp)
4271     {
4272         audiotrackPopUp = fAudLang2PopUp;
4273         audiocodecPopUp = fAudTrack2CodecPopUp;
4274         mixdownPopUp = fAudTrack2MixPopUp;
4275         sampleratePopUp = fAudTrack2RatePopUp;
4276         bitratePopUp = fAudTrack2BitratePopUp;
4277         drcSlider = fAudTrack2DrcSlider;
4278         drcField = fAudTrack2DrcField;
4279     }
4280     else if (sender == fAudTrack3MixPopUp)
4281     {
4282         audiotrackPopUp = fAudLang3PopUp;
4283         audiocodecPopUp = fAudTrack3CodecPopUp;
4284         mixdownPopUp = fAudTrack3MixPopUp;
4285         sampleratePopUp = fAudTrack3RatePopUp;
4286         bitratePopUp = fAudTrack3BitratePopUp;
4287         drcSlider = fAudTrack3DrcSlider;
4288         drcField = fAudTrack3DrcField;
4289     }
4290     else
4291     {
4292         audiotrackPopUp = fAudLang4PopUp;
4293         audiocodecPopUp = fAudTrack4CodecPopUp;
4294         mixdownPopUp = fAudTrack4MixPopUp;
4295         sampleratePopUp = fAudTrack4RatePopUp;
4296         bitratePopUp = fAudTrack4BitratePopUp;
4297         drcSlider = fAudTrack4DrcSlider;
4298         drcField = fAudTrack4DrcField;
4299     }
4300     acodec = [[audiocodecPopUp selectedItem] tag];
4301     /* storage variable for the min and max bitrate allowed for this codec */
4302     int minbitrate;
4303     int maxbitrate;
4304     
4305     switch( acodec )
4306     {
4307         case HB_ACODEC_FAAC:
4308             /* check if we have a 6ch discrete conversion in either audio track */
4309             if ([[mixdownPopUp selectedItem] tag] == HB_AMIXDOWN_6CH)
4310             {
4311                 /* FAAC is happy using our min bitrate of 32 kbps, even for 6ch */
4312                 minbitrate = 32;
4313                 /* If either mixdown popup includes 6-channel discrete, then allow up to 384 kbps */
4314                 maxbitrate = 384;
4315                 break;
4316             }
4317             else
4318             {
4319                 /* FAAC is happy using our min bitrate of 32 kbps for stereo or mono */
4320                 minbitrate = 32;
4321                 /* FAAC won't honour anything more than 160 for stereo, so let's not offer it */
4322                 /* note: haven't dealt with mono separately here, FAAC will just use the max it can */
4323                 maxbitrate = 160;
4324                 break;
4325             }
4326             
4327             case HB_ACODEC_LAME:
4328             /* Lame is happy using our min bitrate of 32 kbps */
4329             minbitrate = 32;
4330             /* Lame won't encode if the bitrate is higher than 320 kbps */
4331             maxbitrate = 320;
4332             break;
4333             
4334             case HB_ACODEC_VORBIS:
4335             if ([[mixdownPopUp selectedItem] tag] == HB_AMIXDOWN_6CH)
4336             {
4337                 /* Vorbis causes a crash if we use a bitrate below 192 kbps with 6 channel */
4338                 minbitrate = 192;
4339                 /* If either mixdown popup includes 6-channel discrete, then allow up to 384 kbps */
4340                 maxbitrate = 384;
4341                 break;
4342             }
4343             else
4344             {
4345                 /* Vorbis causes a crash if we use a bitrate below 48 kbps */
4346                 minbitrate = 48;
4347                 /* Vorbis can cope with 384 kbps quite happily, even for stereo */
4348                 maxbitrate = 384;
4349                 break;
4350             }
4351             
4352             default:
4353             /* AC3 passthru disables the bitrate dropdown anyway, so we might as well just use the min and max bitrate */
4354             minbitrate = 32;
4355             maxbitrate = 384;
4356             
4357     }
4358     
4359     /* make sure we have a selected title before continuing */
4360     if (fTitle == NULL) return;
4361     /* get the audio so we can find out what input rates are*/
4362     hb_audio_config_t * audio;
4363     audio = (hb_audio_config_t *) hb_list_audio_config_item( fTitle->list_audio, [audiotrackPopUp indexOfSelectedItem] - 1 );
4364     int inputbitrate = audio->in.bitrate / 1000;
4365     int inputsamplerate = audio->in.samplerate;
4366     
4367     if ([[mixdownPopUp selectedItem] tag] != HB_ACODEC_AC3)
4368     {
4369         [bitratePopUp removeAllItems];
4370         
4371         for( int i = 0; i < hb_audio_bitrates_count; i++ )
4372         {
4373             if (hb_audio_bitrates[i].rate >= minbitrate && hb_audio_bitrates[i].rate <= maxbitrate)
4374             {
4375                 /* add a new menuitem for this bitrate */
4376                 NSMenuItem *menuItem = [[bitratePopUp menu] addItemWithTitle:
4377                                         [NSString stringWithCString: hb_audio_bitrates[i].string]
4378                                                                       action: NULL keyEquivalent: @""];
4379                 /* set its tag to be the actual bitrate as an integer, so we can retrieve it later */
4380                 [menuItem setTag: hb_audio_bitrates[i].rate];
4381             }
4382         }
4383         
4384         /* select the default bitrate (but use 384 for 6-ch AAC) */
4385         if ([[mixdownPopUp selectedItem] tag] == HB_AMIXDOWN_6CH)
4386         {
4387             [bitratePopUp selectItemWithTag: 384];
4388         }
4389         else
4390         {
4391             [bitratePopUp selectItemWithTag: hb_audio_bitrates[hb_audio_bitrates_default].rate];
4392         }
4393     }
4394     /* populate and set the sample rate popup */
4395     /* Audio samplerate */
4396     [sampleratePopUp removeAllItems];
4397     /* we create a same as source selection (Auto) so that we can choose to use the input sample rate */
4398     NSMenuItem *menuItem = [[sampleratePopUp menu] addItemWithTitle: @"Auto" action: NULL keyEquivalent: @""];
4399     [menuItem setTag: inputsamplerate];
4400     
4401     for( int i = 0; i < hb_audio_rates_count; i++ )
4402     {
4403         NSMenuItem *menuItem = [[sampleratePopUp menu] addItemWithTitle:
4404                                 [NSString stringWithCString: hb_audio_rates[i].string]
4405                                                                  action: NULL keyEquivalent: @""];
4406         [menuItem setTag: hb_audio_rates[i].rate];
4407     }
4408     /* We use the input sample rate as the default sample rate as downsampling just makes audio worse
4409     * and there is no compelling reason to use anything else as default, though the users default
4410     * preset will likely override any setting chosen here.
4411     */
4412     [sampleratePopUp selectItemWithTag: inputsamplerate];
4413     
4414     
4415     /* Since AC3 Pass Thru uses the input ac3 bitrate and sample rate, we get the input tracks
4416     * bitrate and dispay it in the bitrate popup even though libhb happily ignores any bitrate input from
4417     * the gui. We do this for better user feedback in the audio tab as well as the queue for the most part
4418     */
4419     if ([[mixdownPopUp selectedItem] tag] == HB_ACODEC_AC3)
4420     {
4421         
4422         /* lets also set the bitrate popup to the input bitrate as thats what passthru will use */
4423         [bitratePopUp removeAllItems];
4424         NSMenuItem *menuItem = [[bitratePopUp menu] addItemWithTitle:
4425                                 [NSString stringWithFormat:@"%d", inputbitrate]
4426                                                               action: NULL keyEquivalent: @""];
4427         [menuItem setTag: inputbitrate];
4428         /* For ac3 passthru we disable the sample rate and bitrate popups as well as the drc slider*/
4429         [bitratePopUp setEnabled: NO];
4430         [sampleratePopUp setEnabled: NO];
4431         
4432         [drcSlider setFloatValue: 1.00];
4433         [self audioDRCSliderChanged: drcSlider];
4434         [drcSlider setEnabled: NO];
4435         [drcField setEnabled: NO];
4436     }
4437     else
4438     {
4439         [sampleratePopUp setEnabled: YES];
4440         [bitratePopUp setEnabled: YES];
4441         [drcSlider setEnabled: YES];
4442         [drcField setEnabled: YES];
4443     }
4444     
4445 }
4446
4447 - (IBAction) audioDRCSliderChanged: (id) sender
4448 {
4449     NSSlider * drcSlider;
4450     NSTextField * drcField;
4451     if (sender == fAudTrack1DrcSlider)
4452     {
4453         drcSlider = fAudTrack1DrcSlider;
4454         drcField = fAudTrack1DrcField;
4455     }
4456     else if (sender == fAudTrack2DrcSlider)
4457     {
4458         drcSlider = fAudTrack2DrcSlider;
4459         drcField = fAudTrack2DrcField;
4460     }
4461     else if (sender == fAudTrack3DrcSlider)
4462     {
4463         drcSlider = fAudTrack3DrcSlider;
4464         drcField = fAudTrack3DrcField;
4465     }
4466     else
4467     {
4468         drcSlider = fAudTrack4DrcSlider;
4469         drcField = fAudTrack4DrcField;
4470     }
4471     [drcField setStringValue: [NSString stringWithFormat: @"%.2f", [drcSlider floatValue]]];
4472     /* For now, do not call this until we have an intelligent way to determine audio track selections
4473     * compared to presets
4474     */
4475     //[self customSettingUsed: sender];
4476 }
4477
4478 - (IBAction) subtitleSelectionChanged: (id) sender
4479 {
4480         if ([fSubPopUp indexOfSelectedItem] == 0)
4481         {
4482         [fSubForcedCheck setState: NSOffState];
4483         [fSubForcedCheck setEnabled: NO];       
4484         }
4485         else
4486         {
4487         [fSubForcedCheck setEnabled: YES];      
4488         }
4489         
4490 }
4491
4492
4493
4494
4495 #pragma mark -
4496 #pragma mark Open New Windows
4497
4498 - (IBAction) openHomepage: (id) sender
4499 {
4500     [[NSWorkspace sharedWorkspace] openURL: [NSURL
4501         URLWithString:@"http://handbrake.fr/"]];
4502 }
4503
4504 - (IBAction) openForums: (id) sender
4505 {
4506     [[NSWorkspace sharedWorkspace] openURL: [NSURL
4507         URLWithString:@"http://handbrake.fr/forum/"]];
4508 }
4509 - (IBAction) openUserGuide: (id) sender
4510 {
4511     [[NSWorkspace sharedWorkspace] openURL: [NSURL
4512         URLWithString:@"http://handbrake.fr/trac/wiki/HandBrakeGuide"]];
4513 }
4514
4515 /**
4516  * Shows debug output window.
4517  */
4518 - (IBAction)showDebugOutputPanel:(id)sender
4519 {
4520     [outputPanel showOutputPanel:sender];
4521 }
4522
4523 /**
4524  * Shows preferences window.
4525  */
4526 - (IBAction) showPreferencesWindow: (id) sender
4527 {
4528     NSWindow * window = [fPreferencesController window];
4529     if (![window isVisible])
4530         [window center];
4531
4532     [window makeKeyAndOrderFront: nil];
4533 }
4534
4535 /**
4536  * Shows queue window.
4537  */
4538 - (IBAction) showQueueWindow:(id)sender
4539 {
4540     [fQueueController showQueueWindow:sender];
4541 }
4542
4543
4544 - (IBAction) toggleDrawer:(id)sender {
4545     [fPresetDrawer toggle:self];
4546 }
4547
4548 /**
4549  * Shows Picture Settings Window.
4550  */
4551
4552 - (IBAction) showPicturePanel: (id) sender
4553 {
4554         hb_list_t  * list  = hb_get_titles( fHandle );
4555     hb_title_t * title = (hb_title_t *) hb_list_item( list,
4556             [fSrcTitlePopUp indexOfSelectedItem] );
4557     [fPictureController showPanelInWindow:fWindow forTitle:title];
4558 }
4559
4560 #pragma mark -
4561 #pragma mark Preset Outline View Methods
4562 #pragma mark - Required
4563 /* These are required by the NSOutlineView Datasource Delegate */
4564 /* We use this to deterimine children of an item */
4565 - (id)outlineView:(NSOutlineView *)fPresetsOutlineView child:(NSInteger)index ofItem:(id)item
4566 {
4567 if (item == nil)
4568         return [UserPresets objectAtIndex:index];
4569     
4570     // We are only one level deep, so we can't be asked about children
4571     NSAssert (NO, @"Presets View outlineView:child:ofItem: currently can't handle nested items.");
4572     return nil;
4573 }
4574 /* We use this to determine if an item should be expandable */
4575 - (BOOL)outlineView:(NSOutlineView *)fPresetsOutlineView isItemExpandable:(id)item
4576 {
4577
4578     /* For now, we maintain one level, so set to no
4579     * when nested, we set to yes for any preset "folders"
4580     */
4581     return NO;
4582
4583 }
4584 /* used to specify the number of levels to show for each item */
4585 - (int)outlineView:(NSOutlineView *)fPresetsOutlineView numberOfChildrenOfItem:(id)item
4586 {
4587     /* currently use no levels to test outline view viability */
4588     if (item == nil)
4589         return [UserPresets count];
4590     else
4591         return 0;
4592 }
4593 /* Used to tell the outline view which information is to be displayed per item */
4594 - (id)outlineView:(NSOutlineView *)fPresetsOutlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item
4595 {
4596         /* We have two columns right now, icon and PresetName */
4597         
4598     if ([[tableColumn identifier] isEqualToString:@"PresetName"])
4599     {
4600         return [item objectForKey:@"PresetName"];
4601     }
4602     else
4603     {
4604         return @"something";
4605     }
4606 }
4607
4608 #pragma mark - Added Functionality (optional)
4609 /* Use to customize the font and display characteristics of the title cell */
4610 - (void)outlineView:(NSOutlineView *)outlineView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn item:(id)item
4611 {
4612     if ([[tableColumn identifier] isEqualToString:@"PresetName"])
4613     {
4614         NSDictionary *userPresetDict = item;
4615         NSFont *txtFont;
4616         NSColor *fontColor;
4617         NSColor *shadowColor;
4618         txtFont = [NSFont systemFontOfSize: [NSFont smallSystemFontSize]];
4619         /*check to see if its a selected row */
4620         if ([fPresetsOutlineView selectedRow] == [fPresetsOutlineView rowForItem:item])
4621         {
4622             
4623             fontColor = [NSColor blackColor];
4624             shadowColor = [NSColor colorWithDeviceRed:(127.0/255.0) green:(140.0/255.0) blue:(160.0/255.0) alpha:1.0];
4625         }
4626         else
4627         {
4628             if ([[userPresetDict objectForKey:@"Type"] intValue] == 0)
4629             {
4630                 fontColor = [NSColor blueColor];
4631             }
4632             else // User created preset, use a black font
4633             {
4634                 fontColor = [NSColor blackColor];
4635             }
4636             shadowColor = nil;
4637         }
4638         /* We use Bold Text for the HB Default */
4639         if ([[userPresetDict objectForKey:@"Default"] intValue] == 1)// 1 is HB default
4640         {
4641             txtFont = [NSFont boldSystemFontOfSize: [NSFont smallSystemFontSize]];
4642         }
4643         /* We use Bold Text for the User Specified Default */
4644         if ([[userPresetDict objectForKey:@"Default"] intValue] == 2)// 2 is User default
4645         {
4646             txtFont = [NSFont boldSystemFontOfSize: [NSFont smallSystemFontSize]];
4647         }
4648         
4649         
4650         [cell setTextColor:fontColor];
4651         [cell setFont:txtFont];
4652         
4653     }
4654 }
4655
4656 /* We use this to edit the name field in the outline view */
4657 - (void)outlineView:(NSOutlineView *)outlineView setObjectValue:(id)object forTableColumn:(NSTableColumn *)tableColumn byItem:(id)item
4658 {
4659     if ([[tableColumn identifier] isEqualToString:@"PresetName"])
4660     {
4661         id theRecord;
4662         
4663         theRecord = item;
4664         [theRecord setObject:object forKey:@"PresetName"];
4665         
4666         [self sortPresets];
4667         
4668         [fPresetsOutlineView reloadData];
4669         /* We save all of the preset data here */
4670         [self savePreset];
4671     }
4672 }
4673 /* We use this to provide tooltips for the items in the presets outline view */
4674 - (NSString *)outlineView:(NSOutlineView *)fPresetsOutlineView toolTipForCell:(NSCell *)cell rect:(NSRectPointer)rect tableColumn:(NSTableColumn *)tc item:(id)item mouseLocation:(NSPoint)mouseLocation
4675 {
4676     //if ([[tc identifier] isEqualToString:@"PresetName"])
4677     //{
4678         /* initialize the tooltip contents variable */
4679         NSString *loc_tip;
4680         /* if there is a description for the preset, we show it in the tooltip */
4681         if ([item objectForKey:@"PresetDescription"])
4682         {
4683             loc_tip = [item objectForKey:@"PresetDescription"];
4684             return (loc_tip);
4685         }
4686         else
4687         {
4688             loc_tip = @"No description available";
4689         }
4690         return (loc_tip);
4691     //}
4692 }
4693
4694 #pragma mark -
4695 #pragma mark Preset Outline View Methods (dragging related)
4696
4697
4698 - (BOOL)outlineView:(NSOutlineView *)outlineView writeItems:(NSArray *)items toPasteboard:(NSPasteboard *)pboard
4699 {
4700         // Dragging is only allowed for custom presets.
4701         if ([[[UserPresets objectAtIndex:[fPresetsOutlineView selectedRow]] objectForKey:@"Type"] intValue] == 0) // 0 is built in preset
4702     {
4703         return NO;
4704     }
4705     // Don't retain since this is just holding temporaral drag information, and it is
4706     //only used during a drag!  We could put this in the pboard actually.
4707     fDraggedNodes = items;
4708     // Provide data for our custom type, and simple NSStrings.
4709     [pboard declareTypes:[NSArray arrayWithObjects: DragDropSimplePboardType, nil] owner:self];
4710     
4711     // the actual data doesn't matter since DragDropSimplePboardType drags aren't recognized by anyone but us!.
4712     [pboard setData:[NSData data] forType:DragDropSimplePboardType]; 
4713     
4714     return YES;
4715 }
4716
4717 - (NSDragOperation)outlineView:(NSOutlineView *)outlineView validateDrop:(id <NSDraggingInfo>)info proposedItem:(id)item proposedChildIndex:(int)index
4718 {
4719         // Don't allow dropping ONTO an item since they can't really contain any children.
4720     
4721     BOOL isOnDropTypeProposal = index == NSOutlineViewDropOnItemIndex;
4722     if (isOnDropTypeProposal)
4723         return NSDragOperationNone;
4724     
4725     
4726         // Don't allow dropping INTO an item since they can't really contain any children as of yet.
4727         
4728     if (item != nil)
4729         {
4730                 index = [fPresetsOutlineView rowForItem: item] + 1;
4731                 item = nil;
4732         }
4733     
4734     // Don't allow dropping into the Built In Presets.
4735     if (index < presetCurrentBuiltInCount)
4736     {
4737         return NSDragOperationNone;
4738         index = MAX (index, presetCurrentBuiltInCount);
4739         }
4740         
4741     [outlineView setDropItem:item dropChildIndex:index];
4742     return NSDragOperationGeneric;
4743 }
4744
4745
4746
4747 - (BOOL)outlineView:(NSOutlineView *)outlineView acceptDrop:(id <NSDraggingInfo>)info item:(id)item childIndex:(int)index
4748 {
4749     NSMutableIndexSet *moveItems = [NSMutableIndexSet indexSet];
4750     
4751     id obj;
4752     NSEnumerator *enumerator = [fDraggedNodes objectEnumerator];
4753     while (obj = [enumerator nextObject])
4754     {
4755         [moveItems addIndex:[UserPresets indexOfObject:obj]];
4756     }
4757     // Successful drop, lets rearrange the view and save it all
4758     [self moveObjectsInPresetsArray:UserPresets fromIndexes:moveItems toIndex: index];
4759     [fPresetsOutlineView reloadData];
4760     [self savePreset];
4761     return YES;
4762 }
4763
4764 - (void)moveObjectsInPresetsArray:(NSMutableArray *)array fromIndexes:(NSIndexSet *)indexSet toIndex:(unsigned)insertIndex
4765 {
4766     unsigned index = [indexSet lastIndex];
4767     unsigned aboveInsertIndexCount = 0;
4768     
4769     while (index != NSNotFound)
4770     {
4771         unsigned removeIndex;
4772         
4773         if (index >= insertIndex)
4774         {
4775             removeIndex = index + aboveInsertIndexCount;
4776             aboveInsertIndexCount++;
4777         }
4778         else
4779         {
4780             removeIndex = index;
4781             insertIndex--;
4782         }
4783         
4784         id object = [[array objectAtIndex:removeIndex] retain];
4785         [array removeObjectAtIndex:removeIndex];
4786         [array insertObject:object atIndex:insertIndex];
4787         [object release];
4788         
4789         index = [indexSet indexLessThanIndex:index];
4790     }
4791 }
4792
4793
4794
4795 #pragma mark - Functional Preset NSOutlineView Methods
4796
4797 - (IBAction)selectPreset:(id)sender
4798 {
4799
4800     if ([fPresetsOutlineView selectedRow] >= 0)
4801     {
4802         chosenPreset = [fPresetsOutlineView itemAtRow:[fPresetsOutlineView selectedRow]];
4803         /* we set the preset display field in main window here */
4804         [fPresetSelectedDisplay setStringValue:[chosenPreset objectForKey:@"PresetName"]];
4805         if ([[chosenPreset objectForKey:@"Default"] intValue] == 1)
4806         {
4807             [fPresetSelectedDisplay setStringValue:[NSString stringWithFormat:@"%@ (Default)", [chosenPreset objectForKey:@"PresetName"]]];
4808         }
4809         else
4810         {
4811             [fPresetSelectedDisplay setStringValue:[chosenPreset objectForKey:@"PresetName"]];
4812         }
4813         /* File Format */
4814         [fDstFormatPopUp selectItemWithTitle:[chosenPreset objectForKey:@"FileFormat"]];
4815         [self formatPopUpChanged:nil];
4816
4817         /* Chapter Markers*/
4818         [fCreateChapterMarkers setState:[[chosenPreset objectForKey:@"ChapterMarkers"] intValue]];
4819         /* Allow Mpeg4 64 bit formatting +4GB file sizes */
4820         [fDstMp4LargeFileCheck setState:[[chosenPreset objectForKey:@"Mp4LargeFile"] intValue]];
4821         /* Mux mp4 with http optimization */
4822         [fDstMp4HttpOptFileCheck setState:[[chosenPreset objectForKey:@"Mp4HttpOptimize"] intValue]];
4823
4824         /* Video encoder */
4825         /* We set the advanced opt string here if applicable*/
4826         [fAdvancedOptions setOptions:[chosenPreset objectForKey:@"x264Option"]];
4827         /* We use a conditional to account for the new x264 encoder dropdown as well as presets made using legacy x264 settings*/
4828         if ([[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"x264 (h.264 Main)"] ||
4829             [[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"x264 (h.264 iPod)"] ||
4830             [[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"x264"])
4831         {
4832             [fVidEncoderPopUp selectItemWithTitle:@"H.264 (x264)"];
4833             /* special case for legacy preset to check the new fDstMp4HttpOptFileCheck checkbox to set the ipod atom */
4834             if ([[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"x264 (h.264 iPod)"])
4835             {
4836                 [fDstMp4iPodFileCheck setState:NSOnState];
4837                 /* We also need to add "level=30:" to the advanced opts string to set the correct level for the iPod when
4838                  encountering a legacy preset as it used to be handled separately from the opt string*/
4839                 [fAdvancedOptions setOptions:[@"level=30:" stringByAppendingString:[fAdvancedOptions optionsString]]];
4840             }
4841             else
4842             {
4843                 [fDstMp4iPodFileCheck setState:NSOffState];
4844             }
4845         }
4846         else if ([[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"FFmpeg"])
4847         {
4848             [fVidEncoderPopUp selectItemWithTitle:@"MPEG-4 (FFmpeg)"];
4849         }
4850         else if ([[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"XviD"])
4851         {
4852             [fVidEncoderPopUp selectItemWithTitle:@"MPEG-4 (XviD)"];
4853         }
4854         else
4855         {
4856             [fVidEncoderPopUp selectItemWithTitle:[chosenPreset objectForKey:@"VideoEncoder"]];
4857         }
4858
4859         /* Lets run through the following functions to get variables set there */
4860         [self videoEncoderPopUpChanged:nil];
4861         /* Set the state of ipod compatible with Mp4iPodCompatible. Only for x264*/
4862         [fDstMp4iPodFileCheck setState:[[chosenPreset objectForKey:@"Mp4iPodCompatible"] intValue]];
4863         [self calculateBitrate:nil];
4864
4865         /* Video quality */
4866         [fVidQualityMatrix selectCellAtRow:[[chosenPreset objectForKey:@"VideoQualityType"] intValue] column:0];
4867
4868         [fVidTargetSizeField setStringValue:[chosenPreset objectForKey:@"VideoTargetSize"]];
4869         [fVidBitrateField setStringValue:[chosenPreset objectForKey:@"VideoAvgBitrate"]];
4870         [fVidQualitySlider setFloatValue:[[chosenPreset objectForKey:@"VideoQualitySlider"] floatValue]];
4871
4872         [self videoMatrixChanged:nil];
4873
4874         /* Video framerate */
4875         /* For video preset video framerate, we want to make sure that Same as source does not conflict with the
4876          detected framerate in the fVidRatePopUp so we use index 0*/
4877         if ([[chosenPreset objectForKey:@"VideoFramerate"] isEqualToString:@"Same as source"])
4878         {
4879             [fVidRatePopUp selectItemAtIndex: 0];
4880         }
4881         else
4882         {
4883             [fVidRatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"VideoFramerate"]];
4884         }
4885
4886         /* GrayScale */
4887         [fVidGrayscaleCheck setState:[[chosenPreset objectForKey:@"VideoGrayScale"] intValue]];
4888
4889         /* 2 Pass Encoding */
4890         [fVidTwoPassCheck setState:[[chosenPreset objectForKey:@"VideoTwoPass"] intValue]];
4891         [self twoPassCheckboxChanged:nil];
4892         /* Turbo 1st pass for 2 Pass Encoding */
4893         [fVidTurboPassCheck setState:[[chosenPreset objectForKey:@"VideoTurboTwoPass"] intValue]];
4894
4895         /*Audio*/
4896         if ([chosenPreset objectForKey:@"FileCodecs"])
4897         {
4898             /* We need to handle the audio codec popup by determining what was chosen from the deprecated Codecs PopUp for past presets*/
4899             if ([[chosenPreset objectForKey:@"FileCodecs"] isEqualToString: @"AVC/H.264 Video / AAC + AC3 Audio"])
4900             {
4901                 /* We need to address setting languages etc. here in the new multi track audio panel */
4902                 /* Track One set here */
4903                 /*for track one though a track should be selected but lets check here anyway and use track one if its not.*/
4904                 if ([fAudLang1PopUp indexOfSelectedItem] == 0)
4905                 {
4906                     [fAudLang1PopUp selectItemAtIndex: 1];
4907                     [self audioTrackPopUpChanged: fAudLang1PopUp];
4908                 }
4909                 [fAudTrack1CodecPopUp selectItemWithTitle: @"AAC (faac)"];
4910                 [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
4911                 /* Track Two, set source same as track one */
4912                 [fAudLang2PopUp selectItemAtIndex: [fAudLang1PopUp indexOfSelectedItem]];
4913                 [self audioTrackPopUpChanged: fAudLang2PopUp];
4914                 [fAudTrack2CodecPopUp selectItemWithTitle: @"AC3 Passthru"];
4915                 [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
4916             }
4917             else if ([[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"MPEG-4 Video / AAC Audio"] ||
4918                      [[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"AVC/H.264 Video / AAC Audio"])
4919             {
4920                 if ([fAudLang1PopUp indexOfSelectedItem] > 0)
4921                 {
4922                     [fAudTrack1CodecPopUp selectItemWithTitle: @"AAC (faac)"];
4923                     [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
4924                 }
4925                 if ([fAudLang2PopUp indexOfSelectedItem] > 0)
4926                 {
4927                     [fAudTrack2CodecPopUp selectItemWithTitle: @"AAC (faac)"];
4928                     [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
4929                 }
4930                 if ([fAudLang3PopUp indexOfSelectedItem] > 0)
4931                 {
4932                     [fAudTrack3CodecPopUp selectItemWithTitle: @"AAC (faac)"];
4933                     [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
4934                 }
4935                 if ([fAudLang4PopUp indexOfSelectedItem] > 0)
4936                 {
4937                     [fAudTrack4CodecPopUp selectItemWithTitle: @"AAC (faac)"];
4938                     [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
4939                 }
4940             }
4941             else if ([[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"MPEG-4 Video / AC-3 Audio"] ||
4942                      [[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"AVC/H.264 Video / AC-3 Audio"])
4943             {
4944                 if ([fAudLang1PopUp indexOfSelectedItem] > 0)
4945                 {
4946                     [fAudTrack1CodecPopUp selectItemWithTitle: @"AC3 Passthru"];
4947                     [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
4948                 }
4949                 if ([fAudLang2PopUp indexOfSelectedItem] > 0)
4950                 {
4951                     [fAudTrack2CodecPopUp selectItemWithTitle: @"AC3 Passthru"];
4952                     [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
4953                 }
4954                 if ([fAudLang3PopUp indexOfSelectedItem] > 0)
4955                 {
4956                     [fAudTrack3CodecPopUp selectItemWithTitle: @"AC3 Passthru"];
4957                     [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
4958                 }
4959                 if ([fAudLang4PopUp indexOfSelectedItem] > 0)
4960                 {
4961                     [fAudTrack4CodecPopUp selectItemWithTitle: @"AC3 Passthru"];
4962                     [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
4963                 }
4964             }
4965             else if ([[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"MPEG-4 Video / MP3 Audio"] ||
4966                      [[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"AVC/H.264 Video / MP3 Audio"])
4967             {
4968                 if ([fAudLang1PopUp indexOfSelectedItem] > 0)
4969                 {
4970                     [fAudTrack1CodecPopUp selectItemWithTitle: @"MP3 (lame)"];
4971                     [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
4972                 }
4973                 if ([fAudLang2PopUp indexOfSelectedItem] > 0)
4974                 {
4975                     [fAudTrack2CodecPopUp selectItemWithTitle: @"MP3 (lame)"];
4976                     [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
4977                 }
4978                 if ([fAudLang3PopUp indexOfSelectedItem] > 0)
4979                 {
4980                     [fAudTrack3CodecPopUp selectItemWithTitle: @"MP3 (lame)"];
4981                     [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
4982                 }
4983                 if ([fAudLang4PopUp indexOfSelectedItem] > 0)
4984                 {
4985                     [fAudTrack4CodecPopUp selectItemWithTitle: @"MP3 (lame)"];
4986                     [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
4987                 }
4988             }
4989             else if ([[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"MPEG-4 Video / Vorbis Audio"])
4990             {
4991                 if ([fAudLang1PopUp indexOfSelectedItem] > 0)
4992                 {
4993                     [fAudTrack1CodecPopUp selectItemWithTitle: @"Vorbis (vorbis)"];
4994                     [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
4995                 }
4996                 if ([fAudLang2PopUp indexOfSelectedItem] > 0)
4997                 {
4998                     [fAudTrack2CodecPopUp selectItemWithTitle: @"Vorbis (vorbis)"];
4999                     [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
5000                 }
5001                 if ([fAudLang3PopUp indexOfSelectedItem] > 0)
5002                 {
5003                     [fAudTrack3CodecPopUp selectItemWithTitle: @"Vorbis (vorbis)"];
5004                     [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
5005                 }
5006                 if ([fAudLang4PopUp indexOfSelectedItem] > 0)
5007                 {
5008                     [fAudTrack4CodecPopUp selectItemWithTitle: @"Vorbis (vorbis)"];
5009                     [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
5010                 }
5011             }
5012             /* We detect here if we have the old audio sample rate and if so we apply samplerate and bitrate to the existing four tracks if chosen
5013             * UNLESS the CodecPopUp is AC3 in which case the preset values are ignored in favor of rates set in audioTrackMixdownChanged*/
5014             if ([chosenPreset objectForKey:@"AudioSampleRate"])
5015             {
5016                 if ([fAudLang1PopUp indexOfSelectedItem] > 0 && [fAudTrack1CodecPopUp titleOfSelectedItem] != @"AC3 Passthru")
5017                 {
5018                     [fAudTrack1RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioSampleRate"]];
5019                     [fAudTrack1BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioBitRate"]];
5020                 }
5021                 if ([fAudLang2PopUp indexOfSelectedItem] > 0 && [fAudTrack2CodecPopUp titleOfSelectedItem] != @"AC3 Passthru")
5022                 {
5023                     [fAudTrack2RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioSampleRate"]];
5024                     [fAudTrack2BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioBitRate"]];
5025                 }
5026                 if ([fAudLang3PopUp indexOfSelectedItem] > 0 && [fAudTrack3CodecPopUp titleOfSelectedItem] != @"AC3 Passthru")
5027                 {
5028                     [fAudTrack3RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioSampleRate"]];
5029                     [fAudTrack3BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioBitRate"]];
5030                 }
5031                 if ([fAudLang4PopUp indexOfSelectedItem] > 0 && [fAudTrack4CodecPopUp titleOfSelectedItem] != @"AC3 Passthru")
5032                 {
5033                     [fAudTrack4RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioSampleRate"]];
5034                     [fAudTrack4BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioBitRate"]];
5035                 }
5036             }
5037             /* We detect here if we have the old DRC Slider and if so we apply it to the existing four tracks if chosen */
5038             if ([chosenPreset objectForKey:@"AudioDRCSlider"])
5039             {
5040                 if ([fAudLang1PopUp indexOfSelectedItem] > 0)
5041                 {
5042                     [fAudTrack1DrcSlider setFloatValue:[[chosenPreset objectForKey:@"AudioDRCSlider"] floatValue]];
5043                     [self audioDRCSliderChanged: fAudTrack1DrcSlider];
5044                 }
5045                 if ([fAudLang2PopUp indexOfSelectedItem] > 0)
5046                 {
5047                     [fAudTrack2DrcSlider setFloatValue:[[chosenPreset objectForKey:@"AudioDRCSlider"] floatValue]];
5048                     [self audioDRCSliderChanged: fAudTrack2DrcSlider];
5049                 }
5050                 if ([fAudLang3PopUp indexOfSelectedItem] > 0)
5051                 {
5052                     [fAudTrack3DrcSlider setFloatValue:[[chosenPreset objectForKey:@"AudioDRCSlider"] floatValue]];
5053                     [self audioDRCSliderChanged: fAudTrack3DrcSlider];
5054                 }
5055                 if ([fAudLang4PopUp indexOfSelectedItem] > 0)
5056                 {
5057                     [fAudTrack4DrcSlider setFloatValue:[[chosenPreset objectForKey:@"AudioDRCSlider"] floatValue]];
5058                     [self audioDRCSliderChanged: fAudTrack4DrcSlider];
5059                 }
5060             }
5061         }
5062         else // since there was no codecs key in the preset we know we can use new multi-audio track presets
5063         {
5064             if ([chosenPreset objectForKey:@"Audio1Track"] > 0)
5065             {
5066                 if ([fAudLang1PopUp indexOfSelectedItem] == 0)
5067                 {
5068                     [fAudLang1PopUp selectItemAtIndex: 1];
5069                 }
5070                 [self audioTrackPopUpChanged: fAudLang1PopUp];
5071                 [fAudTrack1CodecPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio1Encoder"]];
5072                 [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
5073                 [fAudTrack1MixPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio1Mixdown"]];
5074                 /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
5075                  * mixdown*/
5076                 if  ([fAudTrack1MixPopUp selectedItem] == nil)
5077                 {
5078                     [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
5079                 }
5080                 [fAudTrack1RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio1Samplerate"]];
5081                 /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
5082                 if (![[chosenPreset objectForKey:@"Audio1Encoder"] isEqualToString:@"AC3 Passthru"])
5083                 {
5084                     [fAudTrack1BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio1Bitrate"]];
5085                 }
5086                 [fAudTrack1DrcSlider setFloatValue:[[chosenPreset objectForKey:@"Audio1TrackDRCSlider"] floatValue]];
5087                 [self audioDRCSliderChanged: fAudTrack1DrcSlider];
5088             }
5089             if ([chosenPreset objectForKey:@"Audio2Track"] > 0)
5090             {
5091                 if ([fAudLang2PopUp indexOfSelectedItem] == 0)
5092                 {
5093                     [fAudLang2PopUp selectItemAtIndex: 1];
5094                 }
5095                 [self audioTrackPopUpChanged: fAudLang2PopUp];
5096                 [fAudTrack2CodecPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio2Encoder"]];
5097                 [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
5098                 [fAudTrack2MixPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio2Mixdown"]];
5099                 /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
5100                  * mixdown*/
5101                 if  ([fAudTrack2MixPopUp selectedItem] == nil)
5102                 {
5103                     [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
5104                 }
5105                 [fAudTrack2RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio2Samplerate"]];
5106                 /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
5107                 if (![[chosenPreset objectForKey:@"Audio2Encoder"] isEqualToString:@"AC3 Passthru"])
5108                 {
5109                     [fAudTrack2BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio2Bitrate"]];
5110                 }
5111                 [fAudTrack2DrcSlider setFloatValue:[[chosenPreset objectForKey:@"Audio2TrackDRCSlider"] floatValue]];
5112                 [self audioDRCSliderChanged: fAudTrack2DrcSlider];
5113             }
5114             if ([chosenPreset objectForKey:@"Audio3Track"] > 0)
5115             {
5116                 if ([fAudLang3PopUp indexOfSelectedItem] == 0)
5117                 {
5118                     [fAudLang3PopUp selectItemAtIndex: 1];
5119                 }
5120                 [self audioTrackPopUpChanged: fAudLang3PopUp];
5121                 [fAudTrack3CodecPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio3Encoder"]];
5122                 [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
5123                 [fAudTrack3MixPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio3Mixdown"]];
5124                 /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
5125                  * mixdown*/
5126                 if  ([fAudTrack3MixPopUp selectedItem] == nil)
5127                 {
5128                     [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
5129                 }
5130                 [fAudTrack3RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio3Samplerate"]];
5131                 /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
5132                 if (![[chosenPreset objectForKey:@"Audio3Encoder"] isEqualToString: @"AC3 Passthru"])
5133                 {
5134                     [fAudTrack3BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio3Bitrate"]];
5135                 }
5136                 [fAudTrack3DrcSlider setFloatValue:[[chosenPreset objectForKey:@"Audio3TrackDRCSlider"] floatValue]];
5137                 [self audioDRCSliderChanged: fAudTrack3DrcSlider];
5138             }
5139             if ([chosenPreset objectForKey:@"Audio4Track"] > 0)
5140             {
5141                 if ([fAudLang4PopUp indexOfSelectedItem] == 0)
5142                 {
5143                     [fAudLang4PopUp selectItemAtIndex: 1];
5144                 }
5145                 [self audioTrackPopUpChanged: fAudLang4PopUp];
5146                 [fAudTrack4CodecPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio4Encoder"]];
5147                 [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
5148                 [fAudTrack4MixPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio4Mixdown"]];
5149                 /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
5150                  * mixdown*/
5151                 if  ([fAudTrack4MixPopUp selectedItem] == nil)
5152                 {
5153                     [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
5154                 }
5155                 [fAudTrack4RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio4Samplerate"]];
5156                 /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
5157                 if (![[chosenPreset objectForKey:@"Audio4Encoder"] isEqualToString:@"AC3 Passthru"])
5158                 {
5159                     [fAudTrack4BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio4Bitrate"]];
5160                 }
5161                 [fAudTrack4DrcSlider setFloatValue:[[chosenPreset objectForKey:@"Audio4TrackDRCSlider"] floatValue]];
5162                 [self audioDRCSliderChanged: fAudTrack4DrcSlider];
5163             }
5164
5165
5166         }
5167
5168         /* We now cleanup any extra audio tracks that may be previously set if we need to, we do it here so we don't have to
5169          * duplicate any code for legacy presets.*/
5170         /* First we handle the legacy Codecs crazy AVC/H.264 Video / AAC + AC3 Audio atv hybrid */
5171         if ([chosenPreset objectForKey:@"FileCodecs"] && [[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"AVC/H.264 Video / AAC + AC3 Audio"])
5172         {
5173             [fAudLang3PopUp selectItemAtIndex: 0];
5174             [self audioTrackPopUpChanged: fAudLang3PopUp];
5175             [fAudLang4PopUp selectItemAtIndex: 0];
5176             [self audioTrackPopUpChanged: fAudLang4PopUp];
5177         }
5178         else
5179         {
5180             if (![chosenPreset objectForKey:@"Audio2Track"] || [chosenPreset objectForKey:@"Audio2Track"] == 0)
5181             {
5182                 [fAudLang2PopUp selectItemAtIndex: 0];
5183                 [self audioTrackPopUpChanged: fAudLang2PopUp];
5184             }
5185             if (![chosenPreset objectForKey:@"Audio3Track"] || [chosenPreset objectForKey:@"Audio3Track"] > 0)
5186             {
5187                 [fAudLang3PopUp selectItemAtIndex: 0];
5188                 [self audioTrackPopUpChanged: fAudLang3PopUp];
5189             }
5190             if (![chosenPreset objectForKey:@"Audio4Track"] || [chosenPreset objectForKey:@"Audio4Track"] > 0)
5191             {
5192                 [fAudLang4PopUp selectItemAtIndex: 0];
5193                 [self audioTrackPopUpChanged: fAudLang4PopUp];
5194             }
5195         }
5196
5197         /*Subtitles*/
5198         [fSubPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Subtitles"]];
5199         /* Forced Subtitles */
5200         [fSubForcedCheck setState:[[chosenPreset objectForKey:@"SubtitlesForced"] intValue]];
5201
5202         /* Picture Settings */
5203         /* Note: objectForKey:@"UsesPictureSettings" now refers to picture size, this encompasses:
5204          * height, width, keep ar, anamorphic and crop settings.
5205          * picture filters are now handled separately.
5206          * We will be able to actually change the key names for legacy preset keys when preset file
5207          * update code is done. But for now, lets hang onto the old legacy key name for backwards compatibility.
5208          */
5209         /* Check to see if the objectForKey:@"UsesPictureSettings is greater than 0, as 0 means use picture sizing "None" 
5210          * and the preset completely ignores any picture sizing values in the preset.
5211          */
5212         if ([[chosenPreset objectForKey:@"UsesPictureSettings"]  intValue] > 0)
5213         {
5214             hb_job_t * job = fTitle->job;
5215             /* Check to see if the objectForKey:@"UsesPictureSettings is 2 which is "Use Max for the source */
5216             if ([[chosenPreset objectForKey:@"UsesPictureSettings"]  intValue] == 2 || [[chosenPreset objectForKey:@"UsesMaxPictureSettings"]  intValue] == 1)
5217             {
5218                 /* Use Max Picture settings for whatever the dvd is.*/
5219                 [self revertPictureSizeToMax:nil];
5220                 job->keep_ratio = [[chosenPreset objectForKey:@"PictureKeepRatio"]  intValue];
5221                 if (job->keep_ratio == 1)
5222                 {
5223                     hb_fix_aspect( job, HB_KEEP_WIDTH );
5224                     if( job->height > fTitle->height )
5225                     {
5226                         job->height = fTitle->height;
5227                         hb_fix_aspect( job, HB_KEEP_HEIGHT );
5228                     }
5229                 }
5230                 job->pixel_ratio = [[chosenPreset objectForKey:@"PicturePAR"]  intValue];
5231             }
5232             else // /* If not 0 or 2 we assume objectForKey:@"UsesPictureSettings is 1 which is "Use picture sizing from when the preset was set" */
5233             {
5234                 /* we check to make sure the presets width/height does not exceed the sources width/height */
5235                 if (fTitle->width < [[chosenPreset objectForKey:@"PictureWidth"]  intValue] || fTitle->height < [[chosenPreset objectForKey:@"PictureHeight"]  intValue])
5236                 {
5237                     /* if so, then we use the sources height and width to avoid scaling up */
5238                     job->width = fTitle->width;
5239                     job->height = fTitle->height;
5240                 }
5241                 else // source width/height is >= the preset height/width
5242                 {
5243                     /* we can go ahead and use the presets values for height and width */
5244                     job->width = [[chosenPreset objectForKey:@"PictureWidth"]  intValue];
5245                     job->height = [[chosenPreset objectForKey:@"PictureHeight"]  intValue];
5246                 }
5247                 job->keep_ratio = [[chosenPreset objectForKey:@"PictureKeepRatio"]  intValue];
5248                 if (job->keep_ratio == 1)
5249                 {
5250                     hb_fix_aspect( job, HB_KEEP_WIDTH );
5251                     if( job->height > fTitle->height )
5252                     {
5253                         job->height = fTitle->height;
5254                         hb_fix_aspect( job, HB_KEEP_HEIGHT );
5255                     }
5256                 }
5257                 job->pixel_ratio = [[chosenPreset objectForKey:@"PicturePAR"]  intValue];
5258                 
5259                 
5260                 /* If Cropping is set to custom, then recall all four crop values from
5261                  when the preset was created and apply them */
5262                 if ([[chosenPreset objectForKey:@"PictureAutoCrop"]  intValue] == 0)
5263                 {
5264                     [fPictureController setAutoCrop:NO];
5265                     
5266                     /* Here we use the custom crop values saved at the time the preset was saved */
5267                     job->crop[0] = [[chosenPreset objectForKey:@"PictureTopCrop"]  intValue];
5268                     job->crop[1] = [[chosenPreset objectForKey:@"PictureBottomCrop"]  intValue];
5269                     job->crop[2] = [[chosenPreset objectForKey:@"PictureLeftCrop"]  intValue];
5270                     job->crop[3] = [[chosenPreset objectForKey:@"PictureRightCrop"]  intValue];
5271                     
5272                 }
5273                 else /* if auto crop has been saved in preset, set to auto and use post scan auto crop */
5274                 {
5275                     [fPictureController setAutoCrop:YES];
5276                     /* Here we use the auto crop values determined right after scan */
5277                     job->crop[0] = AutoCropTop;
5278                     job->crop[1] = AutoCropBottom;
5279                     job->crop[2] = AutoCropLeft;
5280                     job->crop[3] = AutoCropRight;
5281                     
5282                 }
5283                 /* If the preset has no objectForKey:@"UsesPictureFilters", then we know it is a legacy preset
5284                  * and handle the filters here as before.
5285                  * NOTE: This should be removed when the update presets code is done as we can be assured that legacy
5286                  * presets are updated to work properly with new keys.
5287                  */
5288                 if (![chosenPreset objectForKey:@"UsesPictureFilters"])
5289                 {
5290                     /* Filters */
5291                     /* Deinterlace */
5292                     if ([chosenPreset objectForKey:@"PictureDeinterlace"])
5293                     {
5294                         /* We check to see if the preset used the past fourth "Slowest" deinterlaceing and set that to "Slower
5295                          * since we no longer have a fourth "Slowest" deinterlacing due to the mcdeint bug */
5296                         if ([[chosenPreset objectForKey:@"PictureDeinterlace"] intValue] == 4)
5297                         {
5298                             [fPictureController setDeinterlace:3];
5299                         }
5300                         else
5301                         {
5302                             
5303                             [fPictureController setDeinterlace:[[chosenPreset objectForKey:@"PictureDeinterlace"] intValue]];
5304                         }
5305                     }
5306                     else
5307                     {
5308                         [fPictureController setDeinterlace:0];
5309                     }
5310                     /* VFR */
5311                     if ([[chosenPreset objectForKey:@"VFR"] intValue] == 1)
5312                     {
5313                         [fPictureController setVFR:[[chosenPreset objectForKey:@"VFR"] intValue]];
5314                     }
5315                     else
5316                     {
5317                         [fPictureController setVFR:0];
5318                     }
5319                     /* Detelecine */
5320                     if ([[chosenPreset objectForKey:@"PictureDetelecine"] intValue] == 1)
5321                     {
5322                         [fPictureController setDetelecine:[[chosenPreset objectForKey:@"PictureDetelecine"] intValue]];
5323                     }
5324                     else
5325                     {
5326                         [fPictureController setDetelecine:0];
5327                     }
5328                     /* Denoise */
5329                     if ([chosenPreset objectForKey:@"PictureDenoise"])
5330                     {
5331                         [fPictureController setDenoise:[[chosenPreset objectForKey:@"PictureDenoise"] intValue]];
5332                     }
5333                     else
5334                     {
5335                         [fPictureController setDenoise:0];
5336                     }   
5337                     /* Deblock */
5338                     if ([[chosenPreset objectForKey:@"PictureDeblock"] intValue] == 1)
5339                     {
5340                         [fPictureController setDeblock:[[chosenPreset objectForKey:@"PictureDeblock"] intValue]];
5341                     }
5342                     else
5343                     {
5344                         [fPictureController setDeblock:0];
5345                     }
5346
5347                    [self calculatePictureSizing:nil];
5348                 }
5349
5350             }
5351
5352
5353         }
5354         /* If the preset has an objectForKey:@"UsesPictureFilters", then we know it is a newer style filters preset
5355          * and handle the filters here depending on whether or not the preset specifies applying the filter.
5356          */
5357         if ([chosenPreset objectForKey:@"UsesPictureFilters"] && [[chosenPreset objectForKey:@"UsesPictureFilters"]  intValue] > 0)
5358         {
5359             /* Filters */
5360             /* Deinterlace */
5361             if ([chosenPreset objectForKey:@"PictureDeinterlace"])
5362             {
5363                 /* We check to see if the preset used the past fourth "Slowest" deinterlaceing and set that to "Slower
5364                  * since we no longer have a fourth "Slowest" deinterlacing due to the mcdeint bug */
5365                 if ([[chosenPreset objectForKey:@"PictureDeinterlace"] intValue] == 4)
5366                 {
5367                     [fPictureController setDeinterlace:3];
5368                 }
5369                 else
5370                 {
5371                     [fPictureController setDeinterlace:[[chosenPreset objectForKey:@"PictureDeinterlace"] intValue]];
5372                 }
5373             }
5374             else
5375             {
5376                 [fPictureController setDeinterlace:0];
5377             }
5378             /* VFR */
5379             if ([[chosenPreset objectForKey:@"VFR"] intValue] == 1)
5380             {
5381                 [fPictureController setVFR:[[chosenPreset objectForKey:@"VFR"] intValue]];
5382             }
5383             else
5384             {
5385                 [fPictureController setVFR:0];
5386             }
5387             /* Detelecine */
5388             if ([[chosenPreset objectForKey:@"PictureDetelecine"] intValue] == 1)
5389             {
5390                 [fPictureController setDetelecine:[[chosenPreset objectForKey:@"PictureDetelecine"] intValue]];
5391             }
5392             else
5393             {
5394                 [fPictureController setDetelecine:0];
5395             }
5396             /* Denoise */
5397             if ([chosenPreset objectForKey:@"PictureDenoise"])
5398             {
5399                 [fPictureController setDenoise:[[chosenPreset objectForKey:@"PictureDenoise"] intValue]];
5400             }
5401             else
5402             {
5403                 [fPictureController setDenoise:0];
5404             }   
5405             /* Deblock */
5406             if ([[chosenPreset objectForKey:@"PictureDeblock"] intValue] == 1)
5407             {
5408                 [fPictureController setDeblock:[[chosenPreset objectForKey:@"PictureDeblock"] intValue]];
5409             }
5410             else
5411             {
5412                 [fPictureController setDeblock:0];
5413             }
5414             /* Decomb */
5415             /* Even though we currently allow for a custom setting for decomb, ultimately it will only have Off and
5416              * Default so we just pay attention to anything greater than 0 as 1 (Default). 0 is Off. */
5417             if ([[chosenPreset objectForKey:@"PictureDecomb"] intValue] > 0)
5418             {
5419                 [fPictureController setDecomb:1];
5420             }
5421             else
5422             {
5423                 [fPictureController setDecomb:0];
5424             }
5425         }
5426         [self calculatePictureSizing:nil];
5427     }
5428 }
5429
5430
5431 #pragma mark -
5432 #pragma mark Manage Presets
5433
5434 - (void) loadPresets {
5435         /* We declare the default NSFileManager into fileManager */
5436         NSFileManager * fileManager = [NSFileManager defaultManager];
5437         /*We define the location of the user presets file */
5438     UserPresetsFile = @"~/Library/Application Support/HandBrake/UserPresets.plist";
5439         UserPresetsFile = [[UserPresetsFile stringByExpandingTildeInPath]retain];
5440     /* We check for the presets.plist */
5441         if ([fileManager fileExistsAtPath:UserPresetsFile] == 0)
5442         {
5443                 [fileManager createFileAtPath:UserPresetsFile contents:nil attributes:nil];
5444         }
5445
5446         UserPresets = [[NSMutableArray alloc] initWithContentsOfFile:UserPresetsFile];
5447         if (nil == UserPresets)
5448         {
5449                 UserPresets = [[NSMutableArray alloc] init];
5450                 [self addFactoryPresets:nil];
5451         }
5452         [fPresetsOutlineView reloadData];
5453 }
5454
5455
5456 - (IBAction) showAddPresetPanel: (id) sender
5457 {
5458     /* Deselect the currently selected Preset if there is one*/
5459     [fPresetsOutlineView deselectRow:[fPresetsOutlineView selectedRow]];
5460
5461     /* Populate the preset picture settings popup here */
5462     [fPresetNewPicSettingsPopUp removeAllItems];
5463     [fPresetNewPicSettingsPopUp addItemWithTitle:@"None"];
5464     [fPresetNewPicSettingsPopUp addItemWithTitle:@"Current"];
5465     [fPresetNewPicSettingsPopUp addItemWithTitle:@"Source Maximum (post source scan)"];
5466     [fPresetNewPicSettingsPopUp selectItemAtIndex: 0];  
5467     /* Uncheck the preset use filters checkbox */
5468     [fPresetNewPicFiltersCheck setState:NSOffState];
5469     /* Erase info from the input fields*/
5470         [fPresetNewName setStringValue: @""];
5471         [fPresetNewDesc setStringValue: @""];
5472         /* Show the panel */
5473         [NSApp beginSheet:fAddPresetPanel modalForWindow:fWindow modalDelegate:nil didEndSelector:NULL contextInfo:NULL];
5474 }
5475
5476 - (IBAction) closeAddPresetPanel: (id) sender
5477 {
5478     [NSApp endSheet: fAddPresetPanel];
5479     [fAddPresetPanel orderOut: self];
5480 }
5481
5482 - (IBAction)addUserPreset:(id)sender
5483 {
5484     if (![[fPresetNewName stringValue] length])
5485             NSRunAlertPanel(@"Warning!", @"You need to insert a name for the preset.", @"OK", nil , nil);
5486     else
5487     {
5488         /* Here we create a custom user preset */
5489         [UserPresets addObject:[self createPreset]];
5490         [self addPreset];
5491
5492         [self closeAddPresetPanel:nil];
5493     }
5494 }
5495 - (void)addPreset
5496 {
5497
5498         
5499         /* We Reload the New Table data for presets */
5500     [fPresetsOutlineView reloadData];
5501    /* We save all of the preset data here */
5502     [self savePreset];
5503 }
5504
5505 - (void)sortPresets
5506 {
5507
5508         
5509         /* We Sort the Presets By Factory or Custom */
5510         NSSortDescriptor * presetTypeDescriptor=[[[NSSortDescriptor alloc] initWithKey:@"Type" 
5511                                                     ascending:YES] autorelease];
5512         /* We Sort the Presets Alphabetically by name  We do not use this now as we have drag and drop*/
5513         /*
5514     NSSortDescriptor * presetNameDescriptor=[[[NSSortDescriptor alloc] initWithKey:@"PresetName" 
5515                                                     ascending:YES selector:@selector(caseInsensitiveCompare:)] autorelease];
5516         //NSArray *sortDescriptors=[NSArray arrayWithObjects:presetTypeDescriptor,presetNameDescriptor,nil];
5517     
5518     */
5519     /* Since we can drag and drop our custom presets, lets just sort by type and not name */
5520     NSArray *sortDescriptors=[NSArray arrayWithObjects:presetTypeDescriptor,nil];
5521         NSArray *sortedArray=[UserPresets sortedArrayUsingDescriptors:sortDescriptors];
5522         [UserPresets setArray:sortedArray];
5523         
5524
5525 }
5526
5527 - (IBAction)insertPreset:(id)sender
5528 {
5529     int index = [fPresetsOutlineView selectedRow];
5530     [UserPresets insertObject:[self createPreset] atIndex:index];
5531     [fPresetsOutlineView reloadData];
5532     [self savePreset];
5533 }
5534
5535 - (NSDictionary *)createPreset
5536 {
5537     NSMutableDictionary *preset = [[NSMutableDictionary alloc] init];
5538         /* Get the New Preset Name from the field in the AddPresetPanel */
5539     [preset setObject:[fPresetNewName stringValue] forKey:@"PresetName"];
5540         /*Set whether or not this is a user preset or factory 0 is factory, 1 is user*/
5541         [preset setObject:[NSNumber numberWithInt:1] forKey:@"Type"];
5542         /*Set whether or not this is default, at creation set to 0*/
5543         [preset setObject:[NSNumber numberWithInt:0] forKey:@"Default"];
5544         /*Get the whether or not to apply pic Size and Cropping (includes Anamorphic)*/
5545         [preset setObject:[NSNumber numberWithInt:[fPresetNewPicSettingsPopUp indexOfSelectedItem]] forKey:@"UsesPictureSettings"];
5546     /* Get whether or not to use the current Picture Filter settings for the preset */
5547     [preset setObject:[NSNumber numberWithInt:[fPresetNewPicFiltersCheck state]] forKey:@"UsesPictureFilters"];
5548  
5549     /* Get New Preset Description from the field in the AddPresetPanel*/
5550         [preset setObject:[fPresetNewDesc stringValue] forKey:@"PresetDescription"];
5551         /* File Format */
5552     [preset setObject:[fDstFormatPopUp titleOfSelectedItem] forKey:@"FileFormat"];
5553         /* Chapter Markers fCreateChapterMarkers*/
5554         [preset setObject:[NSNumber numberWithInt:[fCreateChapterMarkers state]] forKey:@"ChapterMarkers"];
5555         /* Allow Mpeg4 64 bit formatting +4GB file sizes */
5556         [preset setObject:[NSNumber numberWithInt:[fDstMp4LargeFileCheck state]] forKey:@"Mp4LargeFile"];
5557     /* Mux mp4 with http optimization */
5558     [preset setObject:[NSNumber numberWithInt:[fDstMp4HttpOptFileCheck state]] forKey:@"Mp4HttpOptimize"];
5559     /* Add iPod uuid atom */
5560     [preset setObject:[NSNumber numberWithInt:[fDstMp4iPodFileCheck state]] forKey:@"Mp4iPodCompatible"];
5561
5562     /* Codecs */
5563         /* Video encoder */
5564         [preset setObject:[fVidEncoderPopUp titleOfSelectedItem] forKey:@"VideoEncoder"];
5565         /* x264 Option String */
5566         [preset setObject:[fAdvancedOptions optionsString] forKey:@"x264Option"];
5567
5568         [preset setObject:[NSNumber numberWithInt:[fVidQualityMatrix selectedRow]] forKey:@"VideoQualityType"];
5569         [preset setObject:[fVidTargetSizeField stringValue] forKey:@"VideoTargetSize"];
5570         [preset setObject:[fVidBitrateField stringValue] forKey:@"VideoAvgBitrate"];
5571         [preset setObject:[NSNumber numberWithFloat:[fVidQualitySlider floatValue]] forKey:@"VideoQualitySlider"];
5572
5573         /* Video framerate */
5574     if ([fVidRatePopUp indexOfSelectedItem] == 0) // Same as source is selected
5575         {
5576         [preset setObject:@"Same as source" forKey:@"VideoFramerate"];
5577     }
5578     else // we can record the actual titleOfSelectedItem
5579     {
5580     [preset setObject:[fVidRatePopUp titleOfSelectedItem] forKey:@"VideoFramerate"];
5581     }
5582         /* GrayScale */
5583         [preset setObject:[NSNumber numberWithInt:[fVidGrayscaleCheck state]] forKey:@"VideoGrayScale"];
5584         /* 2 Pass Encoding */
5585         [preset setObject:[NSNumber numberWithInt:[fVidTwoPassCheck state]] forKey:@"VideoTwoPass"];
5586         /* Turbo 2 pass Encoding fVidTurboPassCheck*/
5587         [preset setObject:[NSNumber numberWithInt:[fVidTurboPassCheck state]] forKey:@"VideoTurboTwoPass"];
5588         /*Picture Settings*/
5589         hb_job_t * job = fTitle->job;
5590         /* Picture Sizing */
5591         /* Use Max Picture settings for whatever the dvd is.*/
5592         [preset setObject:[NSNumber numberWithInt:0] forKey:@"UsesMaxPictureSettings"];
5593         [preset setObject:[NSNumber numberWithInt:fTitle->job->width] forKey:@"PictureWidth"];
5594         [preset setObject:[NSNumber numberWithInt:fTitle->job->height] forKey:@"PictureHeight"];
5595         [preset setObject:[NSNumber numberWithInt:fTitle->job->keep_ratio] forKey:@"PictureKeepRatio"];
5596         [preset setObject:[NSNumber numberWithInt:fTitle->job->pixel_ratio] forKey:@"PicturePAR"];
5597     
5598     /* Set crop settings here */
5599         [preset setObject:[NSNumber numberWithInt:[fPictureController autoCrop]] forKey:@"PictureAutoCrop"];
5600     [preset setObject:[NSNumber numberWithInt:job->crop[0]] forKey:@"PictureTopCrop"];
5601     [preset setObject:[NSNumber numberWithInt:job->crop[1]] forKey:@"PictureBottomCrop"];
5602         [preset setObject:[NSNumber numberWithInt:job->crop[2]] forKey:@"PictureLeftCrop"];
5603         [preset setObject:[NSNumber numberWithInt:job->crop[3]] forKey:@"PictureRightCrop"];
5604     
5605     /* Picture Filters */
5606     [preset setObject:[NSNumber numberWithInt:[fPictureController deinterlace]] forKey:@"PictureDeinterlace"];
5607         [preset setObject:[NSNumber numberWithInt:[fPictureController detelecine]] forKey:@"PictureDetelecine"];
5608     [preset setObject:[NSNumber numberWithInt:[fPictureController vfr]] forKey:@"VFR"];
5609         [preset setObject:[NSNumber numberWithInt:[fPictureController denoise]] forKey:@"PictureDenoise"];
5610     [preset setObject:[NSNumber numberWithInt:[fPictureController deblock]] forKey:@"PictureDeblock"]; 
5611     [preset setObject:[NSNumber numberWithInt:[fPictureController decomb]] forKey:@"PictureDecomb"];
5612     
5613     
5614     /*Audio*/
5615     if ([fAudLang1PopUp indexOfSelectedItem] > 0)
5616     {
5617         [preset setObject:[NSNumber numberWithInt:[fAudLang1PopUp indexOfSelectedItem]] forKey:@"Audio1Track"];
5618         [preset setObject:[fAudLang1PopUp titleOfSelectedItem] forKey:@"Audio1TrackDescription"];
5619         [preset setObject:[fAudTrack1CodecPopUp titleOfSelectedItem] forKey:@"Audio1Encoder"];
5620         [preset setObject:[fAudTrack1MixPopUp titleOfSelectedItem] forKey:@"Audio1Mixdown"];
5621         [preset setObject:[fAudTrack1RatePopUp titleOfSelectedItem] forKey:@"Audio1Samplerate"];
5622         [preset setObject:[fAudTrack1BitratePopUp titleOfSelectedItem] forKey:@"Audio1Bitrate"];
5623         [preset setObject:[NSNumber numberWithFloat:[fAudTrack1DrcSlider floatValue]] forKey:@"Audio1TrackDRCSlider"];
5624     }
5625     if ([fAudLang2PopUp indexOfSelectedItem] > 0)
5626     {
5627         [preset setObject:[NSNumber numberWithInt:[fAudLang2PopUp indexOfSelectedItem]] forKey:@"Audio2Track"];
5628         [preset setObject:[fAudLang2PopUp titleOfSelectedItem] forKey:@"Audio2TrackDescription"];
5629         [preset setObject:[fAudTrack2CodecPopUp titleOfSelectedItem] forKey:@"Audio2Encoder"];
5630         [preset setObject:[fAudTrack2MixPopUp titleOfSelectedItem] forKey:@"Audio2Mixdown"];
5631         [preset setObject:[fAudTrack2RatePopUp titleOfSelectedItem] forKey:@"Audio2Samplerate"];
5632         [preset setObject:[fAudTrack2BitratePopUp titleOfSelectedItem] forKey:@"Audio2Bitrate"];
5633         [preset setObject:[NSNumber numberWithFloat:[fAudTrack2DrcSlider floatValue]] forKey:@"Audio2TrackDRCSlider"];
5634     }
5635     if ([fAudLang3PopUp indexOfSelectedItem] > 0)
5636     {
5637         [preset setObject:[NSNumber numberWithInt:[fAudLang3PopUp indexOfSelectedItem]] forKey:@"Audio3Track"];
5638         [preset setObject:[fAudLang3PopUp titleOfSelectedItem] forKey:@"Audio3TrackDescription"];
5639         [preset setObject:[fAudTrack3CodecPopUp titleOfSelectedItem] forKey:@"Audio3Encoder"];
5640         [preset setObject:[fAudTrack3MixPopUp titleOfSelectedItem] forKey:@"Audio3Mixdown"];
5641         [preset setObject:[fAudTrack3RatePopUp titleOfSelectedItem] forKey:@"Audio3Samplerate"];
5642         [preset setObject:[fAudTrack3BitratePopUp titleOfSelectedItem] forKey:@"Audio3Bitrate"];
5643         [preset setObject:[NSNumber numberWithFloat:[fAudTrack3DrcSlider floatValue]] forKey:@"Audio3TrackDRCSlider"];
5644     }
5645     if ([fAudLang4PopUp indexOfSelectedItem] > 0)
5646     {
5647         [preset setObject:[NSNumber numberWithInt:[fAudLang4PopUp indexOfSelectedItem]] forKey:@"Audio4Track"];
5648         [preset setObject:[fAudLang4PopUp titleOfSelectedItem] forKey:@"Audio4TrackDescription"];
5649         [preset setObject:[fAudTrack4CodecPopUp titleOfSelectedItem] forKey:@"Audio4Encoder"];
5650         [preset setObject:[fAudTrack4MixPopUp titleOfSelectedItem] forKey:@"Audio4Mixdown"];
5651         [preset setObject:[fAudTrack4RatePopUp titleOfSelectedItem] forKey:@"Audio4Samplerate"];
5652         [preset setObject:[fAudTrack4BitratePopUp titleOfSelectedItem] forKey:@"Audio4Bitrate"];
5653         [preset setObject:[NSNumber numberWithFloat:[fAudTrack4DrcSlider floatValue]] forKey:@"Audio4TrackDRCSlider"];
5654     }
5655     
5656         /* Subtitles*/
5657         [preset setObject:[fSubPopUp titleOfSelectedItem] forKey:@"Subtitles"];
5658     /* Forced Subtitles */
5659         [preset setObject:[NSNumber numberWithInt:[fSubForcedCheck state]] forKey:@"SubtitlesForced"];
5660     
5661     [preset autorelease];
5662     return preset;
5663
5664 }
5665
5666 - (void)savePreset
5667 {
5668     [UserPresets writeToFile:UserPresetsFile atomically:YES];
5669         /* We get the default preset in case it changed */
5670         [self getDefaultPresets:nil];
5671
5672 }
5673
5674 - (IBAction)deletePreset:(id)sender
5675 {
5676     int status;
5677     NSEnumerator *enumerator;
5678     NSNumber *index;
5679     NSMutableArray *tempArray;
5680     id tempObject;
5681     
5682     if ( [fPresetsOutlineView numberOfSelectedRows] == 0 )
5683         return;
5684     /* Alert user before deleting preset */
5685         /* Comment out for now, tie to user pref eventually */
5686
5687     //NSBeep();
5688     status = NSRunAlertPanel(@"Warning!", @"Are you sure that you want to delete the selected preset?", @"OK", @"Cancel", nil);
5689     
5690     if ( status == NSAlertDefaultReturn ) {
5691         enumerator = [fPresetsOutlineView selectedRowEnumerator];
5692         tempArray = [NSMutableArray array];
5693         
5694         while ( (index = [enumerator nextObject]) ) {
5695             tempObject = [UserPresets objectAtIndex:[index intValue]];
5696             [tempArray addObject:tempObject];
5697         }
5698         
5699         [UserPresets removeObjectsInArray:tempArray];
5700         [fPresetsOutlineView reloadData];
5701         [self savePreset];   
5702     }
5703 }
5704
5705 #pragma mark -
5706 #pragma mark Manage Default Preset
5707
5708 - (IBAction)getDefaultPresets:(id)sender
5709 {
5710         int i = 0;
5711     presetCurrentBuiltInCount = 0;
5712     NSEnumerator *enumerator = [UserPresets objectEnumerator];
5713         id tempObject;
5714         while (tempObject = [enumerator nextObject])
5715         {
5716                 NSDictionary *thisPresetDict = tempObject;
5717                 if ([[thisPresetDict objectForKey:@"Default"] intValue] == 1) // 1 is HB default
5718                 {
5719                         presetHbDefault = i;    
5720                 }
5721                 if ([[thisPresetDict objectForKey:@"Default"] intValue] == 2) // 2 is User specified default
5722                 {
5723                         presetUserDefault = i;  
5724                 }
5725         if ([[thisPresetDict objectForKey:@"Type"] intValue] == 0) // Type 0 is a built in preset               
5726         {
5727                         presetCurrentBuiltInCount++; // <--increment the current number of built in presets     
5728                 }
5729                 i++;
5730         }
5731 }
5732
5733 - (IBAction)setDefaultPreset:(id)sender
5734 {
5735     int i = 0;
5736     NSEnumerator *enumerator = [UserPresets objectEnumerator];
5737         id tempObject;
5738         /* First make sure the old user specified default preset is removed */
5739         while (tempObject = [enumerator nextObject])
5740         {
5741                 /* make sure we are not removing the default HB preset */
5742                 if ([[[UserPresets objectAtIndex:i] objectForKey:@"Default"] intValue] != 1) // 1 is HB default
5743                 {
5744                         [[UserPresets objectAtIndex:i] setObject:[NSNumber numberWithInt:0] forKey:@"Default"];
5745                 }
5746                 i++;
5747         }
5748         /* Second, go ahead and set the appropriate user specfied preset */
5749         /* we get the chosen preset from the UserPresets array */
5750         if ([[[UserPresets objectAtIndex:[fPresetsOutlineView selectedRow]] objectForKey:@"Default"] intValue] != 1) // 1 is HB default
5751         {
5752                 [[UserPresets objectAtIndex:[fPresetsOutlineView selectedRow]] setObject:[NSNumber numberWithInt:2] forKey:@"Default"];
5753         }
5754         /*FIX ME: I think we now need to use the items not rows in NSOutlineView */
5755     presetUserDefault = [fPresetsOutlineView selectedRow];
5756         
5757         /* We save all of the preset data here */
5758     [self savePreset];
5759         /* We Reload the New Table data for presets */
5760     [fPresetsOutlineView reloadData];
5761 }
5762
5763 - (IBAction)selectDefaultPreset:(id)sender
5764 {
5765         /* if there is a user specified default, we use it */
5766         if (presetUserDefault)
5767         {
5768         [fPresetsOutlineView selectRowIndexes:[NSIndexSet indexSetWithIndex:presetUserDefault] byExtendingSelection:NO];
5769         [self selectPreset:nil];
5770         }
5771         else if (presetHbDefault) //else we use the built in default presetHbDefault
5772         {
5773         [fPresetsOutlineView selectRowIndexes:[NSIndexSet indexSetWithIndex:presetHbDefault] byExtendingSelection:NO];
5774         [self selectPreset:nil];
5775         }
5776 }
5777
5778
5779 #pragma mark -
5780 #pragma mark Manage Built In Presets
5781
5782
5783 - (IBAction)deleteFactoryPresets:(id)sender
5784 {
5785     //int status;
5786     NSEnumerator *enumerator = [UserPresets objectEnumerator];
5787         id tempObject;
5788     
5789         //NSNumber *index;
5790     NSMutableArray *tempArray;
5791
5792
5793         tempArray = [NSMutableArray array];
5794         /* we look here to see if the preset is we move on to the next one */
5795         while ( tempObject = [enumerator nextObject] )  
5796                 {
5797                         /* if the preset is "Factory" then we put it in the array of
5798                         presets to delete */
5799                         if ([[tempObject objectForKey:@"Type"] intValue] == 0)
5800                         {
5801                                 [tempArray addObject:tempObject];
5802                         }
5803         }
5804         
5805         [UserPresets removeObjectsInArray:tempArray];
5806         [fPresetsOutlineView reloadData];
5807         [self savePreset];   
5808
5809 }
5810
5811    /* We use this method to recreate new, updated factory
5812    presets */
5813 - (IBAction)addFactoryPresets:(id)sender
5814 {
5815    
5816    /* First, we delete any existing built in presets */
5817     [self deleteFactoryPresets: sender];
5818     /* Then we generate new built in presets programmatically with fPresetsBuiltin
5819     * which is all setup in HBPresets.h and  HBPresets.m*/
5820     [fPresetsBuiltin generateBuiltinPresets:UserPresets];
5821     [self sortPresets];
5822     [self addPreset];
5823     
5824 }
5825
5826
5827
5828
5829
5830 @end
5831
5832 /*******************************
5833  * Subclass of the HBPresetsOutlineView *
5834  *******************************/
5835
5836 @implementation HBPresetsOutlineView
5837 - (NSImage *)dragImageForRowsWithIndexes:(NSIndexSet *)dragRows tableColumns:(NSArray *)tableColumns event:(NSEvent*)dragEvent offset:(NSPointPointer)dragImageOffset
5838 {
5839     fIsDragging = YES;
5840
5841     // By default, NSTableView only drags an image of the first column. Change this to
5842     // drag an image of the queue's icon and PresetName columns.
5843     NSArray * cols = [NSArray arrayWithObjects: [self tableColumnWithIdentifier:@"icon"], [self tableColumnWithIdentifier:@"PresetName"], nil];
5844     return [super dragImageForRowsWithIndexes:dragRows tableColumns:cols event:dragEvent offset:dragImageOffset];
5845 }
5846
5847
5848
5849 - (void) mouseDown:(NSEvent *)theEvent
5850 {
5851     [super mouseDown:theEvent];
5852         fIsDragging = NO;
5853 }
5854
5855
5856
5857 - (BOOL) isDragging;
5858 {
5859     return fIsDragging;
5860 }
5861 @end
5862
5863
5864