OSDN Git Service

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