OSDN Git Service

MacGui: Fix warning windows when shutting down HandBrake during encoding or if there...
[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     [self writeToActivityLog: "processNewQueueEncode back from prepareJob"];
2458     if( [[queueToApply objectForKey:@"SubtitlesForced"] intValue] == 1 )
2459         job->subtitle_force = 1;
2460     else
2461         job->subtitle_force = 0;
2462     
2463     /*
2464      * subtitle of -1 is a scan
2465      */
2466     if( job->subtitle == -1 )
2467     {
2468         char *x264opts_tmp;
2469         
2470         /*
2471          * When subtitle scan is enabled do a fast pre-scan job
2472          * which will determine which subtitles to enable, if any.
2473          */
2474         job->pass = -1;
2475         x264opts_tmp = job->x264opts;
2476         job->subtitle = -1;
2477         
2478         job->x264opts = NULL;
2479         
2480         job->indepth_scan = 1;  
2481         
2482         job->select_subtitle = (hb_subtitle_t**)malloc(sizeof(hb_subtitle_t*));
2483         *(job->select_subtitle) = NULL;
2484         
2485         /*
2486          * Add the pre-scan job
2487          */
2488         hb_add( fQueueEncodeLibhb, job );
2489         job->x264opts = x264opts_tmp;
2490     }
2491     else
2492         job->select_subtitle = NULL;
2493     
2494     /* No subtitle were selected, so reset the subtitle to -1 (which before
2495      * this point meant we were scanning
2496      */
2497     if( job->subtitle == -2 )
2498         job->subtitle = -1;
2499     
2500     if( [[queueToApply objectForKey:@"VideoTwoPass"] intValue] == 1 )
2501     {
2502         hb_subtitle_t **subtitle_tmp = job->select_subtitle;
2503         job->indepth_scan = 0;
2504         
2505         /*
2506          * Do not autoselect subtitles on the first pass of a two pass
2507          */
2508         job->select_subtitle = NULL;
2509         
2510         job->pass = 1;
2511         
2512         hb_add( fQueueEncodeLibhb, job );
2513         
2514         job->pass = 2;
2515         
2516         job->x264opts = (char *)calloc(1024, 1); /* Fixme, this just leaks */  
2517         strcpy(job->x264opts, [[queueToApply objectForKey:@"x264Option"] UTF8String]);
2518         
2519         job->select_subtitle = subtitle_tmp;
2520         
2521         hb_add( fQueueEncodeLibhb, job );
2522         
2523     }
2524     else
2525     {
2526         job->indepth_scan = 0;
2527         job->pass = 0;
2528         
2529         hb_add( fQueueEncodeLibhb, job );
2530     }
2531         
2532     NSString *destinationDirectory = [[queueToApply objectForKey:@"DestinationPath"] stringByDeletingLastPathComponent];
2533         [[NSUserDefaults standardUserDefaults] setObject:destinationDirectory forKey:@"LastDestinationDirectory"];
2534         /* Lets mark our new encode as 1 or "Encoding" */
2535     [queueToApply setObject:[NSNumber numberWithInt:1] forKey:@"Status"];
2536     [self saveQueueFileItem];
2537     /* We should be all setup so let 'er rip */   
2538     [self doRip];
2539 }
2540
2541
2542 #pragma mark -
2543 #pragma mark Job Handling
2544
2545
2546 - (void) prepareJob
2547 {
2548     
2549     NSMutableDictionary * queueToApply = [QueueFileArray objectAtIndex:currentQueueEncodeIndex];
2550     hb_list_t  * list  = hb_get_titles( fQueueEncodeLibhb );
2551     hb_title_t * title = (hb_title_t *) hb_list_item( list,0 ); // is always zero since now its a single title scan
2552     hb_job_t * job = title->job;
2553     hb_audio_config_t * audio;
2554     [self writeToActivityLog: "prepareJob reached"];
2555     /* Chapter selection */
2556     job->chapter_start = [[queueToApply objectForKey:@"JobChapterStart"] intValue];
2557     job->chapter_end   = [[queueToApply objectForKey:@"JobChapterEnd"] intValue];
2558         
2559     /* Format (Muxer) and Video Encoder */
2560     job->mux = [[queueToApply objectForKey:@"JobFileFormatMux"] intValue];
2561     job->vcodec = [[queueToApply objectForKey:@"JobVideoEncoderVcodec"] intValue];
2562     
2563     
2564     /* If mpeg-4, then set mpeg-4 specific options like chapters and > 4gb file sizes */
2565         //if( [fDstFormatPopUp indexOfSelectedItem] == 0 )
2566         //{
2567     /* We set the largeFileSize (64 bit formatting) variable here to allow for > 4gb files based on the format being
2568      mpeg4 and the checkbox being checked 
2569      *Note: this will break compatibility with some target devices like iPod, etc.!!!!*/
2570     if( [[queueToApply objectForKey:@"Mp4LargeFile"] intValue] == 1)
2571     {
2572         job->largeFileSize = 1;
2573     }
2574     else
2575     {
2576         job->largeFileSize = 0;
2577     }
2578     /* We set http optimized mp4 here */
2579     if( [[queueToApply objectForKey:@"Mp4HttpOptimize"] intValue] == 1 )
2580     {
2581         job->mp4_optimize = 1;
2582     }
2583     else
2584     {
2585         job->mp4_optimize = 0;
2586     }
2587     
2588     //}
2589         
2590     /* We set the chapter marker extraction here based on the format being
2591      mpeg4 or mkv and the checkbox being checked */
2592     if ([[queueToApply objectForKey:@"ChapterMarkers"] intValue] == 1)
2593     {
2594         job->chapter_markers = 1;
2595         
2596         /* now lets get our saved chapter names out the array in the queue file
2597          * and insert them back into the title chapter list. We have it here,
2598          * because unless we are inserting chapter markers there is no need to
2599          * spend the overhead of iterating through the chapter names array imo
2600          * Also, note that if for some reason we don't apply chapter names, the
2601          * chapters just come out 001, 002, etc. etc.
2602          */
2603          
2604         NSMutableArray *ChapterNamesArray = [queueToApply objectForKey:@"ChapterNames"];
2605         int i = 0;
2606         NSEnumerator *enumerator = [ChapterNamesArray objectEnumerator];
2607         id tempObject;
2608         while (tempObject = [enumerator nextObject])
2609         {
2610             hb_chapter_t *chapter = (hb_chapter_t *) hb_list_item( title->list_chapter, i );
2611             if( chapter != NULL )
2612             {
2613                 strncpy( chapter->title, [tempObject UTF8String], 1023);
2614                 chapter->title[1023] = '\0';
2615             }
2616             i++;
2617         }
2618     }
2619     else
2620     {
2621         job->chapter_markers = 0;
2622     }
2623     
2624
2625     
2626     
2627     
2628     if( job->vcodec & HB_VCODEC_X264 )
2629     {
2630                 if ([[queueToApply objectForKey:@"Mp4iPodCompatible"] intValue] == 1)
2631             {
2632             job->ipod_atom = 1;
2633                 }
2634         else
2635         {
2636             job->ipod_atom = 0;
2637         }
2638                 
2639                 /* Set this flag to switch from Constant Quantizer(default) to Constant Rate Factor Thanks jbrjake
2640          Currently only used with Constant Quality setting*/
2641                 if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultCrf"] > 0 && [[queueToApply objectForKey:@"VideoQualityType"] intValue] == 2)
2642                 {
2643                 job->crf = 1;
2644                 }
2645                 /* Below Sends x264 options to the core library if x264 is selected*/
2646                 /* Lets use this as per Nyx, Thanks Nyx!*/
2647                 job->x264opts = (char *)calloc(1024, 1); /* Fixme, this just leaks */
2648                 /* Turbo first pass if two pass and Turbo First pass is selected */
2649                 if( [[queueToApply objectForKey:@"VideoTwoPass"] intValue] == 1 && [[queueToApply objectForKey:@"VideoTurboTwoPass"] intValue] == 1 )
2650                 {
2651                         /* pass the "Turbo" string to be appended to the existing x264 opts string into a variable for the first pass */
2652                         NSString *firstPassOptStringTurbo = @":ref=1:subme=1:me=dia:analyse=none:trellis=0:no-fast-pskip=0:8x8dct=0:weightb=0";
2653                         /* append the "Turbo" string variable to the existing opts string.
2654              Note: the "Turbo" string must be appended, not prepended to work properly*/
2655                         NSString *firstPassOptStringCombined = [[queueToApply objectForKey:@"x264Option"] stringByAppendingString:firstPassOptStringTurbo];
2656                         strcpy(job->x264opts, [firstPassOptStringCombined UTF8String]);
2657                 }
2658                 else
2659                 {
2660                         strcpy(job->x264opts, [[queueToApply objectForKey:@"x264Option"] UTF8String]);
2661                 }
2662         
2663     }
2664     
2665     
2666     [self writeToActivityLog: "prepareJob reached Picture Settings"];
2667     /* Picture Size Settings */
2668     job->width = [[queueToApply objectForKey:@"PictureWidth"]  intValue];
2669     job->height = [[queueToApply objectForKey:@"PictureHeight"]  intValue];
2670     
2671     job->keep_ratio = [[queueToApply objectForKey:@"PictureKeepRatio"]  intValue];
2672     job->pixel_ratio = [[queueToApply objectForKey:@"PicturePAR"]  intValue];
2673     
2674     
2675     /* Here we use the crop values saved at the time the preset was saved */
2676     job->crop[0] = [[queueToApply objectForKey:@"PictureTopCrop"]  intValue];
2677     job->crop[1] = [[queueToApply objectForKey:@"PictureBottomCrop"]  intValue];
2678     job->crop[2] = [[queueToApply objectForKey:@"PictureLeftCrop"]  intValue];
2679     job->crop[3] = [[queueToApply objectForKey:@"PictureRightCrop"]  intValue];
2680     
2681     /* Video settings */
2682     [self writeToActivityLog: "prepareJob reached Frame Rate"];
2683     /* Framerate */
2684     
2685     /* Set vfr to 0 as it's only on if using same as source in the framerate popup
2686      * and detelecine is on, so we handle that in the logic below
2687      */
2688     job->vfr = 0;
2689     if( [[queueToApply objectForKey:@"JobIndexVideoFramerate"] intValue] > 0 )
2690     {
2691         /* a specific framerate has been chosen */
2692         job->vrate      = 27000000;
2693         job->vrate_base = hb_video_rates[[[queueToApply objectForKey:@"JobIndexVideoFramerate"] intValue]-1].rate;
2694         /* We are not same as source so we set job->cfr to 1 
2695          * to enable constant frame rate since user has specified
2696          * a specific framerate*/
2697         job->cfr = 1;
2698     }
2699     else
2700     {
2701         /* We are same as source (variable) */
2702         job->vrate      = [[queueToApply objectForKey:@"JobVrate"] intValue];
2703         job->vrate_base = [[queueToApply objectForKey:@"JobVrateBase"] intValue];
2704         /* We are same as source so we set job->cfr to 0 
2705          * to enable true same as source framerate */
2706         job->cfr = 0;
2707         /* If we are same as source and we have detelecine on, we need to turn on
2708          * job->vfr
2709          */
2710         if ([[queueToApply objectForKey:@"PictureDetelecine"] intValue] == 1)
2711         {
2712             job->vfr = 1;
2713         }
2714     }
2715     [self writeToActivityLog: "prepareJob reached Bitrate Video Quality"];
2716     if ( [[queueToApply objectForKey:@"VideoQualityType"] intValue] == 0 )
2717     {
2718         /* Target size.
2719          Bitrate should already have been calculated and displayed
2720          in fVidBitrateField, so let's just use it */
2721     }
2722     if ( [[queueToApply objectForKey:@"VideoQualityType"] intValue] == 1 )
2723     {
2724         job->vquality = -1.0;
2725         job->vbitrate = [[queueToApply objectForKey:@"VideoAvgBitrate"] intValue];
2726     }
2727     if ( [[queueToApply objectForKey:@"VideoQualityType"] intValue] == 2 )
2728     {
2729         job->vquality = [[queueToApply objectForKey:@"VideoQualitySlider"] floatValue];
2730         job->vbitrate = 0;
2731         
2732     }
2733     
2734     job->grayscale = [[queueToApply objectForKey:@"VideoGrayScale"] intValue];
2735     /* Subtitle settings */
2736     job->subtitle = [[queueToApply objectForKey:@"JobSubtitlesIndex"] intValue] - 2;
2737     
2738     [self writeToActivityLog: "prepareJob reached Audio"];
2739     /* Audio tracks and mixdowns */
2740     /* Lets make sure there arent any erroneous audio tracks in the job list, so lets make sure its empty*/
2741     int audiotrack_count = hb_list_count(job->list_audio);
2742     for( int i = 0; i < audiotrack_count;i++)
2743     {
2744         hb_audio_t * temp_audio = (hb_audio_t*) hb_list_item( job->list_audio, 0 );
2745         hb_list_rem(job->list_audio, temp_audio);
2746     }
2747     /* Now lets add our new tracks to the audio list here */
2748     if ([[queueToApply objectForKey:@"Audio1Track"] intValue] > 0)
2749     {
2750         audio = (hb_audio_config_t *) calloc(1, sizeof(*audio));
2751         hb_audio_config_init(audio);
2752         audio->in.track = [[queueToApply objectForKey:@"Audio1Track"] intValue] - 1;
2753         /* We go ahead and assign values to our audio->out.<properties> */
2754         audio->out.track = [[queueToApply objectForKey:@"Audio1Track"] intValue] - 1;
2755         audio->out.codec = [[queueToApply objectForKey:@"JobAudio1Encoder"] intValue];
2756         audio->out.mixdown = [[queueToApply objectForKey:@"JobAudio1Mixdown"] intValue];
2757         audio->out.bitrate = [[queueToApply objectForKey:@"JobAudio1Bitrate"] intValue];
2758         audio->out.samplerate = [[queueToApply objectForKey:@"JobAudio1Samplerate"] intValue];
2759         audio->out.dynamic_range_compression = [[queueToApply objectForKey:@"Audio1TrackDRCSlider"] floatValue];
2760         
2761         hb_audio_add( job, audio );
2762         free(audio);
2763     }  
2764     if ([[queueToApply objectForKey:@"Audio2Track"] intValue] > 0)
2765     {
2766         
2767         audio = (hb_audio_config_t *) calloc(1, sizeof(*audio));
2768         hb_audio_config_init(audio);
2769         audio->in.track = [[queueToApply objectForKey:@"Audio2Track"] intValue] - 1;
2770         [self writeToActivityLog: "prepareJob audiotrack 2 is: %d", audio->in.track];
2771         /* We go ahead and assign values to our audio->out.<properties> */
2772         audio->out.track = [[queueToApply objectForKey:@"Audio2Track"] intValue] - 1;
2773         audio->out.codec = [[queueToApply objectForKey:@"JobAudio2Encoder"] intValue];
2774         audio->out.mixdown = [[queueToApply objectForKey:@"JobAudio2Mixdown"] intValue];
2775         audio->out.bitrate = [[queueToApply objectForKey:@"JobAudio2Bitrate"] intValue];
2776         audio->out.samplerate = [[queueToApply objectForKey:@"JobAudio2Samplerate"] intValue];
2777         audio->out.dynamic_range_compression = [[queueToApply objectForKey:@"Audio2TrackDRCSlider"] floatValue];
2778         
2779         hb_audio_add( job, audio );
2780         free(audio);
2781     }
2782     
2783     if ([[queueToApply objectForKey:@"Audio3Track"] intValue] > 0)
2784     {
2785         audio = (hb_audio_config_t *) calloc(1, sizeof(*audio));
2786         hb_audio_config_init(audio);
2787         audio->in.track = [[queueToApply objectForKey:@"Audio3Track"] intValue] - 1;
2788         /* We go ahead and assign values to our audio->out.<properties> */
2789         audio->out.track = [[queueToApply objectForKey:@"Audio3Track"] intValue] - 1;
2790         audio->out.codec = [[queueToApply objectForKey:@"JobAudio3Encoder"] intValue];
2791         audio->out.mixdown = [[queueToApply objectForKey:@"JobAudio3Mixdown"] intValue];
2792         audio->out.bitrate = [[queueToApply objectForKey:@"JobAudio3Bitrate"] intValue];
2793         audio->out.samplerate = [[queueToApply objectForKey:@"JobAudio3Samplerate"] intValue];
2794         audio->out.dynamic_range_compression = [[queueToApply objectForKey:@"Audio3TrackDRCSlider"] floatValue];
2795         
2796         hb_audio_add( job, audio );
2797         free(audio);        
2798     }
2799     
2800     if ([[queueToApply objectForKey:@"Audio4Track"] intValue] > 0)
2801     {
2802         audio = (hb_audio_config_t *) calloc(1, sizeof(*audio));
2803         hb_audio_config_init(audio);
2804         audio->in.track = [[queueToApply objectForKey:@"Audio4Track"] intValue] - 1;
2805         /* We go ahead and assign values to our audio->out.<properties> */
2806         audio->out.track = [[queueToApply objectForKey:@"Audio4Track"] intValue] - 1;
2807         audio->out.codec = [[queueToApply objectForKey:@"JobAudio4Encoder"] intValue];
2808         audio->out.mixdown = [[queueToApply objectForKey:@"JobAudio4Mixdown"] intValue];
2809         audio->out.bitrate = [[queueToApply objectForKey:@"JobAudio4Bitrate"] intValue];
2810         audio->out.samplerate = [[queueToApply objectForKey:@"JobAudio4Samplerate"] intValue];
2811         audio->out.dynamic_range_compression = [[queueToApply objectForKey:@"Audio3TrackDRCSlider"] floatValue];
2812         
2813         hb_audio_add( job, audio );
2814         free(audio);
2815     }
2816     
2817     [self writeToActivityLog: "prepareJob reached Filters"];
2818      /* Filters */ 
2819     job->filters = hb_list_init();
2820     
2821     /* Now lets call the filters if applicable.
2822      * The order of the filters is critical
2823      */
2824     /* Detelecine */
2825     if ([[queueToApply objectForKey:@"PictureDetelecine"] intValue] == 1)
2826     {
2827         hb_list_add( job->filters, &hb_filter_detelecine );
2828     }
2829     
2830     /* Decomb */
2831     if ([[queueToApply objectForKey:@"PictureDecomb"] intValue] == 1)
2832     {
2833         /* Run old deinterlacer fd by default */
2834         hb_filter_decomb.settings = (char *) [[queueToApply objectForKey:@"JobPictureDecomb"] UTF8String];
2835         hb_list_add( job->filters, &hb_filter_decomb );
2836     }
2837     
2838     /* Deinterlace */
2839     if ([[queueToApply objectForKey:@"PictureDeinterlace"] intValue] == 1)
2840     {
2841         /* Run old deinterlacer fd by default */
2842         hb_filter_deinterlace.settings = "-1"; 
2843         hb_list_add( job->filters, &hb_filter_deinterlace );
2844     }
2845     else if ([[queueToApply objectForKey:@"PictureDeinterlace"] intValue] == 2)
2846     {
2847         /* Yadif mode 0 (without spatial deinterlacing.) */
2848         hb_filter_deinterlace.settings = "2"; 
2849         hb_list_add( job->filters, &hb_filter_deinterlace );            
2850     }
2851     else if ([[queueToApply objectForKey:@"PictureDeinterlace"] intValue] == 3)
2852     {
2853         /* Yadif (with spatial deinterlacing) */
2854         hb_filter_deinterlace.settings = "0"; 
2855         hb_list_add( job->filters, &hb_filter_deinterlace );            
2856     }
2857         
2858     /* Denoise */
2859         if ([[queueToApply objectForKey:@"PictureDenoise"] intValue] == 1) // Weak in popup
2860         {
2861                 hb_filter_denoise.settings = "2:1:2:3"; 
2862         hb_list_add( job->filters, &hb_filter_denoise );        
2863         }
2864         else if ([[queueToApply objectForKey:@"PictureDenoise"] intValue] == 2) // Medium in popup
2865         {
2866                 hb_filter_denoise.settings = "3:2:2:3"; 
2867         hb_list_add( job->filters, &hb_filter_denoise );        
2868         }
2869         else if ([[queueToApply objectForKey:@"PictureDenoise"] intValue] == 3) // Strong in popup
2870         {
2871                 hb_filter_denoise.settings = "7:7:5:5"; 
2872         hb_list_add( job->filters, &hb_filter_denoise );        
2873         }
2874     
2875     /* Deblock  (uses pp7 default) */
2876     /* NOTE: even though there is a valid deblock setting of 0 for the filter, for 
2877      * the macgui's purposes a value of 0 actually means to not even use the filter
2878      * current hb_filter_deblock.settings valid ranges are from 5 - 15 
2879      */
2880     if ([[queueToApply objectForKey:@"PictureDeblock"] intValue] != 0)
2881     {
2882         hb_filter_deblock.settings = (char *) [[queueToApply objectForKey:@"PictureDeblock"] UTF8String];
2883         hb_list_add( job->filters, &hb_filter_deblock );
2884     }
2885 [self writeToActivityLog: "prepareJob exiting"];    
2886 }
2887
2888
2889
2890 /* addToQueue: puts up an alert before ultimately calling doAddToQueue
2891 */
2892 - (IBAction) addToQueue: (id) sender
2893 {
2894         /* We get the destination directory from the destination field here */
2895         NSString *destinationDirectory = [[fDstFile2Field stringValue] stringByDeletingLastPathComponent];
2896         /* We check for a valid destination here */
2897         if ([[NSFileManager defaultManager] fileExistsAtPath:destinationDirectory] == 0) 
2898         {
2899                 NSRunAlertPanel(@"Warning!", @"This is not a valid destination directory!", @"OK", nil, nil);
2900         return;
2901         }
2902
2903     /* We check for duplicate name here */
2904         if( [[NSFileManager defaultManager] fileExistsAtPath:
2905             [fDstFile2Field stringValue]] )
2906     {
2907         NSBeginCriticalAlertSheet( NSLocalizedString( @"File already exists", @"" ),
2908             NSLocalizedString( @"Cancel", @"" ), NSLocalizedString( @"Overwrite", @"" ), nil, fWindow, self,
2909             @selector( overwriteAddToQueueAlertDone:returnCode:contextInfo: ),
2910             NULL, NULL, [NSString stringWithFormat:
2911             NSLocalizedString( @"Do you want to overwrite %@?", @"" ),
2912             [fDstFile2Field stringValue]] );
2913         // overwriteAddToQueueAlertDone: will be called when the alert is dismissed.
2914     }
2915     else
2916     {
2917         [self doAddToQueue];
2918     }
2919 }
2920
2921 /* overwriteAddToQueueAlertDone: called from the alert posted by addToQueue that asks
2922    the user if they want to overwrite an exiting movie file.
2923 */
2924 - (void) overwriteAddToQueueAlertDone: (NSWindow *) sheet
2925     returnCode: (int) returnCode contextInfo: (void *) contextInfo
2926 {
2927     if( returnCode == NSAlertAlternateReturn )
2928         [self doAddToQueue];
2929 }
2930
2931 - (void) doAddToQueue
2932 {
2933     [self addQueueFileItem ];
2934 }
2935
2936
2937
2938 /* Rip: puts up an alert before ultimately calling doRip
2939 */
2940 - (IBAction) Rip: (id) sender
2941 {
2942     [self writeToActivityLog: "Rip: Pending queue count is %d", fPendingCount];
2943     /* Rip or Cancel ? */
2944     hb_state_t s;
2945     hb_get_state2( fQueueEncodeLibhb, &s );
2946     
2947     if(s.state == HB_STATE_WORKING || s.state == HB_STATE_PAUSED)
2948         {
2949         [self Cancel: sender];
2950         return;
2951     }
2952     
2953     /* We check to see if we need to warn the user that the computer will go to sleep
2954                  or shut down when encoding is finished */
2955                 [self remindUserOfSleepOrShutdown];
2956     
2957     // If there are pending jobs in the queue, then this is a rip the queue
2958     if (fPendingCount > 0)
2959     {
2960         /* here lets start the queue with the first pending item */
2961         [self performNewQueueScan:[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"SourcePath"] scanTitleNum:[[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"TitleNumber"]intValue]]; 
2962         
2963         return;
2964     }
2965     
2966     // Before adding jobs to the queue, check for a valid destination.
2967     
2968     NSString *destinationDirectory = [[fDstFile2Field stringValue] stringByDeletingLastPathComponent];
2969     if ([[NSFileManager defaultManager] fileExistsAtPath:destinationDirectory] == 0) 
2970     {
2971         NSRunAlertPanel(@"Warning!", @"This is not a valid destination directory!", @"OK", nil, nil);
2972         return;
2973     }
2974     
2975     /* We check for duplicate name here */
2976     if( [[NSFileManager defaultManager] fileExistsAtPath:[fDstFile2Field stringValue]] )
2977     {
2978         NSBeginCriticalAlertSheet( NSLocalizedString( @"File already exists", @"" ),
2979                                   NSLocalizedString( @"Cancel", "" ), NSLocalizedString( @"Overwrite", @"" ), nil, fWindow, self,
2980                                   @selector( overWriteAlertDone:returnCode:contextInfo: ),
2981                                   NULL, NULL, [NSString stringWithFormat:
2982                                                NSLocalizedString( @"Do you want to overwrite %@?", @"" ),
2983                                                [fDstFile2Field stringValue]] );
2984         
2985         // overWriteAlertDone: will be called when the alert is dismissed. It will call doRip.
2986     }
2987     else
2988     {
2989         /* if there are no pending jobs in the queue, then add this one to the queue and rip
2990          otherwise, just rip the queue */
2991         if(fPendingCount == 0)
2992         {
2993          [self writeToActivityLog: "Rip: No pending jobs, so sending this one to doAddToQueue"];
2994                [self doAddToQueue];
2995         }
2996         
2997         NSString *destinationDirectory = [[fDstFile2Field stringValue] stringByDeletingLastPathComponent];
2998         [[NSUserDefaults standardUserDefaults] setObject:destinationDirectory forKey:@"LastDestinationDirectory"];
2999         /* go right to processing the new queue encode */
3000        [self writeToActivityLog: "Rip: Going right to performNewQueueScan"];
3001          [self performNewQueueScan:[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"SourcePath"] scanTitleNum:[[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"TitleNumber"]intValue]]; 
3002         
3003     }
3004 }
3005
3006 /* overWriteAlertDone: called from the alert posted by Rip: that asks the user if they
3007    want to overwrite an exiting movie file.
3008 */
3009 - (void) overWriteAlertDone: (NSWindow *) sheet
3010     returnCode: (int) returnCode contextInfo: (void *) contextInfo
3011 {
3012     if( returnCode == NSAlertAlternateReturn )
3013     {
3014         /* if there are no jobs in the queue, then add this one to the queue and rip 
3015         otherwise, just rip the queue */
3016         if( fPendingCount == 0 )
3017         {
3018             [self doAddToQueue];
3019         }
3020
3021         NSString *destinationDirectory = [[fDstFile2Field stringValue] stringByDeletingLastPathComponent];
3022         [[NSUserDefaults standardUserDefaults] setObject:destinationDirectory forKey:@"LastDestinationDirectory"];
3023         [self performNewQueueScan:[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"SourcePath"] scanTitleNum:[[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"TitleNumber"]intValue]]; 
3024       
3025     }
3026 }
3027
3028 - (void) remindUserOfSleepOrShutdown
3029 {
3030        if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"AlertWhenDone"] isEqualToString: @"Put Computer To Sleep"])
3031        {
3032                /*Warn that computer will sleep after encoding*/
3033                int reminduser;
3034                NSBeep();
3035                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);
3036                [NSApp requestUserAttention:NSCriticalRequest];
3037                if ( reminduser == NSAlertAlternateReturn )
3038                {
3039                        [self showPreferencesWindow:nil];
3040                }
3041        }
3042        else if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"AlertWhenDone"] isEqualToString: @"Shut Down Computer"])
3043        {
3044                /*Warn that computer will shut down after encoding*/
3045                int reminduser;
3046                NSBeep();
3047                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);
3048                [NSApp requestUserAttention:NSCriticalRequest];
3049                if ( reminduser == NSAlertAlternateReturn )
3050                {
3051                        [self showPreferencesWindow:nil];
3052                }
3053        }
3054
3055 }
3056
3057
3058 - (void) doRip
3059 {
3060     /* Let libhb do the job */
3061     hb_start( fQueueEncodeLibhb );
3062     /*set the fEncodeState State */
3063         fEncodeState = 1;
3064 }
3065
3066
3067 //------------------------------------------------------------------------------------
3068 // Cancels and deletes the current job and stops libhb from processing the remaining
3069 // encodes.
3070 //------------------------------------------------------------------------------------
3071 - (void) doCancelCurrentJob
3072 {
3073     // Stop the current job. hb_stop will only cancel the current pass and then set
3074     // its state to HB_STATE_WORKDONE. It also does this asynchronously. So when we
3075     // see the state has changed to HB_STATE_WORKDONE (in updateUI), we'll delete the
3076     // remaining passes of the job and then start the queue back up if there are any
3077     // remaining jobs.
3078      
3079     
3080     hb_stop( fQueueEncodeLibhb );
3081     fEncodeState = 2;   // don't alert at end of processing since this was a cancel
3082     
3083     // now that we've stopped the currently encoding job, lets mark it as cancelled
3084     [[QueueFileArray objectAtIndex:currentQueueEncodeIndex] setObject:[NSNumber numberWithInt:3] forKey:@"Status"];
3085     // and as always, save it in the queue .plist...
3086     /* We save all of the Queue data here */
3087     [self saveQueueFileItem];
3088     // so now lets move to 
3089     currentQueueEncodeIndex++ ;
3090     // ... and see if there are more items left in our queue
3091     int queueItems = [QueueFileArray count];
3092     /* If we still have more items in our queue, lets go to the next one */
3093     if (currentQueueEncodeIndex < queueItems)
3094     {
3095     [self writeToActivityLog: "doCancelCurrentJob currentQueueEncodeIndex is incremented to: %d", currentQueueEncodeIndex];
3096     [self writeToActivityLog: "doCancelCurrentJob moving to the next job"];
3097     
3098     [self performNewQueueScan:[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"SourcePath"] scanTitleNum:[[[QueueFileArray objectAtIndex:currentQueueEncodeIndex] objectForKey:@"TitleNumber"]intValue]];
3099     }
3100     else
3101     {
3102         [self writeToActivityLog: "doCancelCurrentJob the item queue is complete"];
3103     }
3104
3105 }
3106
3107 //------------------------------------------------------------------------------------
3108 // Displays an alert asking user if the want to cancel encoding of current job.
3109 // Cancel: returns immediately after posting the alert. Later, when the user
3110 // acknowledges the alert, doCancelCurrentJob is called.
3111 //------------------------------------------------------------------------------------
3112 - (IBAction)Cancel: (id)sender
3113 {
3114     if (!fQueueController) return;
3115     
3116   hb_pause( fQueueEncodeLibhb );
3117     NSString * alertTitle = [NSString stringWithFormat:NSLocalizedString(@"You are currently encoding. What would you like to do ?", nil)];
3118    
3119     // Which window to attach the sheet to?
3120     NSWindow * docWindow;
3121     if ([sender respondsToSelector: @selector(window)])
3122         docWindow = [sender window];
3123     else
3124         docWindow = fWindow;
3125         
3126     NSBeginCriticalAlertSheet(
3127             alertTitle,
3128             NSLocalizedString(@"Continue Encoding", nil),
3129             NSLocalizedString(@"Cancel Current and Stop", nil),
3130             NSLocalizedString(@"Cancel Current and Continue", nil),
3131             docWindow, self,
3132             nil, @selector(didDimissCancel:returnCode:contextInfo:), nil,
3133             NSLocalizedString(@"Your encode will be cancelled if you don't continue encoding.", nil));
3134     
3135     // didDimissCancelCurrentJob:returnCode:contextInfo: will be called when the dialog is dismissed
3136 }
3137
3138 - (void) didDimissCancel: (NSWindow *)sheet returnCode: (int)returnCode contextInfo: (void *)contextInfo
3139 {
3140    hb_resume( fQueueEncodeLibhb );
3141      if (returnCode == NSAlertOtherReturn)
3142     {
3143         [self doCancelCurrentJob];  // <- this also stops libhb
3144     }
3145     if (returnCode == NSAlertAlternateReturn)
3146     {
3147     [self doCancelCurrentJobAndStop];
3148     }
3149 }
3150
3151 - (void) doCancelCurrentJobAndStop
3152 {
3153     hb_stop( fQueueEncodeLibhb );
3154     fEncodeState = 2;   // don't alert at end of processing since this was a cancel
3155     
3156     // now that we've stopped the currently encoding job, lets mark it as cancelled
3157     [[QueueFileArray objectAtIndex:currentQueueEncodeIndex] setObject:[NSNumber numberWithInt:3] forKey:@"Status"];
3158     // and as always, save it in the queue .plist...
3159     /* We save all of the Queue data here */
3160     [self saveQueueFileItem];
3161     // so now lets move to 
3162     currentQueueEncodeIndex++ ;
3163     [self writeToActivityLog: "cancelling current job and stopping the queue"];
3164 }
3165 - (IBAction) Pause: (id) sender
3166 {
3167     hb_state_t s;
3168     hb_get_state2( fQueueEncodeLibhb, &s );
3169
3170     if( s.state == HB_STATE_PAUSED )
3171     {
3172         hb_resume( fQueueEncodeLibhb );
3173     }
3174     else
3175     {
3176         hb_pause( fQueueEncodeLibhb );
3177     }
3178 }
3179
3180 #pragma mark -
3181 #pragma mark GUI Controls Changed Methods
3182
3183 - (IBAction) titlePopUpChanged: (id) sender
3184 {
3185     hb_list_t  * list  = hb_get_titles( fHandle );
3186     hb_title_t * title = (hb_title_t*)
3187         hb_list_item( list, [fSrcTitlePopUp indexOfSelectedItem] );
3188
3189     /* If Auto Naming is on. We create an output filename of dvd name - title number */
3190     if( [[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultAutoNaming"] > 0 && ( hb_list_count( list ) > 1 ) )
3191         {
3192                 [fDstFile2Field setStringValue: [NSString stringWithFormat:
3193                         @"%@/%@-%d.%@", [[fDstFile2Field stringValue] stringByDeletingLastPathComponent],
3194                         [browsedSourceDisplayName stringByDeletingPathExtension],
3195             title->index,
3196                         [[fDstFile2Field stringValue] pathExtension]]]; 
3197         }
3198
3199     /* Update chapter popups */
3200     [fSrcChapterStartPopUp removeAllItems];
3201     [fSrcChapterEndPopUp   removeAllItems];
3202     for( int i = 0; i < hb_list_count( title->list_chapter ); i++ )
3203     {
3204         [fSrcChapterStartPopUp addItemWithTitle: [NSString
3205             stringWithFormat: @"%d", i + 1]];
3206         [fSrcChapterEndPopUp addItemWithTitle: [NSString
3207             stringWithFormat: @"%d", i + 1]];
3208     }
3209
3210     [fSrcChapterStartPopUp selectItemAtIndex: 0];
3211     [fSrcChapterEndPopUp   selectItemAtIndex:
3212         hb_list_count( title->list_chapter ) - 1];
3213     [self chapterPopUpChanged:nil];
3214
3215     /* Start Get and set the initial pic size for display */
3216         hb_job_t * job = title->job;
3217         fTitle = title;
3218
3219         /*Set Source Size Field Here */
3220     [fPicSettingsSrc setStringValue: [NSString stringWithFormat: @"%d x %d", fTitle->width, fTitle->height]];
3221         
3222         /* Set Auto Crop to on upon selecting a new title */
3223     [fPictureController setAutoCrop:YES];
3224     
3225         /* We get the originial output picture width and height and put them
3226         in variables for use with some presets later on */
3227         PicOrigOutputWidth = job->width;
3228         PicOrigOutputHeight = job->height;
3229         AutoCropTop = job->crop[0];
3230         AutoCropBottom = job->crop[1];
3231         AutoCropLeft = job->crop[2];
3232         AutoCropRight = job->crop[3];
3233
3234         /* Run Through encoderPopUpChanged to see if there
3235                 needs to be any pic value modifications based on encoder settings */
3236         //[self encoderPopUpChanged: NULL];
3237         /* END Get and set the initial pic size for display */ 
3238
3239     /* Update subtitle popups */
3240     hb_subtitle_t * subtitle;
3241     [fSubPopUp removeAllItems];
3242     [fSubPopUp addItemWithTitle: @"None"];
3243     [fSubPopUp addItemWithTitle: @"Autoselect"];
3244     for( int i = 0; i < hb_list_count( title->list_subtitle ); i++ )
3245     {
3246         subtitle = (hb_subtitle_t *) hb_list_item( title->list_subtitle, i );
3247
3248         /* We cannot use NSPopUpButton's addItemWithTitle because
3249            it checks for duplicate entries */
3250         [[fSubPopUp menu] addItemWithTitle: [NSString stringWithCString:
3251             subtitle->lang] action: NULL keyEquivalent: @""];
3252     }
3253     [fSubPopUp selectItemAtIndex: 0];
3254
3255         [self subtitleSelectionChanged:nil];
3256
3257     /* Update chapter table */
3258     [fChapterTitlesDelegate resetWithTitle:title];
3259     [fChapterTable reloadData];
3260
3261    /* Lets make sure there arent any erroneous audio tracks in the job list, so lets make sure its empty*/
3262     int audiotrack_count = hb_list_count(job->list_audio);
3263     for( int i = 0; i < audiotrack_count;i++)
3264     {
3265         hb_audio_t * temp_audio = (hb_audio_t*) hb_list_item( job->list_audio, 0 );
3266         hb_list_rem(job->list_audio, temp_audio);
3267     }
3268
3269     /* Update audio popups */
3270     [self addAllAudioTracksToPopUp: fAudLang1PopUp];
3271     [self addAllAudioTracksToPopUp: fAudLang2PopUp];
3272     [self addAllAudioTracksToPopUp: fAudLang3PopUp];
3273     [self addAllAudioTracksToPopUp: fAudLang4PopUp];
3274     /* search for the first instance of our prefs default language for track 1, and set track 2 to "none" */
3275         NSString * audioSearchPrefix = [[NSUserDefaults standardUserDefaults] stringForKey:@"DefaultLanguage"];
3276         [self selectAudioTrackInPopUp: fAudLang1PopUp searchPrefixString: audioSearchPrefix selectIndexIfNotFound: 1];
3277     [self selectAudioTrackInPopUp:fAudLang2PopUp searchPrefixString:nil selectIndexIfNotFound:0];
3278     [self selectAudioTrackInPopUp:fAudLang3PopUp searchPrefixString:nil selectIndexIfNotFound:0];
3279     [self selectAudioTrackInPopUp:fAudLang4PopUp searchPrefixString:nil selectIndexIfNotFound:0];
3280
3281         /* changing the title may have changed the audio channels on offer, */
3282         /* so call audioTrackPopUpChanged for both audio tracks to update the mixdown popups */
3283         [self audioTrackPopUpChanged: fAudLang1PopUp];
3284         [self audioTrackPopUpChanged: fAudLang2PopUp];
3285     [self audioTrackPopUpChanged: fAudLang3PopUp];
3286     [self audioTrackPopUpChanged: fAudLang4PopUp];
3287
3288     [fVidRatePopUp selectItemAtIndex: 0];
3289
3290     /* we run the picture size values through calculatePictureSizing to get all picture setting information*/
3291         [self calculatePictureSizing:nil];
3292
3293    /* lets call tableViewSelected to make sure that any preset we have selected is enforced after a title change */
3294         [self selectPreset:nil];
3295 }
3296
3297 - (IBAction) chapterPopUpChanged: (id) sender
3298 {
3299
3300         /* If start chapter popup is greater than end chapter popup,
3301         we set the end chapter popup to the same as start chapter popup */
3302         if ([fSrcChapterStartPopUp indexOfSelectedItem] > [fSrcChapterEndPopUp indexOfSelectedItem])
3303         {
3304                 [fSrcChapterEndPopUp selectItemAtIndex: [fSrcChapterStartPopUp indexOfSelectedItem]];
3305     }
3306
3307                 
3308         hb_list_t  * list  = hb_get_titles( fHandle );
3309     hb_title_t * title = (hb_title_t *)
3310         hb_list_item( list, [fSrcTitlePopUp indexOfSelectedItem] );
3311
3312     hb_chapter_t * chapter;
3313     int64_t        duration = 0;
3314     for( int i = [fSrcChapterStartPopUp indexOfSelectedItem];
3315          i <= [fSrcChapterEndPopUp indexOfSelectedItem]; i++ )
3316     {
3317         chapter = (hb_chapter_t *) hb_list_item( title->list_chapter, i );
3318         duration += chapter->duration;
3319     }
3320     
3321     duration /= 90000; /* pts -> seconds */
3322     [fSrcDuration2Field setStringValue: [NSString stringWithFormat:
3323         @"%02lld:%02lld:%02lld", duration / 3600, ( duration / 60 ) % 60,
3324         duration % 60]];
3325
3326     [self calculateBitrate: sender];
3327 }
3328
3329 - (IBAction) formatPopUpChanged: (id) sender
3330 {
3331     NSString * string = [fDstFile2Field stringValue];
3332     int format = [fDstFormatPopUp indexOfSelectedItem];
3333     char * ext = NULL;
3334         /* Initially set the large file (64 bit formatting) output checkbox to hidden */
3335     [fDstMp4LargeFileCheck setHidden: YES];
3336     [fDstMp4HttpOptFileCheck setHidden: YES];
3337     [fDstMp4iPodFileCheck setHidden: YES];
3338     
3339     /* Update the Video Codec PopUp */
3340     /* Note: we now store the video encoder int values from common.c in the tags of each popup for easy retrieval later */
3341     [fVidEncoderPopUp removeAllItems];
3342     NSMenuItem *menuItem;
3343     /* These video encoders are available to all of our current muxers, so lets list them once here */
3344     menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"MPEG-4 (FFmpeg)" action: NULL keyEquivalent: @""];
3345     [menuItem setTag: HB_VCODEC_FFMPEG];
3346     
3347     menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"MPEG-4 (XviD)" action: NULL keyEquivalent: @""];
3348     [menuItem setTag: HB_VCODEC_XVID];
3349     switch( format )
3350     {
3351         case 0:
3352                         /*Get Default MP4 File Extension*/
3353                         if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultMpegName"] > 0)
3354                         {
3355                                 ext = "m4v";
3356                         }
3357                         else
3358                         {
3359                                 ext = "mp4";
3360                         }
3361             /* Add additional video encoders here */
3362             menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"H.264 (x264)" action: NULL keyEquivalent: @""];
3363             [menuItem setTag: HB_VCODEC_X264];
3364             /* We show the mp4 option checkboxes here since we are mp4 */
3365             [fCreateChapterMarkers setEnabled: YES];
3366                         [fDstMp4LargeFileCheck setHidden: NO];
3367                         [fDstMp4HttpOptFileCheck setHidden: NO];
3368             [fDstMp4iPodFileCheck setHidden: NO];
3369             break;
3370             
3371             case 1:
3372             ext = "mkv";
3373             /* Add additional video encoders here */
3374             menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"H.264 (x264)" action: NULL keyEquivalent: @""];
3375             [menuItem setTag: HB_VCODEC_X264];
3376             menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"VP3 (Theora)" action: NULL keyEquivalent: @""];
3377             [menuItem setTag: HB_VCODEC_THEORA];
3378             /* We enable the create chapters checkbox here */
3379                         [fCreateChapterMarkers setEnabled: YES];
3380                         break;
3381             
3382             case 2: 
3383             ext = "avi";
3384             /* Add additional video encoders here */
3385             menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"H.264 (x264)" action: NULL keyEquivalent: @""];
3386             [menuItem setTag: HB_VCODEC_X264];
3387             /* We disable the create chapters checkbox here and make sure it is unchecked*/
3388                         [fCreateChapterMarkers setEnabled: NO];
3389                         [fCreateChapterMarkers setState: NSOffState];
3390                         break;
3391             
3392             case 3:
3393             ext = "ogm";
3394             /* Add additional video encoders here */
3395             menuItem = [[fVidEncoderPopUp menu] addItemWithTitle:@"VP3 (Theora)" action: NULL keyEquivalent: @""];
3396             [menuItem setTag: HB_VCODEC_THEORA];
3397             /* We disable the create chapters checkbox here and make sure it is unchecked*/
3398                         [fCreateChapterMarkers setEnabled: NO];
3399                         [fCreateChapterMarkers setState: NSOffState];
3400                         break;
3401     }
3402     [fVidEncoderPopUp selectItemAtIndex: 0];
3403
3404     [self audioAddAudioTrackCodecs: fAudTrack1CodecPopUp];
3405     [self audioAddAudioTrackCodecs: fAudTrack2CodecPopUp];
3406     [self audioAddAudioTrackCodecs: fAudTrack3CodecPopUp];
3407     [self audioAddAudioTrackCodecs: fAudTrack4CodecPopUp];
3408
3409     if( format == 0 )
3410         [self autoSetM4vExtension: sender];
3411     else
3412         [fDstFile2Field setStringValue: [NSString stringWithFormat:@"%@.%s", [string stringByDeletingPathExtension], ext]];
3413
3414     if( SuccessfulScan )
3415     {
3416         /* Add/replace to the correct extension */
3417         [self audioTrackPopUpChanged: fAudLang1PopUp];
3418         [self audioTrackPopUpChanged: fAudLang2PopUp];
3419         [self audioTrackPopUpChanged: fAudLang3PopUp];
3420         [self audioTrackPopUpChanged: fAudLang4PopUp];
3421
3422         if( [fVidEncoderPopUp selectedItem] == nil )
3423         {
3424
3425             [fVidEncoderPopUp selectItemAtIndex:0];
3426             [self videoEncoderPopUpChanged:nil];
3427
3428             /* changing the format may mean that we can / can't offer mono or 6ch, */
3429             /* so call audioTrackPopUpChanged for both audio tracks to update the mixdown popups */
3430
3431             /* We call the method to properly enable/disable turbo 2 pass */
3432             [self twoPassCheckboxChanged: sender];
3433             /* We call method method to change UI to reflect whether a preset is used or not*/
3434         }
3435     }
3436         [self customSettingUsed: sender];
3437 }
3438
3439 - (IBAction) autoSetM4vExtension: (id) sender
3440 {
3441     if ( [fDstFormatPopUp indexOfSelectedItem] )
3442         return;
3443
3444     NSString * extension = @"mp4";
3445
3446     if( [[fAudTrack1CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 || [[fAudTrack2CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 ||
3447                                                         [[fAudTrack3CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 ||
3448                                                         [[fAudTrack4CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 ||
3449                                                         [fCreateChapterMarkers state] == NSOnState ||
3450                                                         [[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultMpegName"] > 0 )
3451     {
3452         extension = @"m4v";
3453     }
3454
3455     if( [extension isEqualTo: [[fDstFile2Field stringValue] pathExtension]] )
3456         return;
3457     else
3458         [fDstFile2Field setStringValue: [NSString stringWithFormat:@"%@.%@",
3459                                     [[fDstFile2Field stringValue] stringByDeletingPathExtension], extension]];
3460 }
3461
3462 - (void) shouldEnableHttpMp4CheckBox: (id) sender
3463 {
3464     if( [[fAudTrack1CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 || [[fAudTrack2CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 ||
3465                                                         [[fAudTrack3CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 ||
3466                                                         [[fAudTrack4CodecPopUp selectedItem] tag] == HB_ACODEC_AC3 )
3467         [fDstMp4HttpOptFileCheck setEnabled: NO];
3468     else
3469         [fDstMp4HttpOptFileCheck setEnabled: YES];
3470 }
3471         
3472 /* Method to determine if we should change the UI
3473 To reflect whether or not a Preset is being used or if
3474 the user is using "Custom" settings by determining the sender*/
3475 - (IBAction) customSettingUsed: (id) sender
3476 {
3477         if ([sender stringValue])
3478         {
3479                 /* Deselect the currently selected Preset if there is one*/
3480                 [fPresetsOutlineView deselectRow:[fPresetsOutlineView selectedRow]];
3481                 /* Change UI to show "Custom" settings are being used */
3482                 [fPresetSelectedDisplay setStringValue: @"Custom"];
3483
3484                 curUserPresetChosenNum = nil;
3485         }
3486 }
3487
3488
3489 #pragma mark -
3490 #pragma mark - Video
3491
3492 - (IBAction) videoEncoderPopUpChanged: (id) sender
3493 {
3494     hb_job_t * job = fTitle->job;
3495     int videoEncoder = [[fVidEncoderPopUp selectedItem] tag];
3496     
3497     [fAdvancedOptions setHidden:YES];
3498     /* If we are using x264 then show the x264 advanced panel*/
3499     if (videoEncoder == HB_VCODEC_X264)
3500     {
3501         [fAdvancedOptions setHidden:NO];
3502         [self autoSetM4vExtension: sender];
3503     }
3504     
3505     /* We need to set loose anamorphic as available depending on whether or not the ffmpeg encoder
3506     is being used as it borks up loose anamorphic .
3507     For convenience lets use the titleOfSelected index. Probably should revisit whether or not we want
3508     to use the index itself but this is easier */
3509     if (videoEncoder == HB_VCODEC_FFMPEG)
3510     {
3511         if (job->pixel_ratio == 2)
3512         {
3513             job->pixel_ratio = 0;
3514         }
3515         [fPictureController setAllowLooseAnamorphic:NO];
3516         /* We set the iPod atom checkbox to disabled and uncheck it as its only for x264 in the mp4
3517          container. Format is taken care of in formatPopUpChanged method by hiding and unchecking
3518          anything other than MP4.
3519          */ 
3520         [fDstMp4iPodFileCheck setEnabled: NO];
3521         [fDstMp4iPodFileCheck setState: NSOffState];
3522     }
3523     else
3524     {
3525         [fPictureController setAllowLooseAnamorphic:YES];
3526         [fDstMp4iPodFileCheck setEnabled: YES];
3527     }
3528     
3529         [self calculatePictureSizing: sender];
3530         [self twoPassCheckboxChanged: sender];
3531 }
3532
3533
3534 - (IBAction) twoPassCheckboxChanged: (id) sender
3535 {
3536         /* check to see if x264 is chosen */
3537         if([[fVidEncoderPopUp selectedItem] tag] == HB_VCODEC_X264)
3538     {
3539                 if( [fVidTwoPassCheck state] == NSOnState)
3540                 {
3541                         [fVidTurboPassCheck setHidden: NO];
3542                 }
3543                 else
3544                 {
3545                         [fVidTurboPassCheck setHidden: YES];
3546                         [fVidTurboPassCheck setState: NSOffState];
3547                 }
3548                 /* Make sure Two Pass is checked if Turbo is checked */
3549                 if( [fVidTurboPassCheck state] == NSOnState)
3550                 {
3551                         [fVidTwoPassCheck setState: NSOnState];
3552                 }
3553         }
3554         else
3555         {
3556                 [fVidTurboPassCheck setHidden: YES];
3557                 [fVidTurboPassCheck setState: NSOffState];
3558         }
3559         
3560         /* We call method method to change UI to reflect whether a preset is used or not*/
3561         [self customSettingUsed: sender];
3562 }
3563
3564 - (IBAction ) videoFrameRateChanged: (id) sender
3565 {
3566     /* We call method method to calculatePictureSizing to error check detelecine*/
3567     [self calculatePictureSizing: sender];
3568
3569     /* We call method method to change UI to reflect whether a preset is used or not*/
3570         [self customSettingUsed: sender];
3571 }
3572 - (IBAction) videoMatrixChanged: (id) sender;
3573 {
3574     bool target, bitrate, quality;
3575
3576     target = bitrate = quality = false;
3577     if( [fVidQualityMatrix isEnabled] )
3578     {
3579         switch( [fVidQualityMatrix selectedRow] )
3580         {
3581             case 0:
3582                 target = true;
3583                 break;
3584             case 1:
3585                 bitrate = true;
3586                 break;
3587             case 2:
3588                 quality = true;
3589                 break;
3590         }
3591     }
3592     [fVidTargetSizeField  setEnabled: target];
3593     [fVidBitrateField     setEnabled: bitrate];
3594     [fVidQualitySlider    setEnabled: quality];
3595     [fVidTwoPassCheck     setEnabled: !quality &&
3596         [fVidQualityMatrix isEnabled]];
3597     if( quality )
3598     {
3599         [fVidTwoPassCheck setState: NSOffState];
3600                 [fVidTurboPassCheck setHidden: YES];
3601                 [fVidTurboPassCheck setState: NSOffState];
3602     }
3603
3604     [self qualitySliderChanged: sender];
3605     [self calculateBitrate: sender];
3606         [self customSettingUsed: sender];
3607 }
3608
3609 - (IBAction) qualitySliderChanged: (id) sender
3610 {
3611     [fVidConstantCell setTitle: [NSString stringWithFormat:
3612         NSLocalizedString( @"Constant quality: %.0f %%", @"" ), 100.0 *
3613         [fVidQualitySlider floatValue]]];
3614                 [self customSettingUsed: sender];
3615 }
3616
3617 - (void) controlTextDidChange: (NSNotification *) notification
3618 {
3619     [self calculateBitrate:nil];
3620 }
3621
3622 - (IBAction) calculateBitrate: (id) sender
3623 {
3624     if( !fHandle || [fVidQualityMatrix selectedRow] != 0 || !SuccessfulScan )
3625     {
3626         return;
3627     }
3628
3629     hb_list_t  * list  = hb_get_titles( fHandle );
3630     hb_title_t * title = (hb_title_t *) hb_list_item( list,
3631             [fSrcTitlePopUp indexOfSelectedItem] );
3632     hb_job_t * job = title->job;
3633      
3634     [fVidBitrateField setIntValue: hb_calc_bitrate( job,
3635             [fVidTargetSizeField intValue] )];
3636 }
3637
3638 #pragma mark -
3639 #pragma mark - Picture
3640
3641 /* lets set the picture size back to the max from right after title scan
3642    Lets use an IBAction here as down the road we could always use a checkbox
3643    in the gui to easily take the user back to max. Remember, the compiler
3644    resolves IBActions down to -(void) during compile anyway */
3645 - (IBAction) revertPictureSizeToMax: (id) sender
3646 {
3647         hb_job_t * job = fTitle->job;
3648         [fPictureController setAutoCrop:YES];
3649         /* Here we use the auto crop values determined right after scan */
3650         job->crop[0] = AutoCropTop;
3651         job->crop[1] = AutoCropBottom;
3652         job->crop[2] = AutoCropLeft;
3653         job->crop[3] = AutoCropRight;
3654     /* Here we apply the max source storage width and height */
3655     job->width = fTitle->width-fTitle->job->crop[2]-fTitle->job->crop[3];
3656     job->height = fTitle->height-fTitle->job->crop[0]-fTitle->job->crop[1];
3657     
3658     [self calculatePictureSizing: sender];
3659     /* We call method to change UI to reflect whether a preset is used or not*/    
3660     [self customSettingUsed: sender];
3661 }
3662
3663 /**
3664  * Registers changes made in the Picture Settings Window.
3665  */
3666
3667 - (void)pictureSettingsDidChange {
3668         [self calculatePictureSizing:nil];
3669 }
3670
3671 /* Get and Display Current Pic Settings in main window */
3672 - (IBAction) calculatePictureSizing: (id) sender
3673 {
3674         [fPicSettingsOutp setStringValue: [NSString stringWithFormat:@"%d x %d", fTitle->job->width, fTitle->job->height]];
3675         
3676     if (fTitle->job->pixel_ratio == 1)
3677         {
3678         int titlewidth = fTitle->width-fTitle->job->crop[2]-fTitle->job->crop[3];
3679         int arpwidth = fTitle->job->pixel_aspect_width;
3680         int arpheight = fTitle->job->pixel_aspect_height;
3681         int displayparwidth = titlewidth * arpwidth / arpheight;
3682         int displayparheight = fTitle->height-fTitle->job->crop[0]-fTitle->job->crop[1];
3683         [fPicSettingsOutp setStringValue: [NSString stringWithFormat:@"%d x %d", titlewidth, displayparheight]];
3684         [fPicSettingsAnamorphic setStringValue: [NSString stringWithFormat:@"%d x %d Strict", displayparwidth, displayparheight]];
3685         fTitle->job->keep_ratio = 0;
3686         }
3687     else if (fTitle->job->pixel_ratio == 2)
3688     {
3689         hb_job_t * job = fTitle->job;
3690         int output_width, output_height, output_par_width, output_par_height;
3691         hb_set_anamorphic_size(job, &output_width, &output_height, &output_par_width, &output_par_height);
3692         int display_width;
3693         display_width = output_width * output_par_width / output_par_height;
3694
3695         [fPicSettingsOutp setStringValue: [NSString stringWithFormat:@"%d x %d", output_width, output_height]];
3696         [fPicSettingsAnamorphic setStringValue: [NSString stringWithFormat:@"%d x %d Loose", display_width, output_height]];
3697
3698         fTitle->job->keep_ratio = 0;
3699     }
3700         else
3701         {
3702         [fPicSettingsAnamorphic setStringValue:@"Off"];
3703         }
3704
3705         /* Set ON/Off values for the deinterlace/keep aspect ratio according to boolean */
3706         if (fTitle->job->keep_ratio > 0)
3707         {
3708                 [fPicSettingARkeep setStringValue: @"On"];
3709         }
3710         else
3711         {
3712                 [fPicSettingARkeep setStringValue: @"Off"];
3713         }       
3714     
3715     /* Detelecine */
3716     if ([fPictureController detelecine]) {
3717         [fPicSettingDetelecine setStringValue: @"Yes"];
3718     }
3719     else {
3720         [fPicSettingDetelecine setStringValue: @"No"];
3721     }
3722     
3723     /* Decomb */
3724         if ([fPictureController decomb] == 0)
3725         {
3726                 [fPicSettingDecomb setStringValue: @"Off"];
3727         }
3728         else if ([fPictureController decomb] == 1)
3729         {
3730                 [fPicSettingDecomb setStringValue: @"1:2:6:9:80:16:16"];
3731         }
3732     else if ([fPictureController decomb] == 2)
3733     {
3734         [fPicSettingDecomb setStringValue:[[NSUserDefaults standardUserDefaults] stringForKey:@"DecombCustomString"]];
3735     }
3736
3737     /* VFR (Variable Frame Rate) */
3738     
3739     
3740         /* Deinterlace */
3741         if ([fPictureController deinterlace] == 0)
3742         {
3743                 [fPicSettingDeinterlace setStringValue: @"Off"];
3744         }
3745         else if ([fPictureController deinterlace] == 1)
3746         {
3747                 [fPicSettingDeinterlace setStringValue: @"Fast"];
3748         }
3749         else if ([fPictureController deinterlace] == 2)
3750         {
3751                 [fPicSettingDeinterlace setStringValue: @"Slow"];
3752         }
3753         else if ([fPictureController deinterlace] == 3)
3754         {
3755                 [fPicSettingDeinterlace setStringValue: @"Slower"];
3756         }
3757                 
3758     /* Denoise */
3759         if ([fPictureController denoise] == 0)
3760         {
3761                 [fPicSettingDenoise setStringValue: @"Off"];
3762         }
3763         else if ([fPictureController denoise] == 1)
3764         {
3765                 [fPicSettingDenoise setStringValue: @"Weak"];
3766         }
3767         else if ([fPictureController denoise] == 2)
3768         {
3769                 [fPicSettingDenoise setStringValue: @"Medium"];
3770         }
3771         else if ([fPictureController denoise] == 3)
3772         {
3773                 [fPicSettingDenoise setStringValue: @"Strong"];
3774         }
3775     
3776     /* Deblock */
3777     if ([fPictureController deblock] == 0) 
3778     {
3779         [fPicSettingDeblock setStringValue: @"Off"];
3780     }
3781     else 
3782     {
3783         [fPicSettingDeblock setStringValue: [NSString stringWithFormat:@"%d",[fPictureController deblock]]];
3784     }
3785         
3786         if (fTitle->job->pixel_ratio > 0)
3787         {
3788                 [fPicSettingPAR setStringValue: @""];
3789         }
3790         else
3791         {
3792                 [fPicSettingPAR setStringValue: @"Off"];
3793         }
3794         
3795     /* Set the display field for crop as per boolean */
3796         if (![fPictureController autoCrop])
3797         {
3798             [fPicSettingAutoCrop setStringValue: @"Custom"];
3799         }
3800         else
3801         {
3802                 [fPicSettingAutoCrop setStringValue: @"Auto"];
3803         }       
3804         
3805     
3806 }
3807
3808
3809 #pragma mark -
3810 #pragma mark - Audio and Subtitles
3811 - (IBAction) audioCodecsPopUpChanged: (id) sender
3812 {
3813     
3814     NSPopUpButton * audiotrackPopUp;
3815     NSPopUpButton * sampleratePopUp;
3816     NSPopUpButton * bitratePopUp;
3817     NSPopUpButton * audiocodecPopUp;
3818     if (sender == fAudTrack1CodecPopUp)
3819     {
3820         audiotrackPopUp = fAudLang1PopUp;
3821         audiocodecPopUp = fAudTrack1CodecPopUp;
3822         sampleratePopUp = fAudTrack1RatePopUp;
3823         bitratePopUp = fAudTrack1BitratePopUp;
3824     }
3825     else if (sender == fAudTrack2CodecPopUp)
3826     {
3827         audiotrackPopUp = fAudLang2PopUp;
3828         audiocodecPopUp = fAudTrack2CodecPopUp;
3829         sampleratePopUp = fAudTrack2RatePopUp;
3830         bitratePopUp = fAudTrack2BitratePopUp;
3831     }
3832     else if (sender == fAudTrack3CodecPopUp)
3833     {
3834         audiotrackPopUp = fAudLang3PopUp;
3835         audiocodecPopUp = fAudTrack3CodecPopUp;
3836         sampleratePopUp = fAudTrack3RatePopUp;
3837         bitratePopUp = fAudTrack3BitratePopUp;
3838     }
3839     else
3840     {
3841         audiotrackPopUp = fAudLang4PopUp;
3842         audiocodecPopUp = fAudTrack4CodecPopUp;
3843         sampleratePopUp = fAudTrack4RatePopUp;
3844         bitratePopUp = fAudTrack4BitratePopUp;
3845     }
3846         
3847     /* changing the codecs on offer may mean that we can / can't offer mono or 6ch, */
3848         /* so call audioTrackPopUpChanged for both audio tracks to update the mixdown popups */
3849     [self audioTrackPopUpChanged: audiotrackPopUp];
3850     
3851 }
3852
3853 - (IBAction) setEnabledStateOfAudioMixdownControls: (id) sender
3854 {
3855     /* We will be setting the enabled/disabled state of each tracks audio controls based on
3856      * the settings of the source audio for that track. We leave the samplerate and bitrate
3857      * to audiotrackMixdownChanged
3858      */
3859     
3860     /* We will first verify that a lower track number has been selected before enabling each track
3861      * for example, make sure a track is selected for track 1 before enabling track 2, etc.
3862      */
3863     if ([fAudLang1PopUp indexOfSelectedItem] == 0)
3864     {
3865         [fAudLang2PopUp setEnabled: NO];
3866         [fAudLang2PopUp selectItemAtIndex: 0];
3867     }
3868     else
3869     {
3870         [fAudLang2PopUp setEnabled: YES];
3871     }
3872     
3873     if ([fAudLang2PopUp indexOfSelectedItem] == 0)
3874     {
3875         [fAudLang3PopUp setEnabled: NO];
3876         [fAudLang3PopUp selectItemAtIndex: 0];
3877     }
3878     else
3879     {
3880         [fAudLang3PopUp setEnabled: YES];
3881     }
3882     if ([fAudLang3PopUp indexOfSelectedItem] == 0)
3883     {
3884         [fAudLang4PopUp setEnabled: NO];
3885         [fAudLang4PopUp selectItemAtIndex: 0];
3886     }
3887     else
3888     {
3889         [fAudLang4PopUp setEnabled: YES];
3890     }
3891     /* enable/disable the mixdown text and popupbutton for audio track 1 */
3892     [fAudTrack1CodecPopUp setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3893     [fAudTrack1MixPopUp setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3894     [fAudTrack1RatePopUp setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3895     [fAudTrack1BitratePopUp setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3896     [fAudTrack1DrcSlider setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3897     [fAudTrack1DrcField setEnabled: ([fAudLang1PopUp indexOfSelectedItem] == 0) ? NO : YES];
3898     if ([fAudLang1PopUp indexOfSelectedItem] == 0)
3899     {
3900         [fAudTrack1CodecPopUp removeAllItems];
3901         [fAudTrack1MixPopUp removeAllItems];
3902         [fAudTrack1RatePopUp removeAllItems];
3903         [fAudTrack1BitratePopUp removeAllItems];
3904         [fAudTrack1DrcSlider setFloatValue: 1.00];
3905         [self audioDRCSliderChanged: fAudTrack1DrcSlider];
3906     }
3907     else if ([[fAudTrack1MixPopUp selectedItem] tag] == HB_ACODEC_AC3)
3908     {
3909         [fAudTrack1RatePopUp setEnabled: NO];
3910         [fAudTrack1BitratePopUp setEnabled: NO];
3911         [fAudTrack1DrcSlider setEnabled: NO];
3912         [fAudTrack1DrcField setEnabled: NO];
3913     }
3914     
3915     /* enable/disable the mixdown text and popupbutton for audio track 2 */
3916     [fAudTrack2CodecPopUp setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3917     [fAudTrack2MixPopUp setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3918     [fAudTrack2RatePopUp setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3919     [fAudTrack2BitratePopUp setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3920     [fAudTrack2DrcSlider setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3921     [fAudTrack2DrcField setEnabled: ([fAudLang2PopUp indexOfSelectedItem] == 0) ? NO : YES];
3922     if ([fAudLang2PopUp indexOfSelectedItem] == 0)
3923     {
3924         [fAudTrack2CodecPopUp removeAllItems];
3925         [fAudTrack2MixPopUp removeAllItems];
3926         [fAudTrack2RatePopUp removeAllItems];
3927         [fAudTrack2BitratePopUp removeAllItems];
3928         [fAudTrack2DrcSlider setFloatValue: 1.00];
3929         [self audioDRCSliderChanged: fAudTrack2DrcSlider];
3930     }
3931     else if ([[fAudTrack2MixPopUp selectedItem] tag] == HB_ACODEC_AC3)
3932     {
3933         [fAudTrack2RatePopUp setEnabled: NO];
3934         [fAudTrack2BitratePopUp setEnabled: NO];
3935         [fAudTrack2DrcSlider setEnabled: NO];
3936         [fAudTrack2DrcField setEnabled: NO];
3937     }
3938     
3939     /* enable/disable the mixdown text and popupbutton for audio track 3 */
3940     [fAudTrack3CodecPopUp setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3941     [fAudTrack3MixPopUp setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3942     [fAudTrack3RatePopUp setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3943     [fAudTrack3BitratePopUp setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3944     [fAudTrack3DrcSlider setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3945     [fAudTrack3DrcField setEnabled: ([fAudLang3PopUp indexOfSelectedItem] == 0) ? NO : YES];
3946     if ([fAudLang3PopUp indexOfSelectedItem] == 0)
3947     {
3948         [fAudTrack3CodecPopUp removeAllItems];
3949         [fAudTrack3MixPopUp removeAllItems];
3950         [fAudTrack3RatePopUp removeAllItems];
3951         [fAudTrack3BitratePopUp removeAllItems];
3952         [fAudTrack3DrcSlider setFloatValue: 1.00];
3953         [self audioDRCSliderChanged: fAudTrack3DrcSlider];
3954     }
3955     else if ([[fAudTrack3MixPopUp selectedItem] tag] == HB_ACODEC_AC3)
3956     {
3957         [fAudTrack3RatePopUp setEnabled: NO];
3958         [fAudTrack3BitratePopUp setEnabled: NO];
3959         [fAudTrack3DrcSlider setEnabled: NO];
3960         [fAudTrack3DrcField setEnabled: NO];
3961     }
3962     
3963     /* enable/disable the mixdown text and popupbutton for audio track 4 */
3964     [fAudTrack4CodecPopUp setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3965     [fAudTrack4MixPopUp setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3966     [fAudTrack4RatePopUp setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3967     [fAudTrack4BitratePopUp setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3968     [fAudTrack4DrcSlider setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3969     [fAudTrack4DrcField setEnabled: ([fAudLang4PopUp indexOfSelectedItem] == 0) ? NO : YES];
3970     if ([fAudLang4PopUp indexOfSelectedItem] == 0)
3971     {
3972         [fAudTrack4CodecPopUp removeAllItems];
3973         [fAudTrack4MixPopUp removeAllItems];
3974         [fAudTrack4RatePopUp removeAllItems];
3975         [fAudTrack4BitratePopUp removeAllItems];
3976         [fAudTrack4DrcSlider setFloatValue: 1.00];
3977         [self audioDRCSliderChanged: fAudTrack4DrcSlider];
3978     }
3979     else if ([[fAudTrack4MixPopUp selectedItem] tag] == HB_ACODEC_AC3)
3980     {
3981         [fAudTrack4RatePopUp setEnabled: NO];
3982         [fAudTrack4BitratePopUp setEnabled: NO];
3983         [fAudTrack4DrcSlider setEnabled: NO];
3984         [fAudTrack4DrcField setEnabled: NO];
3985     }
3986     
3987 }
3988
3989 - (IBAction) addAllAudioTracksToPopUp: (id) sender
3990 {
3991
3992     hb_list_t  * list  = hb_get_titles( fHandle );
3993     hb_title_t * title = (hb_title_t*)
3994         hb_list_item( list, [fSrcTitlePopUp indexOfSelectedItem] );
3995
3996         hb_audio_config_t * audio;
3997
3998     [sender removeAllItems];
3999     [sender addItemWithTitle: NSLocalizedString( @"None", @"" )];
4000     for( int i = 0; i < hb_list_count( title->list_audio ); i++ )
4001     {
4002         audio = (hb_audio_config_t *) hb_list_audio_config_item( title->list_audio, i );
4003         [[sender menu] addItemWithTitle:
4004             [NSString stringWithCString: audio->lang.description]
4005             action: NULL keyEquivalent: @""];
4006     }
4007     [sender selectItemAtIndex: 0];
4008
4009 }
4010
4011 - (IBAction) selectAudioTrackInPopUp: (id) sender searchPrefixString: (NSString *) searchPrefixString selectIndexIfNotFound: (int) selectIndexIfNotFound
4012 {
4013
4014     /* this method can be used to find a language, or a language-and-source-format combination, by passing in the appropriate string */
4015     /* e.g. to find the first French track, pass in an NSString * of "Francais" */
4016     /* e.g. to find the first English 5.1 AC3 track, pass in an NSString * of "English (AC3) (5.1 ch)" */
4017     /* if no matching track is found, then selectIndexIfNotFound is used to choose which track to select instead */
4018
4019         if (searchPrefixString)
4020         {
4021
4022         for( int i = 0; i < [sender numberOfItems]; i++ )
4023         {
4024             /* Try to find the desired search string */
4025             if ([[[sender itemAtIndex: i] title] hasPrefix:searchPrefixString])
4026             {
4027                 [sender selectItemAtIndex: i];
4028                 return;
4029             }
4030         }
4031         /* couldn't find the string, so select the requested "search string not found" item */
4032         /* index of 0 means select the "none" item */
4033         /* index of 1 means select the first audio track */
4034         [sender selectItemAtIndex: selectIndexIfNotFound];
4035         }
4036     else
4037     {
4038         /* if no search string is provided, then select the selectIndexIfNotFound item */
4039         [sender selectItemAtIndex: selectIndexIfNotFound];
4040     }
4041
4042 }
4043 - (IBAction) audioAddAudioTrackCodecs: (id)sender
4044 {
4045     int format = [fDstFormatPopUp indexOfSelectedItem];
4046     
4047     /* setup pointers to the appropriate popups for the correct track */
4048     NSPopUpButton * audiocodecPopUp;
4049     NSPopUpButton * audiotrackPopUp;
4050     if (sender == fAudTrack1CodecPopUp)
4051     {
4052         audiotrackPopUp = fAudLang1PopUp;
4053         audiocodecPopUp = fAudTrack1CodecPopUp;
4054     }
4055     else if (sender == fAudTrack2CodecPopUp)
4056     {
4057         audiotrackPopUp = fAudLang2PopUp;
4058         audiocodecPopUp = fAudTrack2CodecPopUp;
4059     }
4060     else if (sender == fAudTrack3CodecPopUp)
4061     {
4062         audiotrackPopUp = fAudLang3PopUp;
4063         audiocodecPopUp = fAudTrack3CodecPopUp;
4064     }
4065     else
4066     {
4067         audiotrackPopUp = fAudLang4PopUp;
4068         audiocodecPopUp = fAudTrack4CodecPopUp;
4069     }
4070     
4071     [audiocodecPopUp removeAllItems];
4072     /* Make sure "None" isnt selected in the source track */
4073     if ([audiotrackPopUp indexOfSelectedItem] > 0)
4074     {
4075         [audiocodecPopUp setEnabled:YES];
4076         NSMenuItem *menuItem;
4077         /* We setup our appropriate popups for codecs and put the int value in the popup tag for easy retrieval */
4078         switch( format )
4079         {
4080             case 0:
4081                 /* MP4 */
4082                 // AAC
4083                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"AAC (faac)" action: NULL keyEquivalent: @""];
4084                 [menuItem setTag: HB_ACODEC_FAAC];
4085                 
4086                 // AC3 Passthru
4087                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"AC3 Passthru" action: NULL keyEquivalent: @""];
4088                 [menuItem setTag: HB_ACODEC_AC3];
4089                 break;
4090                 
4091             case 1:
4092                 /* MKV */
4093                 // AAC
4094                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"AAC (faac)" action: NULL keyEquivalent: @""];
4095                 [menuItem setTag: HB_ACODEC_FAAC];
4096                 // AC3 Passthru
4097                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"AC3 Passthru" action: NULL keyEquivalent: @""];
4098                 [menuItem setTag: HB_ACODEC_AC3];
4099                 // MP3
4100                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"MP3 (lame)" action: NULL keyEquivalent: @""];
4101                 [menuItem setTag: HB_ACODEC_LAME];
4102                 // Vorbis
4103                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"Vorbis (vorbis)" action: NULL keyEquivalent: @""];
4104                 [menuItem setTag: HB_ACODEC_VORBIS];
4105                 break;
4106                 
4107             case 2: 
4108                 /* AVI */
4109                 // MP3
4110                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"MP3 (lame)" action: NULL keyEquivalent: @""];
4111                 [menuItem setTag: HB_ACODEC_LAME];
4112                 // AC3 Passthru
4113                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"AC3 Passthru" action: NULL keyEquivalent: @""];
4114                 [menuItem setTag: HB_ACODEC_AC3];
4115                 break;
4116                 
4117             case 3:
4118                 /* OGM */
4119                 // Vorbis
4120                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"Vorbis (vorbis)" action: NULL keyEquivalent: @""];
4121                 [menuItem setTag: HB_ACODEC_VORBIS];
4122                 // MP3
4123                 menuItem = [[audiocodecPopUp menu] addItemWithTitle:@"MP3 (lame)" action: NULL keyEquivalent: @""];
4124                 [menuItem setTag: HB_ACODEC_LAME];
4125                 break;
4126         }
4127         [audiocodecPopUp selectItemAtIndex:0];
4128     }
4129     else
4130     {
4131         [audiocodecPopUp setEnabled:NO];
4132     }
4133 }
4134
4135 - (IBAction) audioTrackPopUpChanged: (id) sender
4136 {
4137     /* utility function to call audioTrackPopUpChanged without passing in a mixdown-to-use */
4138     [self audioTrackPopUpChanged: sender mixdownToUse: 0];
4139 }
4140
4141 - (IBAction) audioTrackPopUpChanged: (id) sender mixdownToUse: (int) mixdownToUse
4142 {
4143     
4144     /* make sure we have a selected title before continuing */
4145     if (fTitle == NULL) return;
4146     /* if the sender is the lanaguage popup and there is nothing in the codec popup, lets call
4147     * audioAddAudioTrackCodecs on the codec popup to populate it properly before moving on
4148     */
4149     if (sender == fAudLang1PopUp && [[fAudTrack1CodecPopUp menu] numberOfItems] == 0)
4150     {
4151         [self audioAddAudioTrackCodecs: fAudTrack1CodecPopUp];
4152     }
4153     if (sender == fAudLang2PopUp && [[fAudTrack2CodecPopUp menu] numberOfItems] == 0)
4154     {
4155         [self audioAddAudioTrackCodecs: fAudTrack2CodecPopUp];
4156     }
4157     if (sender == fAudLang3PopUp && [[fAudTrack3CodecPopUp menu] numberOfItems] == 0)
4158     {
4159         [self audioAddAudioTrackCodecs: fAudTrack3CodecPopUp];
4160     }
4161     if (sender == fAudLang4PopUp && [[fAudTrack4CodecPopUp menu] numberOfItems] == 0)
4162     {
4163         [self audioAddAudioTrackCodecs: fAudTrack4CodecPopUp];
4164     }
4165     
4166     /* Now lets make the sender the appropriate Audio Track popup from this point on */
4167     if (sender == fAudTrack1CodecPopUp || sender == fAudTrack1MixPopUp)
4168     {
4169         sender = fAudLang1PopUp;
4170     }
4171     if (sender == fAudTrack2CodecPopUp || sender == fAudTrack2MixPopUp)
4172     {
4173         sender = fAudLang2PopUp;
4174     }
4175     if (sender == fAudTrack3CodecPopUp || sender == fAudTrack3MixPopUp)
4176     {
4177         sender = fAudLang3PopUp;
4178     }
4179     if (sender == fAudTrack4CodecPopUp || sender == fAudTrack4MixPopUp)
4180     {
4181         sender = fAudLang4PopUp;
4182     }
4183     
4184     /* pointer to this track's mixdown, codec, sample rate and bitrate NSPopUpButton's */
4185     NSPopUpButton * mixdownPopUp;
4186     NSPopUpButton * audiocodecPopUp;
4187     NSPopUpButton * sampleratePopUp;
4188     NSPopUpButton * bitratePopUp;
4189     if (sender == fAudLang1PopUp)
4190     {
4191         mixdownPopUp = fAudTrack1MixPopUp;
4192         audiocodecPopUp = fAudTrack1CodecPopUp;
4193         sampleratePopUp = fAudTrack1RatePopUp;
4194         bitratePopUp = fAudTrack1BitratePopUp;
4195     }
4196     else if (sender == fAudLang2PopUp)
4197     {
4198         mixdownPopUp = fAudTrack2MixPopUp;
4199         audiocodecPopUp = fAudTrack2CodecPopUp;
4200         sampleratePopUp = fAudTrack2RatePopUp;
4201         bitratePopUp = fAudTrack2BitratePopUp;
4202     }
4203     else if (sender == fAudLang3PopUp)
4204     {
4205         mixdownPopUp = fAudTrack3MixPopUp;
4206         audiocodecPopUp = fAudTrack3CodecPopUp;
4207         sampleratePopUp = fAudTrack3RatePopUp;
4208         bitratePopUp = fAudTrack3BitratePopUp;
4209     }
4210     else
4211     {
4212         mixdownPopUp = fAudTrack4MixPopUp;
4213         audiocodecPopUp = fAudTrack4CodecPopUp;
4214         sampleratePopUp = fAudTrack4RatePopUp;
4215         bitratePopUp = fAudTrack4BitratePopUp;
4216     }
4217
4218     /* get the index of the selected audio Track*/
4219     int thisAudioIndex = [sender indexOfSelectedItem] - 1;
4220
4221     /* pointer for the hb_audio_s struct we will use later on */
4222     hb_audio_config_t * audio;
4223
4224     int acodec;
4225     /* check if the audio mixdown controls need their enabled state changing */
4226     [self setEnabledStateOfAudioMixdownControls:nil];
4227
4228     if (thisAudioIndex != -1)
4229     {
4230
4231         /* get the audio */
4232         audio = (hb_audio_config_t *) hb_list_audio_config_item( fTitle->list_audio, thisAudioIndex );// Should "fTitle" be title and be setup ?
4233
4234         /* actually manipulate the proper mixdowns here */
4235         /* delete the previous audio mixdown options */
4236         [mixdownPopUp removeAllItems];
4237
4238         acodec = [[audiocodecPopUp selectedItem] tag];
4239
4240         if (audio != NULL)
4241         {
4242
4243             /* find out if our selected output audio codec supports mono and / or 6ch */
4244             /* we also check for an input codec of AC3 or DCA,
4245              as they are the only libraries able to do the mixdown to mono / conversion to 6-ch */
4246             /* audioCodecsSupportMono and audioCodecsSupport6Ch are the same for now,
4247              but this may change in the future, so they are separated for flexibility */
4248             int audioCodecsSupportMono =
4249                     (audio->in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA)) &&
4250                     (acodec != HB_ACODEC_LAME);
4251             int audioCodecsSupport6Ch =
4252                     (audio->in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA)) &&
4253                     (acodec != HB_ACODEC_LAME);
4254             
4255             /* check for AC-3 passthru */
4256             if (audio->in.codec == HB_ACODEC_AC3 && acodec == HB_ACODEC_AC3)
4257             {
4258                 
4259             NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4260                  [NSString stringWithCString: "AC3 Passthru"]
4261                                                action: NULL keyEquivalent: @""];
4262              [menuItem setTag: HB_ACODEC_AC3];   
4263             }
4264             else
4265             {
4266                 
4267                 /* add the appropriate audio mixdown menuitems to the popupbutton */
4268                 /* in each case, we set the new menuitem's tag to be the amixdown value for that mixdown,
4269                  so that we can reference the mixdown later */
4270                 
4271                 /* keep a track of the min and max mixdowns we used, so we can select the best match later */
4272                 int minMixdownUsed = 0;
4273                 int maxMixdownUsed = 0;
4274                 
4275                 /* get the input channel layout without any lfe channels */
4276                 int layout = audio->in.channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK;
4277                 
4278                 /* do we want to add a mono option? */
4279                 if (audioCodecsSupportMono == 1)
4280                 {
4281                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4282                                             [NSString stringWithCString: hb_audio_mixdowns[0].human_readable_name]
4283                                                                           action: NULL keyEquivalent: @""];
4284                     [menuItem setTag: hb_audio_mixdowns[0].amixdown];
4285                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[0].amixdown;
4286                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[0].amixdown);
4287                 }
4288                 
4289                 /* do we want to add a stereo option? */
4290                 /* offer stereo if we have a mono source and non-mono-supporting codecs, as otherwise we won't have a mixdown at all */
4291                 /* also offer stereo if we have a stereo-or-better source */
4292                 if ((layout == HB_INPUT_CH_LAYOUT_MONO && audioCodecsSupportMono == 0) || layout >= HB_INPUT_CH_LAYOUT_STEREO)
4293                 {
4294                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4295                                             [NSString stringWithCString: hb_audio_mixdowns[1].human_readable_name]
4296                                                                           action: NULL keyEquivalent: @""];
4297                     [menuItem setTag: hb_audio_mixdowns[1].amixdown];
4298                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[1].amixdown;
4299                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[1].amixdown);
4300                 }
4301                 
4302                 /* do we want to add a dolby surround (DPL1) option? */
4303                 if (layout == HB_INPUT_CH_LAYOUT_3F1R || layout == HB_INPUT_CH_LAYOUT_3F2R || layout == HB_INPUT_CH_LAYOUT_DOLBY)
4304                 {
4305                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4306                                             [NSString stringWithCString: hb_audio_mixdowns[2].human_readable_name]
4307                                                                           action: NULL keyEquivalent: @""];
4308                     [menuItem setTag: hb_audio_mixdowns[2].amixdown];
4309                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[2].amixdown;
4310                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[2].amixdown);
4311                 }
4312                 
4313                 /* do we want to add a dolby pro logic 2 (DPL2) option? */
4314                 if (layout == HB_INPUT_CH_LAYOUT_3F2R)
4315                 {
4316                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4317                                             [NSString stringWithCString: hb_audio_mixdowns[3].human_readable_name]
4318                                                                           action: NULL keyEquivalent: @""];
4319                     [menuItem setTag: hb_audio_mixdowns[3].amixdown];
4320                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[3].amixdown;
4321                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[3].amixdown);
4322                 }
4323                 
4324                 /* do we want to add a 6-channel discrete option? */
4325                 if (audioCodecsSupport6Ch == 1 && layout == HB_INPUT_CH_LAYOUT_3F2R && (audio->in.channel_layout & HB_INPUT_CH_LAYOUT_HAS_LFE))
4326                 {
4327                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4328                                             [NSString stringWithCString: hb_audio_mixdowns[4].human_readable_name]
4329                                                                           action: NULL keyEquivalent: @""];
4330                     [menuItem setTag: hb_audio_mixdowns[4].amixdown];
4331                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[4].amixdown;
4332                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[4].amixdown);
4333                 }
4334                 
4335                 /* do we want to add an AC-3 passthrough option? */
4336                 if (audio->in.codec == HB_ACODEC_AC3 && acodec == HB_ACODEC_AC3) 
4337                 {
4338                     NSMenuItem *menuItem = [[mixdownPopUp menu] addItemWithTitle:
4339                                             [NSString stringWithCString: hb_audio_mixdowns[5].human_readable_name]
4340                                                                           action: NULL keyEquivalent: @""];
4341                     [menuItem setTag: HB_ACODEC_AC3];
4342                     if (minMixdownUsed == 0) minMixdownUsed = hb_audio_mixdowns[5].amixdown;
4343                     maxMixdownUsed = MAX(maxMixdownUsed, hb_audio_mixdowns[5].amixdown);
4344                 }
4345                 
4346                 /* auto-select the best mixdown based on our saved mixdown preference */
4347                 
4348                 /* for now, this is hard-coded to a "best" mixdown of HB_AMIXDOWN_DOLBYPLII */
4349                 /* ultimately this should be a prefs option */
4350                 int useMixdown;
4351                 
4352                 /* if we passed in a mixdown to use - in order to load a preset - then try and use it */
4353                 if (mixdownToUse > 0)
4354                 {
4355                     useMixdown = mixdownToUse;
4356                 }
4357                 else
4358                 {
4359                     useMixdown = HB_AMIXDOWN_DOLBYPLII;
4360                 }
4361                 
4362                 /* if useMixdown > maxMixdownUsed, then use maxMixdownUsed */
4363                 if (useMixdown > maxMixdownUsed)
4364                 { 
4365                     useMixdown = maxMixdownUsed;
4366                 }
4367                 
4368                 /* if useMixdown < minMixdownUsed, then use minMixdownUsed */
4369                 if (useMixdown < minMixdownUsed)
4370                 { 
4371                     useMixdown = minMixdownUsed;
4372                 }
4373                 
4374                 /* select the (possibly-amended) preferred mixdown */
4375                 [mixdownPopUp selectItemWithTag: useMixdown];
4376
4377             }
4378             /* In the case of a source track that is not AC3 and the user tries to use AC3 Passthru (which does not work)
4379              * we force the Audio Codec choice back to a workable codec. We use MP3 for avi and aac for all
4380              * other containers.
4381              */
4382             if (audio->in.codec != HB_ACODEC_AC3 && [[audiocodecPopUp selectedItem] tag] == HB_ACODEC_AC3)
4383             {
4384                 /* If we are using the avi container, we select MP3 as there is no aac available*/
4385                 if ([[fDstFormatPopUp selectedItem] tag] == HB_MUX_AVI)
4386                 {
4387                     [audiocodecPopUp selectItemWithTag: HB_ACODEC_LAME];
4388                 }
4389                 else
4390                 {
4391                     [audiocodecPopUp selectItemWithTag: HB_ACODEC_FAAC];
4392                 }
4393             }
4394             /* Setup our samplerate and bitrate popups we will need based on mixdown */
4395             [self audioTrackMixdownChanged: mixdownPopUp];             
4396         }
4397     
4398     }
4399     if( [fDstFormatPopUp indexOfSelectedItem] == 0 )
4400     {
4401         [self autoSetM4vExtension: sender];
4402         [self shouldEnableHttpMp4CheckBox: sender];
4403     }
4404 }
4405
4406 - (IBAction) audioTrackMixdownChanged: (id) sender
4407 {
4408     
4409     int acodec;
4410     /* setup pointers to all of the other audio track controls
4411     * we will need later
4412     */
4413     NSPopUpButton * mixdownPopUp;
4414     NSPopUpButton * sampleratePopUp;
4415     NSPopUpButton * bitratePopUp;
4416     NSPopUpButton * audiocodecPopUp;
4417     NSPopUpButton * audiotrackPopUp;
4418     NSSlider * drcSlider;
4419     NSTextField * drcField;
4420     if (sender == fAudTrack1MixPopUp)
4421     {
4422         audiotrackPopUp = fAudLang1PopUp;
4423         audiocodecPopUp = fAudTrack1CodecPopUp;
4424         mixdownPopUp = fAudTrack1MixPopUp;
4425         sampleratePopUp = fAudTrack1RatePopUp;
4426         bitratePopUp = fAudTrack1BitratePopUp;
4427         drcSlider = fAudTrack1DrcSlider;
4428         drcField = fAudTrack1DrcField;
4429     }
4430     else if (sender == fAudTrack2MixPopUp)
4431     {
4432         audiotrackPopUp = fAudLang2PopUp;
4433         audiocodecPopUp = fAudTrack2CodecPopUp;
4434         mixdownPopUp = fAudTrack2MixPopUp;
4435         sampleratePopUp = fAudTrack2RatePopUp;
4436         bitratePopUp = fAudTrack2BitratePopUp;
4437         drcSlider = fAudTrack2DrcSlider;
4438         drcField = fAudTrack2DrcField;
4439     }
4440     else if (sender == fAudTrack3MixPopUp)
4441     {
4442         audiotrackPopUp = fAudLang3PopUp;
4443         audiocodecPopUp = fAudTrack3CodecPopUp;
4444         mixdownPopUp = fAudTrack3MixPopUp;
4445         sampleratePopUp = fAudTrack3RatePopUp;
4446         bitratePopUp = fAudTrack3BitratePopUp;
4447         drcSlider = fAudTrack3DrcSlider;
4448         drcField = fAudTrack3DrcField;
4449     }
4450     else
4451     {
4452         audiotrackPopUp = fAudLang4PopUp;
4453         audiocodecPopUp = fAudTrack4CodecPopUp;
4454         mixdownPopUp = fAudTrack4MixPopUp;
4455         sampleratePopUp = fAudTrack4RatePopUp;
4456         bitratePopUp = fAudTrack4BitratePopUp;
4457         drcSlider = fAudTrack4DrcSlider;
4458         drcField = fAudTrack4DrcField;
4459     }
4460     acodec = [[audiocodecPopUp selectedItem] tag];
4461     /* storage variable for the min and max bitrate allowed for this codec */
4462     int minbitrate;
4463     int maxbitrate;
4464     
4465     switch( acodec )
4466     {
4467         case HB_ACODEC_FAAC:
4468             /* check if we have a 6ch discrete conversion in either audio track */
4469             if ([[mixdownPopUp selectedItem] tag] == HB_AMIXDOWN_6CH)
4470             {
4471                 /* FAAC is happy using our min bitrate of 32 kbps, even for 6ch */
4472                 minbitrate = 32;
4473                 /* If either mixdown popup includes 6-channel discrete, then allow up to 384 kbps */
4474                 maxbitrate = 384;
4475                 break;
4476             }
4477             else
4478             {
4479                 /* FAAC is happy using our min bitrate of 32 kbps for stereo or mono */
4480                 minbitrate = 32;
4481                 /* FAAC won't honour anything more than 160 for stereo, so let's not offer it */
4482                 /* note: haven't dealt with mono separately here, FAAC will just use the max it can */
4483                 maxbitrate = 160;
4484                 break;
4485             }
4486             
4487             case HB_ACODEC_LAME:
4488             /* Lame is happy using our min bitrate of 32 kbps */
4489             minbitrate = 32;
4490             /* Lame won't encode if the bitrate is higher than 320 kbps */
4491             maxbitrate = 320;
4492             break;
4493             
4494             case HB_ACODEC_VORBIS:
4495             if ([[mixdownPopUp selectedItem] tag] == HB_AMIXDOWN_6CH)
4496             {
4497                 /* Vorbis causes a crash if we use a bitrate below 192 kbps with 6 channel */
4498                 minbitrate = 192;
4499                 /* If either mixdown popup includes 6-channel discrete, then allow up to 384 kbps */
4500                 maxbitrate = 384;
4501                 break;
4502             }
4503             else
4504             {
4505                 /* Vorbis causes a crash if we use a bitrate below 48 kbps */
4506                 minbitrate = 48;
4507                 /* Vorbis can cope with 384 kbps quite happily, even for stereo */
4508                 maxbitrate = 384;
4509                 break;
4510             }
4511             
4512             default:
4513             /* AC3 passthru disables the bitrate dropdown anyway, so we might as well just use the min and max bitrate */
4514             minbitrate = 32;
4515             maxbitrate = 384;
4516             
4517     }
4518     
4519     /* make sure we have a selected title before continuing */
4520     if (fTitle == NULL) return;
4521     /* get the audio so we can find out what input rates are*/
4522     hb_audio_config_t * audio;
4523     audio = (hb_audio_config_t *) hb_list_audio_config_item( fTitle->list_audio, [audiotrackPopUp indexOfSelectedItem] - 1 );
4524     int inputbitrate = audio->in.bitrate / 1000;
4525     int inputsamplerate = audio->in.samplerate;
4526     
4527     if ([[mixdownPopUp selectedItem] tag] != HB_ACODEC_AC3)
4528     {
4529         [bitratePopUp removeAllItems];
4530         
4531         for( int i = 0; i < hb_audio_bitrates_count; i++ )
4532         {
4533             if (hb_audio_bitrates[i].rate >= minbitrate && hb_audio_bitrates[i].rate <= maxbitrate)
4534             {
4535                 /* add a new menuitem for this bitrate */
4536                 NSMenuItem *menuItem = [[bitratePopUp menu] addItemWithTitle:
4537                                         [NSString stringWithCString: hb_audio_bitrates[i].string]
4538                                                                       action: NULL keyEquivalent: @""];
4539                 /* set its tag to be the actual bitrate as an integer, so we can retrieve it later */
4540                 [menuItem setTag: hb_audio_bitrates[i].rate];
4541             }
4542         }
4543         
4544         /* select the default bitrate (but use 384 for 6-ch AAC) */
4545         if ([[mixdownPopUp selectedItem] tag] == HB_AMIXDOWN_6CH)
4546         {
4547             [bitratePopUp selectItemWithTag: 384];
4548         }
4549         else
4550         {
4551             [bitratePopUp selectItemWithTag: hb_audio_bitrates[hb_audio_bitrates_default].rate];
4552         }
4553     }
4554     /* populate and set the sample rate popup */
4555     /* Audio samplerate */
4556     [sampleratePopUp removeAllItems];
4557     /* we create a same as source selection (Auto) so that we can choose to use the input sample rate */
4558     NSMenuItem *menuItem = [[sampleratePopUp menu] addItemWithTitle: @"Auto" action: NULL keyEquivalent: @""];
4559     [menuItem setTag: inputsamplerate];
4560     
4561     for( int i = 0; i < hb_audio_rates_count; i++ )
4562     {
4563         NSMenuItem *menuItem = [[sampleratePopUp menu] addItemWithTitle:
4564                                 [NSString stringWithCString: hb_audio_rates[i].string]
4565                                                                  action: NULL keyEquivalent: @""];
4566         [menuItem setTag: hb_audio_rates[i].rate];
4567     }
4568     /* We use the input sample rate as the default sample rate as downsampling just makes audio worse
4569     * and there is no compelling reason to use anything else as default, though the users default
4570     * preset will likely override any setting chosen here.
4571     */
4572     [sampleratePopUp selectItemWithTag: inputsamplerate];
4573     
4574     
4575     /* Since AC3 Pass Thru uses the input ac3 bitrate and sample rate, we get the input tracks
4576     * bitrate and dispay it in the bitrate popup even though libhb happily ignores any bitrate input from
4577     * the gui. We do this for better user feedback in the audio tab as well as the queue for the most part
4578     */
4579     if ([[mixdownPopUp selectedItem] tag] == HB_ACODEC_AC3)
4580     {
4581         
4582         /* lets also set the bitrate popup to the input bitrate as thats what passthru will use */
4583         [bitratePopUp removeAllItems];
4584         NSMenuItem *menuItem = [[bitratePopUp menu] addItemWithTitle:
4585                                 [NSString stringWithFormat:@"%d", inputbitrate]
4586                                                               action: NULL keyEquivalent: @""];
4587         [menuItem setTag: inputbitrate];
4588         /* For ac3 passthru we disable the sample rate and bitrate popups as well as the drc slider*/
4589         [bitratePopUp setEnabled: NO];
4590         [sampleratePopUp setEnabled: NO];
4591         
4592         [drcSlider setFloatValue: 1.00];
4593         [self audioDRCSliderChanged: drcSlider];
4594         [drcSlider setEnabled: NO];
4595         [drcField setEnabled: NO];
4596     }
4597     else
4598     {
4599         [sampleratePopUp setEnabled: YES];
4600         [bitratePopUp setEnabled: YES];
4601         [drcSlider setEnabled: YES];
4602         [drcField setEnabled: YES];
4603     }
4604     
4605 }
4606
4607 - (IBAction) audioDRCSliderChanged: (id) sender
4608 {
4609     NSSlider * drcSlider;
4610     NSTextField * drcField;
4611     if (sender == fAudTrack1DrcSlider)
4612     {
4613         drcSlider = fAudTrack1DrcSlider;
4614         drcField = fAudTrack1DrcField;
4615     }
4616     else if (sender == fAudTrack2DrcSlider)
4617     {
4618         drcSlider = fAudTrack2DrcSlider;
4619         drcField = fAudTrack2DrcField;
4620     }
4621     else if (sender == fAudTrack3DrcSlider)
4622     {
4623         drcSlider = fAudTrack3DrcSlider;
4624         drcField = fAudTrack3DrcField;
4625     }
4626     else
4627     {
4628         drcSlider = fAudTrack4DrcSlider;
4629         drcField = fAudTrack4DrcField;
4630     }
4631     [drcField setStringValue: [NSString stringWithFormat: @"%.2f", [drcSlider floatValue]]];
4632     /* For now, do not call this until we have an intelligent way to determine audio track selections
4633     * compared to presets
4634     */
4635     //[self customSettingUsed: sender];
4636 }
4637
4638 - (IBAction) subtitleSelectionChanged: (id) sender
4639 {
4640         if ([fSubPopUp indexOfSelectedItem] == 0)
4641         {
4642         [fSubForcedCheck setState: NSOffState];
4643         [fSubForcedCheck setEnabled: NO];       
4644         }
4645         else
4646         {
4647         [fSubForcedCheck setEnabled: YES];      
4648         }
4649         
4650 }
4651
4652
4653
4654
4655 #pragma mark -
4656 #pragma mark Open New Windows
4657
4658 - (IBAction) openHomepage: (id) sender
4659 {
4660     [[NSWorkspace sharedWorkspace] openURL: [NSURL
4661         URLWithString:@"http://handbrake.fr/"]];
4662 }
4663
4664 - (IBAction) openForums: (id) sender
4665 {
4666     [[NSWorkspace sharedWorkspace] openURL: [NSURL
4667         URLWithString:@"http://handbrake.fr/forum/"]];
4668 }
4669 - (IBAction) openUserGuide: (id) sender
4670 {
4671     [[NSWorkspace sharedWorkspace] openURL: [NSURL
4672         URLWithString:@"http://handbrake.fr/trac/wiki/HandBrakeGuide"]];
4673 }
4674
4675 /**
4676  * Shows debug output window.
4677  */
4678 - (IBAction)showDebugOutputPanel:(id)sender
4679 {
4680     [outputPanel showOutputPanel:sender];
4681 }
4682
4683 /**
4684  * Shows preferences window.
4685  */
4686 - (IBAction) showPreferencesWindow: (id) sender
4687 {
4688     NSWindow * window = [fPreferencesController window];
4689     if (![window isVisible])
4690         [window center];
4691
4692     [window makeKeyAndOrderFront: nil];
4693 }
4694
4695 /**
4696  * Shows queue window.
4697  */
4698 - (IBAction) showQueueWindow:(id)sender
4699 {
4700     [fQueueController showQueueWindow:sender];
4701 }
4702
4703
4704 - (IBAction) toggleDrawer:(id)sender {
4705     [fPresetDrawer toggle:self];
4706 }
4707
4708 /**
4709  * Shows Picture Settings Window.
4710  */
4711
4712 - (IBAction) showPicturePanel: (id) sender
4713 {
4714         hb_list_t  * list  = hb_get_titles( fHandle );
4715     hb_title_t * title = (hb_title_t *) hb_list_item( list,
4716             [fSrcTitlePopUp indexOfSelectedItem] );
4717     [fPictureController showPanelInWindow:fWindow forTitle:title];
4718 }
4719
4720 #pragma mark -
4721 #pragma mark Preset Outline View Methods
4722 #pragma mark - Required
4723 /* These are required by the NSOutlineView Datasource Delegate */
4724 /* We use this to deterimine children of an item */
4725 - (id)outlineView:(NSOutlineView *)fPresetsOutlineView child:(NSInteger)index ofItem:(id)item
4726 {
4727 if (item == nil)
4728         return [UserPresets objectAtIndex:index];
4729     
4730     // We are only one level deep, so we can't be asked about children
4731     NSAssert (NO, @"Presets View outlineView:child:ofItem: currently can't handle nested items.");
4732     return nil;
4733 }
4734 /* We use this to determine if an item should be expandable */
4735 - (BOOL)outlineView:(NSOutlineView *)fPresetsOutlineView isItemExpandable:(id)item
4736 {
4737
4738     /* For now, we maintain one level, so set to no
4739     * when nested, we set to yes for any preset "folders"
4740     */
4741     return NO;
4742
4743 }
4744 /* used to specify the number of levels to show for each item */
4745 - (int)outlineView:(NSOutlineView *)fPresetsOutlineView numberOfChildrenOfItem:(id)item
4746 {
4747     /* currently use no levels to test outline view viability */
4748     if (item == nil)
4749         return [UserPresets count];
4750     else
4751         return 0;
4752 }
4753 /* Used to tell the outline view which information is to be displayed per item */
4754 - (id)outlineView:(NSOutlineView *)fPresetsOutlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item
4755 {
4756         /* We have two columns right now, icon and PresetName */
4757         
4758     if ([[tableColumn identifier] isEqualToString:@"PresetName"])
4759     {
4760         return [item objectForKey:@"PresetName"];
4761     }
4762     else
4763     {
4764         return @"something";
4765     }
4766 }
4767
4768 #pragma mark - Added Functionality (optional)
4769 /* Use to customize the font and display characteristics of the title cell */
4770 - (void)outlineView:(NSOutlineView *)outlineView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn item:(id)item
4771 {
4772     if ([[tableColumn identifier] isEqualToString:@"PresetName"])
4773     {
4774         NSDictionary *userPresetDict = item;
4775         NSFont *txtFont;
4776         NSColor *fontColor;
4777         NSColor *shadowColor;
4778         txtFont = [NSFont systemFontOfSize: [NSFont smallSystemFontSize]];
4779         /*check to see if its a selected row */
4780         if ([fPresetsOutlineView selectedRow] == [fPresetsOutlineView rowForItem:item])
4781         {
4782             
4783             fontColor = [NSColor blackColor];
4784             shadowColor = [NSColor colorWithDeviceRed:(127.0/255.0) green:(140.0/255.0) blue:(160.0/255.0) alpha:1.0];
4785         }
4786         else
4787         {
4788             if ([[userPresetDict objectForKey:@"Type"] intValue] == 0)
4789             {
4790                 fontColor = [NSColor blueColor];
4791             }
4792             else // User created preset, use a black font
4793             {
4794                 fontColor = [NSColor blackColor];
4795             }
4796             shadowColor = nil;
4797         }
4798         /* We use Bold Text for the HB Default */
4799         if ([[userPresetDict objectForKey:@"Default"] intValue] == 1)// 1 is HB default
4800         {
4801             txtFont = [NSFont boldSystemFontOfSize: [NSFont smallSystemFontSize]];
4802         }
4803         /* We use Bold Text for the User Specified Default */
4804         if ([[userPresetDict objectForKey:@"Default"] intValue] == 2)// 2 is User default
4805         {
4806             txtFont = [NSFont boldSystemFontOfSize: [NSFont smallSystemFontSize]];
4807         }
4808         
4809         
4810         [cell setTextColor:fontColor];
4811         [cell setFont:txtFont];
4812         
4813     }
4814 }
4815
4816 /* We use this to edit the name field in the outline view */
4817 - (void)outlineView:(NSOutlineView *)outlineView setObjectValue:(id)object forTableColumn:(NSTableColumn *)tableColumn byItem:(id)item
4818 {
4819     if ([[tableColumn identifier] isEqualToString:@"PresetName"])
4820     {
4821         id theRecord;
4822         
4823         theRecord = item;
4824         [theRecord setObject:object forKey:@"PresetName"];
4825         
4826         [self sortPresets];
4827         
4828         [fPresetsOutlineView reloadData];
4829         /* We save all of the preset data here */
4830         [self savePreset];
4831     }
4832 }
4833 /* We use this to provide tooltips for the items in the presets outline view */
4834 - (NSString *)outlineView:(NSOutlineView *)fPresetsOutlineView toolTipForCell:(NSCell *)cell rect:(NSRectPointer)rect tableColumn:(NSTableColumn *)tc item:(id)item mouseLocation:(NSPoint)mouseLocation
4835 {
4836     //if ([[tc identifier] isEqualToString:@"PresetName"])
4837     //{
4838         /* initialize the tooltip contents variable */
4839         NSString *loc_tip;
4840         /* if there is a description for the preset, we show it in the tooltip */
4841         if ([item objectForKey:@"PresetDescription"])
4842         {
4843             loc_tip = [item objectForKey:@"PresetDescription"];
4844             return (loc_tip);
4845         }
4846         else
4847         {
4848             loc_tip = @"No description available";
4849         }
4850         return (loc_tip);
4851     //}
4852 }
4853
4854 #pragma mark -
4855 #pragma mark Preset Outline View Methods (dragging related)
4856
4857
4858 - (BOOL)outlineView:(NSOutlineView *)outlineView writeItems:(NSArray *)items toPasteboard:(NSPasteboard *)pboard
4859 {
4860         // Dragging is only allowed for custom presets.
4861         if ([[[UserPresets objectAtIndex:[fPresetsOutlineView selectedRow]] objectForKey:@"Type"] intValue] == 0) // 0 is built in preset
4862     {
4863         return NO;
4864     }
4865     // Don't retain since this is just holding temporaral drag information, and it is
4866     //only used during a drag!  We could put this in the pboard actually.
4867     fDraggedNodes = items;
4868     // Provide data for our custom type, and simple NSStrings.
4869     [pboard declareTypes:[NSArray arrayWithObjects: DragDropSimplePboardType, nil] owner:self];
4870     
4871     // the actual data doesn't matter since DragDropSimplePboardType drags aren't recognized by anyone but us!.
4872     [pboard setData:[NSData data] forType:DragDropSimplePboardType]; 
4873     
4874     return YES;
4875 }
4876
4877 - (NSDragOperation)outlineView:(NSOutlineView *)outlineView validateDrop:(id <NSDraggingInfo>)info proposedItem:(id)item proposedChildIndex:(int)index
4878 {
4879         // Don't allow dropping ONTO an item since they can't really contain any children.
4880     
4881     BOOL isOnDropTypeProposal = index == NSOutlineViewDropOnItemIndex;
4882     if (isOnDropTypeProposal)
4883         return NSDragOperationNone;
4884     
4885     
4886         // Don't allow dropping INTO an item since they can't really contain any children as of yet.
4887         
4888     if (item != nil)
4889         {
4890                 index = [fPresetsOutlineView rowForItem: item] + 1;
4891                 item = nil;
4892         }
4893     
4894     // Don't allow dropping into the Built In Presets.
4895     if (index < presetCurrentBuiltInCount)
4896     {
4897         return NSDragOperationNone;
4898         index = MAX (index, presetCurrentBuiltInCount);
4899         }
4900         
4901     [outlineView setDropItem:item dropChildIndex:index];
4902     return NSDragOperationGeneric;
4903 }
4904
4905
4906
4907 - (BOOL)outlineView:(NSOutlineView *)outlineView acceptDrop:(id <NSDraggingInfo>)info item:(id)item childIndex:(int)index
4908 {
4909     NSMutableIndexSet *moveItems = [NSMutableIndexSet indexSet];
4910     
4911     id obj;
4912     NSEnumerator *enumerator = [fDraggedNodes objectEnumerator];
4913     while (obj = [enumerator nextObject])
4914     {
4915         [moveItems addIndex:[UserPresets indexOfObject:obj]];
4916     }
4917     // Successful drop, lets rearrange the view and save it all
4918     [self moveObjectsInPresetsArray:UserPresets fromIndexes:moveItems toIndex: index];
4919     [fPresetsOutlineView reloadData];
4920     [self savePreset];
4921     return YES;
4922 }
4923
4924 - (void)moveObjectsInPresetsArray:(NSMutableArray *)array fromIndexes:(NSIndexSet *)indexSet toIndex:(unsigned)insertIndex
4925 {
4926     unsigned index = [indexSet lastIndex];
4927     unsigned aboveInsertIndexCount = 0;
4928     
4929     while (index != NSNotFound)
4930     {
4931         unsigned removeIndex;
4932         
4933         if (index >= insertIndex)
4934         {
4935             removeIndex = index + aboveInsertIndexCount;
4936             aboveInsertIndexCount++;
4937         }
4938         else
4939         {
4940             removeIndex = index;
4941             insertIndex--;
4942         }
4943         
4944         id object = [[array objectAtIndex:removeIndex] retain];
4945         [array removeObjectAtIndex:removeIndex];
4946         [array insertObject:object atIndex:insertIndex];
4947         [object release];
4948         
4949         index = [indexSet indexLessThanIndex:index];
4950     }
4951 }
4952
4953
4954
4955 #pragma mark - Functional Preset NSOutlineView Methods
4956
4957 - (IBAction)selectPreset:(id)sender
4958 {
4959
4960     if ([fPresetsOutlineView selectedRow] >= 0)
4961     {
4962         chosenPreset = [fPresetsOutlineView itemAtRow:[fPresetsOutlineView selectedRow]];
4963         /* we set the preset display field in main window here */
4964         [fPresetSelectedDisplay setStringValue:[chosenPreset objectForKey:@"PresetName"]];
4965         if ([[chosenPreset objectForKey:@"Default"] intValue] == 1)
4966         {
4967             [fPresetSelectedDisplay setStringValue:[NSString stringWithFormat:@"%@ (Default)", [chosenPreset objectForKey:@"PresetName"]]];
4968         }
4969         else
4970         {
4971             [fPresetSelectedDisplay setStringValue:[chosenPreset objectForKey:@"PresetName"]];
4972         }
4973         /* File Format */
4974         [fDstFormatPopUp selectItemWithTitle:[chosenPreset objectForKey:@"FileFormat"]];
4975         [self formatPopUpChanged:nil];
4976
4977         /* Chapter Markers*/
4978         [fCreateChapterMarkers setState:[[chosenPreset objectForKey:@"ChapterMarkers"] intValue]];
4979         /* Allow Mpeg4 64 bit formatting +4GB file sizes */
4980         [fDstMp4LargeFileCheck setState:[[chosenPreset objectForKey:@"Mp4LargeFile"] intValue]];
4981         /* Mux mp4 with http optimization */
4982         [fDstMp4HttpOptFileCheck setState:[[chosenPreset objectForKey:@"Mp4HttpOptimize"] intValue]];
4983
4984         /* Video encoder */
4985         /* We set the advanced opt string here if applicable*/
4986         [fAdvancedOptions setOptions:[chosenPreset objectForKey:@"x264Option"]];
4987         /* We use a conditional to account for the new x264 encoder dropdown as well as presets made using legacy x264 settings*/
4988         if ([[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"x264 (h.264 Main)"] ||
4989             [[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"x264 (h.264 iPod)"] ||
4990             [[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"x264"])
4991         {
4992             [fVidEncoderPopUp selectItemWithTitle:@"H.264 (x264)"];
4993             /* special case for legacy preset to check the new fDstMp4HttpOptFileCheck checkbox to set the ipod atom */
4994             if ([[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"x264 (h.264 iPod)"])
4995             {
4996                 [fDstMp4iPodFileCheck setState:NSOnState];
4997                 /* We also need to add "level=30:" to the advanced opts string to set the correct level for the iPod when
4998                  encountering a legacy preset as it used to be handled separately from the opt string*/
4999                 [fAdvancedOptions setOptions:[@"level=30:" stringByAppendingString:[fAdvancedOptions optionsString]]];
5000             }
5001             else
5002             {
5003                 [fDstMp4iPodFileCheck setState:NSOffState];
5004             }
5005         }
5006         else if ([[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"FFmpeg"])
5007         {
5008             [fVidEncoderPopUp selectItemWithTitle:@"MPEG-4 (FFmpeg)"];
5009         }
5010         else if ([[chosenPreset objectForKey:@"VideoEncoder"] isEqualToString:@"XviD"])
5011         {
5012             [fVidEncoderPopUp selectItemWithTitle:@"MPEG-4 (XviD)"];
5013         }
5014         else
5015         {
5016             [fVidEncoderPopUp selectItemWithTitle:[chosenPreset objectForKey:@"VideoEncoder"]];
5017         }
5018
5019         /* Lets run through the following functions to get variables set there */
5020         [self videoEncoderPopUpChanged:nil];
5021         /* Set the state of ipod compatible with Mp4iPodCompatible. Only for x264*/
5022         [fDstMp4iPodFileCheck setState:[[chosenPreset objectForKey:@"Mp4iPodCompatible"] intValue]];
5023         [self calculateBitrate:nil];
5024
5025         /* Video quality */
5026         [fVidQualityMatrix selectCellAtRow:[[chosenPreset objectForKey:@"VideoQualityType"] intValue] column:0];
5027
5028         [fVidTargetSizeField setStringValue:[chosenPreset objectForKey:@"VideoTargetSize"]];
5029         [fVidBitrateField setStringValue:[chosenPreset objectForKey:@"VideoAvgBitrate"]];
5030         [fVidQualitySlider setFloatValue:[[chosenPreset objectForKey:@"VideoQualitySlider"] floatValue]];
5031
5032         [self videoMatrixChanged:nil];
5033
5034         /* Video framerate */
5035         /* For video preset video framerate, we want to make sure that Same as source does not conflict with the
5036          detected framerate in the fVidRatePopUp so we use index 0*/
5037         if ([[chosenPreset objectForKey:@"VideoFramerate"] isEqualToString:@"Same as source"])
5038         {
5039             [fVidRatePopUp selectItemAtIndex: 0];
5040         }
5041         else
5042         {
5043             [fVidRatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"VideoFramerate"]];
5044         }
5045
5046         /* GrayScale */
5047         [fVidGrayscaleCheck setState:[[chosenPreset objectForKey:@"VideoGrayScale"] intValue]];
5048
5049         /* 2 Pass Encoding */
5050         [fVidTwoPassCheck setState:[[chosenPreset objectForKey:@"VideoTwoPass"] intValue]];
5051         [self twoPassCheckboxChanged:nil];
5052         /* Turbo 1st pass for 2 Pass Encoding */
5053         [fVidTurboPassCheck setState:[[chosenPreset objectForKey:@"VideoTurboTwoPass"] intValue]];
5054
5055         /*Audio*/
5056         if ([chosenPreset objectForKey:@"FileCodecs"])
5057         {
5058             /* We need to handle the audio codec popup by determining what was chosen from the deprecated Codecs PopUp for past presets*/
5059             if ([[chosenPreset objectForKey:@"FileCodecs"] isEqualToString: @"AVC/H.264 Video / AAC + AC3 Audio"])
5060             {
5061                 /* We need to address setting languages etc. here in the new multi track audio panel */
5062                 /* Track One set here */
5063                 /*for track one though a track should be selected but lets check here anyway and use track one if its not.*/
5064                 if ([fAudLang1PopUp indexOfSelectedItem] == 0)
5065                 {
5066                     [fAudLang1PopUp selectItemAtIndex: 1];
5067                     [self audioTrackPopUpChanged: fAudLang1PopUp];
5068                 }
5069                 [fAudTrack1CodecPopUp selectItemWithTitle: @"AAC (faac)"];
5070                 [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
5071                 /* Track Two, set source same as track one */
5072                 [fAudLang2PopUp selectItemAtIndex: [fAudLang1PopUp indexOfSelectedItem]];
5073                 [self audioTrackPopUpChanged: fAudLang2PopUp];
5074                 [fAudTrack2CodecPopUp selectItemWithTitle: @"AC3 Passthru"];
5075                 [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
5076             }
5077             else if ([[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"MPEG-4 Video / AAC Audio"] ||
5078                      [[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"AVC/H.264 Video / AAC Audio"])
5079             {
5080                 if ([fAudLang1PopUp indexOfSelectedItem] > 0)
5081                 {
5082                     [fAudTrack1CodecPopUp selectItemWithTitle: @"AAC (faac)"];
5083                     [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
5084                 }
5085                 if ([fAudLang2PopUp indexOfSelectedItem] > 0)
5086                 {
5087                     [fAudTrack2CodecPopUp selectItemWithTitle: @"AAC (faac)"];
5088                     [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
5089                 }
5090                 if ([fAudLang3PopUp indexOfSelectedItem] > 0)
5091                 {
5092                     [fAudTrack3CodecPopUp selectItemWithTitle: @"AAC (faac)"];
5093                     [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
5094                 }
5095                 if ([fAudLang4PopUp indexOfSelectedItem] > 0)
5096                 {
5097                     [fAudTrack4CodecPopUp selectItemWithTitle: @"AAC (faac)"];
5098                     [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
5099                 }
5100             }
5101             else if ([[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"MPEG-4 Video / AC-3 Audio"] ||
5102                      [[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"AVC/H.264 Video / AC-3 Audio"])
5103             {
5104                 if ([fAudLang1PopUp indexOfSelectedItem] > 0)
5105                 {
5106                     [fAudTrack1CodecPopUp selectItemWithTitle: @"AC3 Passthru"];
5107                     [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
5108                 }
5109                 if ([fAudLang2PopUp indexOfSelectedItem] > 0)
5110                 {
5111                     [fAudTrack2CodecPopUp selectItemWithTitle: @"AC3 Passthru"];
5112                     [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
5113                 }
5114                 if ([fAudLang3PopUp indexOfSelectedItem] > 0)
5115                 {
5116                     [fAudTrack3CodecPopUp selectItemWithTitle: @"AC3 Passthru"];
5117                     [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
5118                 }
5119                 if ([fAudLang4PopUp indexOfSelectedItem] > 0)
5120                 {
5121                     [fAudTrack4CodecPopUp selectItemWithTitle: @"AC3 Passthru"];
5122                     [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
5123                 }
5124             }
5125             else if ([[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"MPEG-4 Video / MP3 Audio"] ||
5126                      [[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"AVC/H.264 Video / MP3 Audio"])
5127             {
5128                 if ([fAudLang1PopUp indexOfSelectedItem] > 0)
5129                 {
5130                     [fAudTrack1CodecPopUp selectItemWithTitle: @"MP3 (lame)"];
5131                     [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
5132                 }
5133                 if ([fAudLang2PopUp indexOfSelectedItem] > 0)
5134                 {
5135                     [fAudTrack2CodecPopUp selectItemWithTitle: @"MP3 (lame)"];
5136                     [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
5137                 }
5138                 if ([fAudLang3PopUp indexOfSelectedItem] > 0)
5139                 {
5140                     [fAudTrack3CodecPopUp selectItemWithTitle: @"MP3 (lame)"];
5141                     [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
5142                 }
5143                 if ([fAudLang4PopUp indexOfSelectedItem] > 0)
5144                 {
5145                     [fAudTrack4CodecPopUp selectItemWithTitle: @"MP3 (lame)"];
5146                     [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
5147                 }
5148             }
5149             else if ([[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"MPEG-4 Video / Vorbis Audio"])
5150             {
5151                 if ([fAudLang1PopUp indexOfSelectedItem] > 0)
5152                 {
5153                     [fAudTrack1CodecPopUp selectItemWithTitle: @"Vorbis (vorbis)"];
5154                     [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
5155                 }
5156                 if ([fAudLang2PopUp indexOfSelectedItem] > 0)
5157                 {
5158                     [fAudTrack2CodecPopUp selectItemWithTitle: @"Vorbis (vorbis)"];
5159                     [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
5160                 }
5161                 if ([fAudLang3PopUp indexOfSelectedItem] > 0)
5162                 {
5163                     [fAudTrack3CodecPopUp selectItemWithTitle: @"Vorbis (vorbis)"];
5164                     [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
5165                 }
5166                 if ([fAudLang4PopUp indexOfSelectedItem] > 0)
5167                 {
5168                     [fAudTrack4CodecPopUp selectItemWithTitle: @"Vorbis (vorbis)"];
5169                     [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
5170                 }
5171             }
5172             /* 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
5173             * UNLESS the CodecPopUp is AC3 in which case the preset values are ignored in favor of rates set in audioTrackMixdownChanged*/
5174             if ([chosenPreset objectForKey:@"AudioSampleRate"])
5175             {
5176                 if ([fAudLang1PopUp indexOfSelectedItem] > 0 && [fAudTrack1CodecPopUp titleOfSelectedItem] != @"AC3 Passthru")
5177                 {
5178                     [fAudTrack1RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioSampleRate"]];
5179                     [fAudTrack1BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioBitRate"]];
5180                 }
5181                 if ([fAudLang2PopUp indexOfSelectedItem] > 0 && [fAudTrack2CodecPopUp titleOfSelectedItem] != @"AC3 Passthru")
5182                 {
5183                     [fAudTrack2RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioSampleRate"]];
5184                     [fAudTrack2BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioBitRate"]];
5185                 }
5186                 if ([fAudLang3PopUp indexOfSelectedItem] > 0 && [fAudTrack3CodecPopUp titleOfSelectedItem] != @"AC3 Passthru")
5187                 {
5188                     [fAudTrack3RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioSampleRate"]];
5189                     [fAudTrack3BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioBitRate"]];
5190                 }
5191                 if ([fAudLang4PopUp indexOfSelectedItem] > 0 && [fAudTrack4CodecPopUp titleOfSelectedItem] != @"AC3 Passthru")
5192                 {
5193                     [fAudTrack4RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioSampleRate"]];
5194                     [fAudTrack4BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"AudioBitRate"]];
5195                 }
5196             }
5197             /* We detect here if we have the old DRC Slider and if so we apply it to the existing four tracks if chosen */
5198             if ([chosenPreset objectForKey:@"AudioDRCSlider"])
5199             {
5200                 if ([fAudLang1PopUp indexOfSelectedItem] > 0)
5201                 {
5202                     [fAudTrack1DrcSlider setFloatValue:[[chosenPreset objectForKey:@"AudioDRCSlider"] floatValue]];
5203                     [self audioDRCSliderChanged: fAudTrack1DrcSlider];
5204                 }
5205                 if ([fAudLang2PopUp indexOfSelectedItem] > 0)
5206                 {
5207                     [fAudTrack2DrcSlider setFloatValue:[[chosenPreset objectForKey:@"AudioDRCSlider"] floatValue]];
5208                     [self audioDRCSliderChanged: fAudTrack2DrcSlider];
5209                 }
5210                 if ([fAudLang3PopUp indexOfSelectedItem] > 0)
5211                 {
5212                     [fAudTrack3DrcSlider setFloatValue:[[chosenPreset objectForKey:@"AudioDRCSlider"] floatValue]];
5213                     [self audioDRCSliderChanged: fAudTrack3DrcSlider];
5214                 }
5215                 if ([fAudLang4PopUp indexOfSelectedItem] > 0)
5216                 {
5217                     [fAudTrack4DrcSlider setFloatValue:[[chosenPreset objectForKey:@"AudioDRCSlider"] floatValue]];
5218                     [self audioDRCSliderChanged: fAudTrack4DrcSlider];
5219                 }
5220             }
5221         }
5222         else // since there was no codecs key in the preset we know we can use new multi-audio track presets
5223         {
5224             if ([chosenPreset objectForKey:@"Audio1Track"] > 0)
5225             {
5226                 if ([fAudLang1PopUp indexOfSelectedItem] == 0)
5227                 {
5228                     [fAudLang1PopUp selectItemAtIndex: 1];
5229                 }
5230                 [self audioTrackPopUpChanged: fAudLang1PopUp];
5231                 [fAudTrack1CodecPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio1Encoder"]];
5232                 [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
5233                 [fAudTrack1MixPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio1Mixdown"]];
5234                 /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
5235                  * mixdown*/
5236                 if  ([fAudTrack1MixPopUp selectedItem] == nil)
5237                 {
5238                     [self audioTrackPopUpChanged: fAudTrack1CodecPopUp];
5239                 }
5240                 [fAudTrack1RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio1Samplerate"]];
5241                 /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
5242                 if (![[chosenPreset objectForKey:@"Audio1Encoder"] isEqualToString:@"AC3 Passthru"])
5243                 {
5244                     [fAudTrack1BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio1Bitrate"]];
5245                 }
5246                 [fAudTrack1DrcSlider setFloatValue:[[chosenPreset objectForKey:@"Audio1TrackDRCSlider"] floatValue]];
5247                 [self audioDRCSliderChanged: fAudTrack1DrcSlider];
5248             }
5249             if ([chosenPreset objectForKey:@"Audio2Track"] > 0)
5250             {
5251                 if ([fAudLang2PopUp indexOfSelectedItem] == 0)
5252                 {
5253                     [fAudLang2PopUp selectItemAtIndex: 1];
5254                 }
5255                 [self audioTrackPopUpChanged: fAudLang2PopUp];
5256                 [fAudTrack2CodecPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio2Encoder"]];
5257                 [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
5258                 [fAudTrack2MixPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio2Mixdown"]];
5259                 /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
5260                  * mixdown*/
5261                 if  ([fAudTrack2MixPopUp selectedItem] == nil)
5262                 {
5263                     [self audioTrackPopUpChanged: fAudTrack2CodecPopUp];
5264                 }
5265                 [fAudTrack2RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio2Samplerate"]];
5266                 /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
5267                 if (![[chosenPreset objectForKey:@"Audio2Encoder"] isEqualToString:@"AC3 Passthru"])
5268                 {
5269                     [fAudTrack2BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio2Bitrate"]];
5270                 }
5271                 [fAudTrack2DrcSlider setFloatValue:[[chosenPreset objectForKey:@"Audio2TrackDRCSlider"] floatValue]];
5272                 [self audioDRCSliderChanged: fAudTrack2DrcSlider];
5273             }
5274             if ([chosenPreset objectForKey:@"Audio3Track"] > 0)
5275             {
5276                 if ([fAudLang3PopUp indexOfSelectedItem] == 0)
5277                 {
5278                     [fAudLang3PopUp selectItemAtIndex: 1];
5279                 }
5280                 [self audioTrackPopUpChanged: fAudLang3PopUp];
5281                 [fAudTrack3CodecPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio3Encoder"]];
5282                 [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
5283                 [fAudTrack3MixPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio3Mixdown"]];
5284                 /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
5285                  * mixdown*/
5286                 if  ([fAudTrack3MixPopUp selectedItem] == nil)
5287                 {
5288                     [self audioTrackPopUpChanged: fAudTrack3CodecPopUp];
5289                 }
5290                 [fAudTrack3RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio3Samplerate"]];
5291                 /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
5292                 if (![[chosenPreset objectForKey:@"Audio3Encoder"] isEqualToString: @"AC3 Passthru"])
5293                 {
5294                     [fAudTrack3BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio3Bitrate"]];
5295                 }
5296                 [fAudTrack3DrcSlider setFloatValue:[[chosenPreset objectForKey:@"Audio3TrackDRCSlider"] floatValue]];
5297                 [self audioDRCSliderChanged: fAudTrack3DrcSlider];
5298             }
5299             if ([chosenPreset objectForKey:@"Audio4Track"] > 0)
5300             {
5301                 if ([fAudLang4PopUp indexOfSelectedItem] == 0)
5302                 {
5303                     [fAudLang4PopUp selectItemAtIndex: 1];
5304                 }
5305                 [self audioTrackPopUpChanged: fAudLang4PopUp];
5306                 [fAudTrack4CodecPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio4Encoder"]];
5307                 [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
5308                 [fAudTrack4MixPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio4Mixdown"]];
5309                 /* check to see if the selections was available, if not, rerun audioTrackPopUpChanged using the codec to just set the default
5310                  * mixdown*/
5311                 if  ([fAudTrack4MixPopUp selectedItem] == nil)
5312                 {
5313                     [self audioTrackPopUpChanged: fAudTrack4CodecPopUp];
5314                 }
5315                 [fAudTrack4RatePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio4Samplerate"]];
5316                 /* We set the presets bitrate if it is *not* an AC3 track since that uses the input bitrate */
5317                 if (![[chosenPreset objectForKey:@"Audio4Encoder"] isEqualToString:@"AC3 Passthru"])
5318                 {
5319                     [fAudTrack4BitratePopUp selectItemWithTitle:[chosenPreset objectForKey:@"Audio4Bitrate"]];
5320                 }
5321                 [fAudTrack4DrcSlider setFloatValue:[[chosenPreset objectForKey:@"Audio4TrackDRCSlider"] floatValue]];
5322                 [self audioDRCSliderChanged: fAudTrack4DrcSlider];
5323             }
5324
5325
5326         }
5327
5328         /* 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
5329          * duplicate any code for legacy presets.*/
5330         /* First we handle the legacy Codecs crazy AVC/H.264 Video / AAC + AC3 Audio atv hybrid */
5331         if ([chosenPreset objectForKey:@"FileCodecs"] && [[chosenPreset objectForKey:@"FileCodecs"] isEqualToString:@"AVC/H.264 Video / AAC + AC3 Audio"])
5332         {
5333             [fAudLang3PopUp selectItemAtIndex: 0];
5334             [self audioTrackPopUpChanged: fAudLang3PopUp];
5335             [fAudLang4PopUp selectItemAtIndex: 0];
5336             [self audioTrackPopUpChanged: fAudLang4PopUp];
5337         }
5338         else
5339         {
5340             if (![chosenPreset objectForKey:@"Audio2Track"] || [chosenPreset objectForKey:@"Audio2Track"] == 0)
5341             {
5342                 [fAudLang2PopUp selectItemAtIndex: 0];
5343                 [self audioTrackPopUpChanged: fAudLang2PopUp];
5344             }
5345             if (![chosenPreset objectForKey:@"Audio3Track"] || [chosenPreset objectForKey:@"Audio3Track"] > 0)
5346             {
5347                 [fAudLang3PopUp selectItemAtIndex: 0];
5348                 [self audioTrackPopUpChanged: fAudLang3PopUp];
5349             }
5350             if (![chosenPreset objectForKey:@"Audio4Track"] || [chosenPreset objectForKey:@"Audio4Track"] > 0)
5351             {
5352                 [fAudLang4PopUp selectItemAtIndex: 0];
5353                 [self audioTrackPopUpChanged: fAudLang4PopUp];
5354             }
5355         }
5356
5357         /*Subtitles*/
5358         [fSubPopUp selectItemWithTitle:[chosenPreset objectForKey:@"Subtitles"]];
5359         /* Forced Subtitles */
5360         [fSubForcedCheck setState:[[chosenPreset objectForKey:@"SubtitlesForced"] intValue]];
5361
5362         /* Picture Settings */
5363         /* Note: objectForKey:@"UsesPictureSettings" now refers to picture size, this encompasses:
5364          * height, width, keep ar, anamorphic and crop settings.
5365          * picture filters are now handled separately.
5366          * We will be able to actually change the key names for legacy preset keys when preset file
5367          * update code is done. But for now, lets hang onto the old legacy key name for backwards compatibility.
5368          */
5369         /* Check to see if the objectForKey:@"UsesPictureSettings is greater than 0, as 0 means use picture sizing "None" 
5370          * and the preset completely ignores any picture sizing values in the preset.
5371          */
5372         if ([[chosenPreset objectForKey:@"UsesPictureSettings"]  intValue] > 0)
5373         {
5374             hb_job_t * job = fTitle->job;
5375             /* Check to see if the objectForKey:@"UsesPictureSettings is 2 which is "Use Max for the source */
5376             if ([[chosenPreset objectForKey:@"UsesPictureSettings"]  intValue] == 2 || [[chosenPreset objectForKey:@"UsesMaxPictureSettings"]  intValue] == 1)
5377             {
5378                 /* Use Max Picture settings for whatever the dvd is.*/
5379                 [self revertPictureSizeToMax:nil];
5380                 job->keep_ratio = [[chosenPreset objectForKey:@"PictureKeepRatio"]  intValue];
5381                 if (job->keep_ratio == 1)
5382                 {
5383                     hb_fix_aspect( job, HB_KEEP_WIDTH );
5384                     if( job->height > fTitle->height )
5385                     {
5386                         job->height = fTitle->height;
5387                         hb_fix_aspect( job, HB_KEEP_HEIGHT );
5388                     }
5389                 }
5390                 job->pixel_ratio = [[chosenPreset objectForKey:@"PicturePAR"]  intValue];
5391             }
5392             else // /* If not 0 or 2 we assume objectForKey:@"UsesPictureSettings is 1 which is "Use picture sizing from when the preset was set" */
5393             {
5394                 /* we check to make sure the presets width/height does not exceed the sources width/height */
5395                 if (fTitle->width < [[chosenPreset objectForKey:@"PictureWidth"]  intValue] || fTitle->height < [[chosenPreset objectForKey:@"PictureHeight"]  intValue])
5396                 {
5397                     /* if so, then we use the sources height and width to avoid scaling up */
5398                     job->width = fTitle->width;
5399                     job->height = fTitle->height;
5400                 }
5401                 else // source width/height is >= the preset height/width
5402                 {
5403                     /* we can go ahead and use the presets values for height and width */
5404                     job->width = [[chosenPreset objectForKey:@"PictureWidth"]  intValue];
5405                     job->height = [[chosenPreset objectForKey:@"PictureHeight"]  intValue];
5406                 }
5407                 job->keep_ratio = [[chosenPreset objectForKey:@"PictureKeepRatio"]  intValue];
5408                 if (job->keep_ratio == 1)
5409                 {
5410                     hb_fix_aspect( job, HB_KEEP_WIDTH );
5411                     if( job->height > fTitle->height )
5412                     {
5413                         job->height = fTitle->height;
5414                         hb_fix_aspect( job, HB_KEEP_HEIGHT );
5415                     }
5416                 }
5417                 job->pixel_ratio = [[chosenPreset objectForKey:@"PicturePAR"]  intValue];
5418                 
5419                 
5420                 /* If Cropping is set to custom, then recall all four crop values from
5421                  when the preset was created and apply them */
5422                 if ([[chosenPreset objectForKey:@"PictureAutoCrop"]  intValue] == 0)
5423                 {
5424                     [fPictureController setAutoCrop:NO];
5425                     
5426                     /* Here we use the custom crop values saved at the time the preset was saved */
5427                     job->crop[0] = [[chosenPreset objectForKey:@"PictureTopCrop"]  intValue];
5428                     job->crop[1] = [[chosenPreset objectForKey:@"PictureBottomCrop"]  intValue];
5429                     job->crop[2] = [[chosenPreset objectForKey:@"PictureLeftCrop"]  intValue];
5430                     job->crop[3] = [[chosenPreset objectForKey:@"PictureRightCrop"]  intValue];
5431                     
5432                 }
5433                 else /* if auto crop has been saved in preset, set to auto and use post scan auto crop */
5434                 {
5435                     [fPictureController setAutoCrop:YES];
5436                     /* Here we use the auto crop values determined right after scan */
5437                     job->crop[0] = AutoCropTop;
5438                     job->crop[1] = AutoCropBottom;
5439                     job->crop[2] = AutoCropLeft;
5440                     job->crop[3] = AutoCropRight;
5441                     
5442                 }
5443                 /* If the preset has no objectForKey:@"UsesPictureFilters", then we know it is a legacy preset
5444                  * and handle the filters here as before.
5445                  * NOTE: This should be removed when the update presets code is done as we can be assured that legacy
5446                  * presets are updated to work properly with new keys.
5447                  */
5448                 if (![chosenPreset objectForKey:@"UsesPictureFilters"])
5449                 {
5450                     /* Filters */
5451                     /* Deinterlace */
5452                     if ([chosenPreset objectForKey:@"PictureDeinterlace"])
5453                     {
5454                         /* We check to see if the preset used the past fourth "Slowest" deinterlaceing and set that to "Slower
5455                          * since we no longer have a fourth "Slowest" deinterlacing due to the mcdeint bug */
5456                         if ([[chosenPreset objectForKey:@"PictureDeinterlace"] intValue] == 4)
5457                         {
5458                             [fPictureController setDeinterlace:3];
5459                         }
5460                         else
5461                         {
5462                             
5463                             [fPictureController setDeinterlace:[[chosenPreset objectForKey:@"PictureDeinterlace"] intValue]];
5464                         }
5465                     }
5466                     else
5467                     {
5468                         [fPictureController setDeinterlace:0];
5469                     }
5470                     /* VFR */
5471                     if ([[chosenPreset objectForKey:@"VFR"] intValue] == 1)
5472                     {
5473                         // We make sure that framerate is set to Same as source variable
5474                         // detelecine will take care of itself right below
5475                         //[fPictureController setVFR:[[chosenPreset objectForKey:@"VFR"] intValue]];
5476                     }
5477                     
5478                     /* Detelecine */
5479                     if ([[chosenPreset objectForKey:@"PictureDetelecine"] intValue] == 1)
5480                     {
5481                         [fPictureController setDetelecine:[[chosenPreset objectForKey:@"PictureDetelecine"] intValue]];
5482                     }
5483                     else
5484                     {
5485                         [fPictureController setDetelecine:0];
5486                     }
5487                     /* Denoise */
5488                     if ([chosenPreset objectForKey:@"PictureDenoise"])
5489                     {
5490                         [fPictureController setDenoise:[[chosenPreset objectForKey:@"PictureDenoise"] intValue]];
5491                     }
5492                     else
5493                     {
5494                         [fPictureController setDenoise:0];
5495                     }   
5496                     /* Deblock */
5497                     if ([[chosenPreset objectForKey:@"PictureDeblock"] intValue] == 1)
5498                     {
5499                        /* since we used to use 1 to turn on deblock, we now use a 5 in our sliding scale */
5500                          [fPictureController setDeblock:5];
5501                     }
5502                     else
5503                     {
5504                         [fPictureController setDeblock:0];
5505                      
5506                     }
5507
5508                    [self calculatePictureSizing:nil];
5509                 }
5510
5511             }
5512
5513
5514         }
5515         /* If the preset has an objectForKey:@"UsesPictureFilters", then we know it is a newer style filters preset
5516          * and handle the filters here depending on whether or not the preset specifies applying the filter.
5517          */
5518         if ([chosenPreset objectForKey:@"UsesPictureFilters"] && [[chosenPreset objectForKey:@"UsesPictureFilters"]  intValue] > 0)
5519         {
5520             /* Filters */
5521             /* Deinterlace */
5522             if ([chosenPreset objectForKey:@"PictureDeinterlace"])
5523             {
5524                 /* We check to see if the preset used the past fourth "Slowest" deinterlaceing and set that to "Slower
5525                  * since we no longer have a fourth "Slowest" deinterlacing due to the mcdeint bug */
5526                 if ([[chosenPreset objectForKey:@"PictureDeinterlace"] intValue] == 4)
5527                 {
5528                     [fPictureController setDeinterlace:3];
5529                 }
5530                 else
5531                 {
5532                     [fPictureController setDeinterlace:[[chosenPreset objectForKey:@"PictureDeinterlace"] intValue]];
5533                 }
5534             }
5535             else
5536             {
5537                 [fPictureController setDeinterlace:0];
5538             }
5539             
5540             /* Detelecine */
5541             if ([[chosenPreset objectForKey:@"PictureDetelecine"] intValue] == 1)
5542             {
5543                 [fPictureController setDetelecine:[[chosenPreset objectForKey:@"PictureDetelecine"] intValue]];
5544             }
5545             else
5546             {
5547                 [fPictureController setDetelecine:0];
5548             }
5549             /* Denoise */
5550             if ([chosenPreset objectForKey:@"PictureDenoise"])
5551             {
5552                 [fPictureController setDenoise:[[chosenPreset objectForKey:@"PictureDenoise"] intValue]];
5553             }
5554             else
5555             {
5556                 [fPictureController setDenoise:0];
5557             }   
5558             /* Deblock */
5559             if ([[chosenPreset objectForKey:@"PictureDeblock"] intValue] == 1)
5560             {
5561                 /* if its a one, then its the old on/off deblock, set on to 5*/
5562                 [fPictureController setDeblock:5];
5563             }
5564             else
5565             {
5566                 /* use the settings intValue */
5567                 [fPictureController setDeblock:[[chosenPreset objectForKey:@"PictureDeblock"] intValue]];
5568             }
5569             /* Decomb */
5570             /* Even though we currently allow for a custom setting for decomb, ultimately it will only have Off and
5571              * Default so we just pay attention to anything greater than 0 as 1 (Default). 0 is Off. */
5572             if ([[chosenPreset objectForKey:@"PictureDecomb"] intValue] > 0)
5573             {
5574                 [fPictureController setDecomb:1];
5575             }
5576             else
5577             {
5578                 [fPictureController setDecomb:0];
5579             }
5580         }
5581         [self calculatePictureSizing:nil];
5582     }
5583 }
5584
5585
5586 #pragma mark -
5587 #pragma mark Manage Presets
5588
5589 - (void) loadPresets {
5590         /* We declare the default NSFileManager into fileManager */
5591         NSFileManager * fileManager = [NSFileManager defaultManager];
5592         /*We define the location of the user presets file */
5593     UserPresetsFile = @"~/Library/Application Support/HandBrake/UserPresets.plist";
5594         UserPresetsFile = [[UserPresetsFile stringByExpandingTildeInPath]retain];
5595     /* We check for the presets.plist */
5596         if ([fileManager fileExistsAtPath:UserPresetsFile] == 0)
5597         {
5598                 [fileManager createFileAtPath:UserPresetsFile contents:nil attributes:nil];
5599         }
5600
5601         UserPresets = [[NSMutableArray alloc] initWithContentsOfFile:UserPresetsFile];
5602         if (nil == UserPresets)
5603         {
5604                 UserPresets = [[NSMutableArray alloc] init];
5605                 [self addFactoryPresets:nil];
5606         }
5607         [fPresetsOutlineView reloadData];
5608 }
5609
5610
5611 - (IBAction) showAddPresetPanel: (id) sender
5612 {
5613     /* Deselect the currently selected Preset if there is one*/
5614     [fPresetsOutlineView deselectRow:[fPresetsOutlineView selectedRow]];
5615
5616     /* Populate the preset picture settings popup here */
5617     [fPresetNewPicSettingsPopUp removeAllItems];
5618     [fPresetNewPicSettingsPopUp addItemWithTitle:@"None"];
5619     [fPresetNewPicSettingsPopUp addItemWithTitle:@"Current"];
5620     [fPresetNewPicSettingsPopUp addItemWithTitle:@"Source Maximum (post source scan)"];
5621     [fPresetNewPicSettingsPopUp selectItemAtIndex: 0];  
5622     /* Uncheck the preset use filters checkbox */
5623     [fPresetNewPicFiltersCheck setState:NSOffState];
5624     /* Erase info from the input fields*/
5625         [fPresetNewName setStringValue: @""];
5626         [fPresetNewDesc setStringValue: @""];
5627         /* Show the panel */
5628         [NSApp beginSheet:fAddPresetPanel modalForWindow:fWindow modalDelegate:nil didEndSelector:NULL contextInfo:NULL];
5629 }
5630
5631 - (IBAction) closeAddPresetPanel: (id) sender
5632 {
5633     [NSApp endSheet: fAddPresetPanel];
5634     [fAddPresetPanel orderOut: self];
5635 }
5636
5637 - (IBAction)addUserPreset:(id)sender
5638 {
5639     if (![[fPresetNewName stringValue] length])
5640             NSRunAlertPanel(@"Warning!", @"You need to insert a name for the preset.", @"OK", nil , nil);
5641     else
5642     {
5643         /* Here we create a custom user preset */
5644         [UserPresets addObject:[self createPreset]];
5645         [self addPreset];
5646
5647         [self closeAddPresetPanel:nil];
5648     }
5649 }
5650 - (void)addPreset
5651 {
5652
5653         
5654         /* We Reload the New Table data for presets */
5655     [fPresetsOutlineView reloadData];
5656    /* We save all of the preset data here */
5657     [self savePreset];
5658 }
5659
5660 - (void)sortPresets
5661 {
5662
5663         
5664         /* We Sort the Presets By Factory or Custom */
5665         NSSortDescriptor * presetTypeDescriptor=[[[NSSortDescriptor alloc] initWithKey:@"Type" 
5666                                                     ascending:YES] autorelease];
5667         /* We Sort the Presets Alphabetically by name  We do not use this now as we have drag and drop*/
5668         /*
5669     NSSortDescriptor * presetNameDescriptor=[[[NSSortDescriptor alloc] initWithKey:@"PresetName" 
5670                                                     ascending:YES selector:@selector(caseInsensitiveCompare:)] autorelease];
5671         //NSArray *sortDescriptors=[NSArray arrayWithObjects:presetTypeDescriptor,presetNameDescriptor,nil];
5672     
5673     */
5674     /* Since we can drag and drop our custom presets, lets just sort by type and not name */
5675     NSArray *sortDescriptors=[NSArray arrayWithObjects:presetTypeDescriptor,nil];
5676         NSArray *sortedArray=[UserPresets sortedArrayUsingDescriptors:sortDescriptors];
5677         [UserPresets setArray:sortedArray];
5678         
5679
5680 }
5681
5682 - (IBAction)insertPreset:(id)sender
5683 {
5684     int index = [fPresetsOutlineView selectedRow];
5685     [UserPresets insertObject:[self createPreset] atIndex:index];
5686     [fPresetsOutlineView reloadData];
5687     [self savePreset];
5688 }
5689
5690 - (NSDictionary *)createPreset
5691 {
5692     NSMutableDictionary *preset = [[NSMutableDictionary alloc] init];
5693         /* Get the New Preset Name from the field in the AddPresetPanel */
5694     [preset setObject:[fPresetNewName stringValue] forKey:@"PresetName"];
5695         /*Set whether or not this is a user preset or factory 0 is factory, 1 is user*/
5696         [preset setObject:[NSNumber numberWithInt:1] forKey:@"Type"];
5697         /*Set whether or not this is default, at creation set to 0*/
5698         [preset setObject:[NSNumber numberWithInt:0] forKey:@"Default"];
5699         /*Get the whether or not to apply pic Size and Cropping (includes Anamorphic)*/
5700         [preset setObject:[NSNumber numberWithInt:[fPresetNewPicSettingsPopUp indexOfSelectedItem]] forKey:@"UsesPictureSettings"];
5701     /* Get whether or not to use the current Picture Filter settings for the preset */
5702     [preset setObject:[NSNumber numberWithInt:[fPresetNewPicFiltersCheck state]] forKey:@"UsesPictureFilters"];
5703  
5704     /* Get New Preset Description from the field in the AddPresetPanel*/
5705         [preset setObject:[fPresetNewDesc stringValue] forKey:@"PresetDescription"];
5706         /* File Format */
5707     [preset setObject:[fDstFormatPopUp titleOfSelectedItem] forKey:@"FileFormat"];
5708         /* Chapter Markers fCreateChapterMarkers*/
5709         [preset setObject:[NSNumber numberWithInt:[fCreateChapterMarkers state]] forKey:@"ChapterMarkers"];
5710         /* Allow Mpeg4 64 bit formatting +4GB file sizes */
5711         [preset setObject:[NSNumber numberWithInt:[fDstMp4LargeFileCheck state]] forKey:@"Mp4LargeFile"];
5712     /* Mux mp4 with http optimization */
5713     [preset setObject:[NSNumber numberWithInt:[fDstMp4HttpOptFileCheck state]] forKey:@"Mp4HttpOptimize"];
5714     /* Add iPod uuid atom */
5715     [preset setObject:[NSNumber numberWithInt:[fDstMp4iPodFileCheck state]] forKey:@"Mp4iPodCompatible"];
5716
5717     /* Codecs */
5718         /* Video encoder */
5719         [preset setObject:[fVidEncoderPopUp titleOfSelectedItem] forKey:@"VideoEncoder"];
5720         /* x264 Option String */
5721         [preset setObject:[fAdvancedOptions optionsString] forKey:@"x264Option"];
5722
5723         [preset setObject:[NSNumber numberWithInt:[fVidQualityMatrix selectedRow]] forKey:@"VideoQualityType"];
5724         [preset setObject:[fVidTargetSizeField stringValue] forKey:@"VideoTargetSize"];
5725         [preset setObject:[fVidBitrateField stringValue] forKey:@"VideoAvgBitrate"];
5726         [preset setObject:[NSNumber numberWithFloat:[fVidQualitySlider floatValue]] forKey:@"VideoQualitySlider"];
5727
5728         /* Video framerate */
5729     if ([fVidRatePopUp indexOfSelectedItem] == 0) // Same as source is selected
5730         {
5731         [preset setObject:@"Same as source" forKey:@"VideoFramerate"];
5732     }
5733     else // we can record the actual titleOfSelectedItem
5734     {
5735     [preset setObject:[fVidRatePopUp titleOfSelectedItem] forKey:@"VideoFramerate"];
5736     }
5737         /* GrayScale */
5738         [preset setObject:[NSNumber numberWithInt:[fVidGrayscaleCheck state]] forKey:@"VideoGrayScale"];
5739         /* 2 Pass Encoding */
5740         [preset setObject:[NSNumber numberWithInt:[fVidTwoPassCheck state]] forKey:@"VideoTwoPass"];
5741         /* Turbo 2 pass Encoding fVidTurboPassCheck*/
5742         [preset setObject:[NSNumber numberWithInt:[fVidTurboPassCheck state]] forKey:@"VideoTurboTwoPass"];
5743         /*Picture Settings*/
5744         hb_job_t * job = fTitle->job;
5745         /* Picture Sizing */
5746         /* Use Max Picture settings for whatever the dvd is.*/
5747         [preset setObject:[NSNumber numberWithInt:0] forKey:@"UsesMaxPictureSettings"];
5748         [preset setObject:[NSNumber numberWithInt:fTitle->job->width] forKey:@"PictureWidth"];
5749         [preset setObject:[NSNumber numberWithInt:fTitle->job->height] forKey:@"PictureHeight"];
5750         [preset setObject:[NSNumber numberWithInt:fTitle->job->keep_ratio] forKey:@"PictureKeepRatio"];
5751         [preset setObject:[NSNumber numberWithInt:fTitle->job->pixel_ratio] forKey:@"PicturePAR"];
5752     
5753     /* Set crop settings here */
5754         [preset setObject:[NSNumber numberWithInt:[fPictureController autoCrop]] forKey:@"PictureAutoCrop"];
5755     [preset setObject:[NSNumber numberWithInt:job->crop[0]] forKey:@"PictureTopCrop"];
5756     [preset setObject:[NSNumber numberWithInt:job->crop[1]] forKey:@"PictureBottomCrop"];
5757         [preset setObject:[NSNumber numberWithInt:job->crop[2]] forKey:@"PictureLeftCrop"];
5758         [preset setObject:[NSNumber numberWithInt:job->crop[3]] forKey:@"PictureRightCrop"];
5759     
5760     /* Picture Filters */
5761     [preset setObject:[NSNumber numberWithInt:[fPictureController deinterlace]] forKey:@"PictureDeinterlace"];
5762         [preset setObject:[NSNumber numberWithInt:[fPictureController detelecine]] forKey:@"PictureDetelecine"];
5763     //[preset setObject:[NSNumber numberWithInt:[fPictureController vfr]] forKey:@"VFR"];
5764         [preset setObject:[NSNumber numberWithInt:[fPictureController denoise]] forKey:@"PictureDenoise"];
5765     [preset setObject:[NSNumber numberWithInt:[fPictureController deblock]] forKey:@"PictureDeblock"]; 
5766     [preset setObject:[NSNumber numberWithInt:[fPictureController decomb]] forKey:@"PictureDecomb"];
5767     
5768     
5769     /*Audio*/
5770     if ([fAudLang1PopUp indexOfSelectedItem] > 0)
5771     {
5772         [preset setObject:[NSNumber numberWithInt:[fAudLang1PopUp indexOfSelectedItem]] forKey:@"Audio1Track"];
5773         [preset setObject:[fAudLang1PopUp titleOfSelectedItem] forKey:@"Audio1TrackDescription"];
5774         [preset setObject:[fAudTrack1CodecPopUp titleOfSelectedItem] forKey:@"Audio1Encoder"];
5775         [preset setObject:[fAudTrack1MixPopUp titleOfSelectedItem] forKey:@"Audio1Mixdown"];
5776         [preset setObject:[fAudTrack1RatePopUp titleOfSelectedItem] forKey:@"Audio1Samplerate"];
5777         [preset setObject:[fAudTrack1BitratePopUp titleOfSelectedItem] forKey:@"Audio1Bitrate"];
5778         [preset setObject:[NSNumber numberWithFloat:[fAudTrack1DrcSlider floatValue]] forKey:@"Audio1TrackDRCSlider"];
5779     }
5780     if ([fAudLang2PopUp indexOfSelectedItem] > 0)
5781     {
5782         [preset setObject:[NSNumber numberWithInt:[fAudLang2PopUp indexOfSelectedItem]] forKey:@"Audio2Track"];
5783         [preset setObject:[fAudLang2PopUp titleOfSelectedItem] forKey:@"Audio2TrackDescription"];
5784         [preset setObject:[fAudTrack2CodecPopUp titleOfSelectedItem] forKey:@"Audio2Encoder"];
5785         [preset setObject:[fAudTrack2MixPopUp titleOfSelectedItem] forKey:@"Audio2Mixdown"];
5786         [preset setObject:[fAudTrack2RatePopUp titleOfSelectedItem] forKey:@"Audio2Samplerate"];
5787         [preset setObject:[fAudTrack2BitratePopUp titleOfSelectedItem] forKey:@"Audio2Bitrate"];
5788         [preset setObject:[NSNumber numberWithFloat:[fAudTrack2DrcSlider floatValue]] forKey:@"Audio2TrackDRCSlider"];
5789     }
5790     if ([fAudLang3PopUp indexOfSelectedItem] > 0)
5791     {
5792         [preset setObject:[NSNumber numberWithInt:[fAudLang3PopUp indexOfSelectedItem]] forKey:@"Audio3Track"];
5793         [preset setObject:[fAudLang3PopUp titleOfSelectedItem] forKey:@"Audio3TrackDescription"];
5794         [preset setObject:[fAudTrack3CodecPopUp titleOfSelectedItem] forKey:@"Audio3Encoder"];
5795         [preset setObject:[fAudTrack3MixPopUp titleOfSelectedItem] forKey:@"Audio3Mixdown"];
5796         [preset setObject:[fAudTrack3RatePopUp titleOfSelectedItem] forKey:@"Audio3Samplerate"];
5797         [preset setObject:[fAudTrack3BitratePopUp titleOfSelectedItem] forKey:@"Audio3Bitrate"];
5798         [preset setObject:[NSNumber numberWithFloat:[fAudTrack3DrcSlider floatValue]] forKey:@"Audio3TrackDRCSlider"];
5799     }
5800     if ([fAudLang4PopUp indexOfSelectedItem] > 0)
5801     {
5802         [preset setObject:[NSNumber numberWithInt:[fAudLang4PopUp indexOfSelectedItem]] forKey:@"Audio4Track"];
5803         [preset setObject:[fAudLang4PopUp titleOfSelectedItem] forKey:@"Audio4TrackDescription"];
5804         [preset setObject:[fAudTrack4CodecPopUp titleOfSelectedItem] forKey:@"Audio4Encoder"];
5805         [preset setObject:[fAudTrack4MixPopUp titleOfSelectedItem] forKey:@"Audio4Mixdown"];
5806         [preset setObject:[fAudTrack4RatePopUp titleOfSelectedItem] forKey:@"Audio4Samplerate"];
5807         [preset setObject:[fAudTrack4BitratePopUp titleOfSelectedItem] forKey:@"Audio4Bitrate"];
5808         [preset setObject:[NSNumber numberWithFloat:[fAudTrack4DrcSlider floatValue]] forKey:@"Audio4TrackDRCSlider"];
5809     }
5810     
5811         /* Subtitles*/
5812         [preset setObject:[fSubPopUp titleOfSelectedItem] forKey:@"Subtitles"];
5813     /* Forced Subtitles */
5814         [preset setObject:[NSNumber numberWithInt:[fSubForcedCheck state]] forKey:@"SubtitlesForced"];
5815     
5816     [preset autorelease];
5817     return preset;
5818
5819 }
5820
5821 - (void)savePreset
5822 {
5823     [UserPresets writeToFile:UserPresetsFile atomically:YES];
5824         /* We get the default preset in case it changed */
5825         [self getDefaultPresets:nil];
5826
5827 }
5828
5829 - (IBAction)deletePreset:(id)sender
5830 {
5831     int status;
5832     NSEnumerator *enumerator;
5833     NSNumber *index;
5834     NSMutableArray *tempArray;
5835     id tempObject;
5836     
5837     if ( [fPresetsOutlineView numberOfSelectedRows] == 0 )
5838         return;
5839     /* Alert user before deleting preset */
5840         /* Comment out for now, tie to user pref eventually */
5841
5842     //NSBeep();
5843     status = NSRunAlertPanel(@"Warning!", @"Are you sure that you want to delete the selected preset?", @"OK", @"Cancel", nil);
5844     
5845     if ( status == NSAlertDefaultReturn ) {
5846         enumerator = [fPresetsOutlineView selectedRowEnumerator];
5847         tempArray = [NSMutableArray array];
5848         
5849         while ( (index = [enumerator nextObject]) ) {
5850             tempObject = [UserPresets objectAtIndex:[index intValue]];
5851             [tempArray addObject:tempObject];
5852         }
5853         
5854         [UserPresets removeObjectsInArray:tempArray];
5855         [fPresetsOutlineView reloadData];
5856         [self savePreset];   
5857     }
5858 }
5859
5860 #pragma mark -
5861 #pragma mark Manage Default Preset
5862
5863 - (IBAction)getDefaultPresets:(id)sender
5864 {
5865         int i = 0;
5866     presetCurrentBuiltInCount = 0;
5867     NSEnumerator *enumerator = [UserPresets objectEnumerator];
5868         id tempObject;
5869         while (tempObject = [enumerator nextObject])
5870         {
5871                 NSDictionary *thisPresetDict = tempObject;
5872                 if ([[thisPresetDict objectForKey:@"Default"] intValue] == 1) // 1 is HB default
5873                 {
5874                         presetHbDefault = i;    
5875                 }
5876                 if ([[thisPresetDict objectForKey:@"Default"] intValue] == 2) // 2 is User specified default
5877                 {
5878                         presetUserDefault = i;  
5879                 }
5880         if ([[thisPresetDict objectForKey:@"Type"] intValue] == 0) // Type 0 is a built in preset               
5881         {
5882                         presetCurrentBuiltInCount++; // <--increment the current number of built in presets     
5883                 }
5884                 i++;
5885         }
5886 }
5887
5888 - (IBAction)setDefaultPreset:(id)sender
5889 {
5890     int i = 0;
5891     NSEnumerator *enumerator = [UserPresets objectEnumerator];
5892         id tempObject;
5893         /* First make sure the old user specified default preset is removed */
5894         while (tempObject = [enumerator nextObject])
5895         {
5896                 /* make sure we are not removing the default HB preset */
5897                 if ([[[UserPresets objectAtIndex:i] objectForKey:@"Default"] intValue] != 1) // 1 is HB default
5898                 {
5899                         [[UserPresets objectAtIndex:i] setObject:[NSNumber numberWithInt:0] forKey:@"Default"];
5900                 }
5901                 i++;
5902         }
5903         /* Second, go ahead and set the appropriate user specfied preset */
5904         /* we get the chosen preset from the UserPresets array */
5905         if ([[[UserPresets objectAtIndex:[fPresetsOutlineView selectedRow]] objectForKey:@"Default"] intValue] != 1) // 1 is HB default
5906         {
5907                 [[UserPresets objectAtIndex:[fPresetsOutlineView selectedRow]] setObject:[NSNumber numberWithInt:2] forKey:@"Default"];
5908         }
5909         /*FIX ME: I think we now need to use the items not rows in NSOutlineView */
5910     presetUserDefault = [fPresetsOutlineView selectedRow];
5911         
5912         /* We save all of the preset data here */
5913     [self savePreset];
5914         /* We Reload the New Table data for presets */
5915     [fPresetsOutlineView reloadData];
5916 }
5917
5918 - (IBAction)selectDefaultPreset:(id)sender
5919 {
5920         /* if there is a user specified default, we use it */
5921         if (presetUserDefault)
5922         {
5923         [fPresetsOutlineView selectRowIndexes:[NSIndexSet indexSetWithIndex:presetUserDefault] byExtendingSelection:NO];
5924         [self selectPreset:nil];
5925         }
5926         else if (presetHbDefault) //else we use the built in default presetHbDefault
5927         {
5928         [fPresetsOutlineView selectRowIndexes:[NSIndexSet indexSetWithIndex:presetHbDefault] byExtendingSelection:NO];
5929         [self selectPreset:nil];
5930         }
5931 }
5932
5933
5934 #pragma mark -
5935 #pragma mark Manage Built In Presets
5936
5937
5938 - (IBAction)deleteFactoryPresets:(id)sender
5939 {
5940     //int status;
5941     NSEnumerator *enumerator = [UserPresets objectEnumerator];
5942         id tempObject;
5943     
5944         //NSNumber *index;
5945     NSMutableArray *tempArray;
5946
5947
5948         tempArray = [NSMutableArray array];
5949         /* we look here to see if the preset is we move on to the next one */
5950         while ( tempObject = [enumerator nextObject] )  
5951                 {
5952                         /* if the preset is "Factory" then we put it in the array of
5953                         presets to delete */
5954                         if ([[tempObject objectForKey:@"Type"] intValue] == 0)
5955                         {
5956                                 [tempArray addObject:tempObject];
5957                         }
5958         }
5959         
5960         [UserPresets removeObjectsInArray:tempArray];
5961         [fPresetsOutlineView reloadData];
5962         [self savePreset];   
5963
5964 }
5965
5966    /* We use this method to recreate new, updated factory
5967    presets */
5968 - (IBAction)addFactoryPresets:(id)sender
5969 {
5970    
5971    /* First, we delete any existing built in presets */
5972     [self deleteFactoryPresets: sender];
5973     /* Then we generate new built in presets programmatically with fPresetsBuiltin
5974     * which is all setup in HBPresets.h and  HBPresets.m*/
5975     [fPresetsBuiltin generateBuiltinPresets:UserPresets];
5976     [self sortPresets];
5977     [self addPreset];
5978     
5979 }
5980
5981
5982
5983
5984
5985 @end
5986
5987 /*******************************
5988  * Subclass of the HBPresetsOutlineView *
5989  *******************************/
5990
5991 @implementation HBPresetsOutlineView
5992 - (NSImage *)dragImageForRowsWithIndexes:(NSIndexSet *)dragRows tableColumns:(NSArray *)tableColumns event:(NSEvent*)dragEvent offset:(NSPointPointer)dragImageOffset
5993 {
5994     fIsDragging = YES;
5995
5996     // By default, NSTableView only drags an image of the first column. Change this to
5997     // drag an image of the queue's icon and PresetName columns.
5998     NSArray * cols = [NSArray arrayWithObjects: [self tableColumnWithIdentifier:@"icon"], [self tableColumnWithIdentifier:@"PresetName"], nil];
5999     return [super dragImageForRowsWithIndexes:dragRows tableColumns:cols event:dragEvent offset:dragImageOffset];
6000 }
6001
6002
6003
6004 - (void) mouseDown:(NSEvent *)theEvent
6005 {
6006     [super mouseDown:theEvent];
6007         fIsDragging = NO;
6008 }
6009
6010
6011
6012 - (BOOL) isDragging;
6013 {
6014     return fIsDragging;
6015 }
6016 @end
6017
6018
6019