OSDN Git Service

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