1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
|
//
// HBAudioController.m
// HandBrake
//
// Created on 2010-08-24.
//
#import "HBAudioController.h"
#import "Controller.h"
#import "HBAudio.h"
#import "HBAudioDefaults.h"
#import "HBAudioDefaultsController.h"
#import "HBAudioTrackPreset.h"
#import "hb.h"
#include "lang.h"
NSString *keyAudioTrackIndex = @"keyAudioTrackIndex";
NSString *keyAudioTrackName = @"keyAudioTrackName";
NSString *keyAudioInputBitrate = @"keyAudioInputBitrate";
NSString *keyAudioInputSampleRate = @"keyAudioInputSampleRate";
NSString *keyAudioInputCodec = @"keyAudioInputCodec";
NSString *keyAudioInputCodecParam = @"keyAudioInputCodecParam";
NSString *keyAudioInputChannelLayout = @"keyAudioInputChannelLayout";
NSString *keyAudioTrackLanguageIsoCode = @"keyAudioTrackLanguageIsoCode";
NSString *HBMixdownChangedNotification = @"HBMixdownChangedNotification";
@interface HBAudioController () {
IBOutlet NSTableView * fTableView;
NSMutableArray * audioArray; // the configured audio information
NSArray * masterTrackArray; // the master list of audio tracks from the title
NSDictionary * noneTrack; // this represents no audio track selection
}
@property (assign) IBOutlet NSPopUpButton *trackPopup;
@property (assign) IBOutlet NSButton *configureDefaults;
@property (assign) IBOutlet NSButton *reloadDefaults;
@property (nonatomic, readwrite) BOOL enabled;
@property (nonatomic, readwrite, retain) NSArray *masterTrackArray;
@property (nonatomic, retain) NSNumber *videoContainerTag; // initially is the default HB_MUX_MP4
// Defaults
@property (nonatomic, readwrite, retain) HBAudioDefaultsController *defaultsController;
@property (nonatomic, readwrite, retain) HBAudioDefaults *settings;
@end
@implementation HBAudioController
#pragma mark -
#pragma mark Accessors
@synthesize masterTrackArray;
@synthesize noneTrack;
@synthesize videoContainerTag;
- (instancetype)init
{
self = [super initWithNibName:@"Audio" bundle:nil];
if (self)
{
[self setVideoContainerTag: @HB_MUX_MP4];
audioArray = [[NSMutableArray alloc] init];
/* register that we are interested in changes made to the video container */
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
[center addObserver: self selector: @selector(containerChanged:) name: HBContainerChangedNotification object: nil];
[center addObserver: self selector: @selector(titleChanged:) name: HBTitleChangedNotification object: nil];
}
return self;
}
- (void) dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver: self];
[masterTrackArray release];
[noneTrack release];
[audioArray release];
[self setVideoContainerTag: nil];
[super dealloc];
}
- (IBAction)addAllAudioTracks:(id)sender
{
[self addTracksFromDefaults:YES];
}
- (IBAction)removeAll:(id)sender
{
[self _clearAudioArray];
[self switchingTrackFromNone:nil];
}
- (void)setUIEnabled:(BOOL)flag
{
self.enabled = flag;
[fTableView setEnabled:flag];
[self.trackPopup setEnabled:flag];
[self.configureDefaults setEnabled:flag];
[self.reloadDefaults setEnabled:flag];
}
- (BOOL)validateUserInterfaceItem:(id < NSValidatedUserInterfaceItem >)anItem
{
return self.enabled;
}
#pragma mark -
#pragma mark HBController Support
- (NSArray *)audioTracks
{
NSMutableArray *tracksArray = [NSMutableArray array];
NSUInteger audioArrayCount = [self countOfAudioArray];
for (NSUInteger counter = 0; counter < audioArrayCount; counter++)
{
HBAudio *anAudio = [self objectInAudioArrayAtIndex: counter];
if ([anAudio enabled])
{
NSMutableDictionary *dict = [NSMutableDictionary dictionary];
NSNumber *sampleRateToUse = ([anAudio.sampleRate[keyAudioSamplerate] intValue] == 0 ?
anAudio.track[keyAudioInputSampleRate] :
anAudio.sampleRate[keyAudioSamplerate]);
dict[@"Track"] = @([anAudio.track[keyAudioTrackIndex] intValue] -1);
dict[@"TrackDescription"] = anAudio.track[keyAudioTrackName];
dict[@"Encoder"] = anAudio.codec[keyAudioCodecName];
dict[@"Mixdown"] = anAudio.mixdown[keyAudioMixdownName];
dict[@"Samplerate"] = anAudio.sampleRate[keyAudioSampleRateName];
dict[@"Bitrate"] = anAudio.bitRate[keyAudioBitrateName];
// output is not passthru so apply gain
if (!([[anAudio codec][keyAudioCodec] intValue] & HB_ACODEC_PASS_FLAG))
{
dict[@"TrackGainSlider"] = anAudio.gain;
}
else
{
// output is passthru - the Gain dial is disabled so don't apply its value
dict[@"TrackGainSlider"] = @0;
}
if (hb_audio_can_apply_drc([anAudio.track[keyAudioInputCodec] intValue],
[anAudio.track[keyAudioInputCodecParam] intValue],
[anAudio.codec[keyAudioCodec] intValue]))
{
dict[@"TrackDRCSlider"] = anAudio.drc;
}
else
{
// source isn't AC3 or output is passthru - the DRC dial is disabled so don't apply its value
dict[@"TrackDRCSlider"] = @0;
}
dict[@"JobEncoder"] = anAudio.codec[keyAudioCodec];
dict[@"JobMixdown"] = anAudio.mixdown[keyAudioMixdown];
dict[@"JobSamplerate"] = sampleRateToUse;
dict[@"JobBitrate"] = anAudio.bitRate[keyAudioBitrate];
[tracksArray addObject:dict];
}
}
return tracksArray;
}
- (void) addTracksFromQueue: (NSMutableDictionary *) aQueue
{
// Reinitialize the configured list of audio tracks
[self _clearAudioArray];
// The following is the pattern to follow, but with Audio%dTrack being the key to seek...
// Can we assume that there will be no skip in the data?
for (NSDictionary *audioDict in aQueue[@"AudioList"])
{
HBAudio *newAudio = [[HBAudio alloc] init];
[newAudio setController: self];
[self insertObject: newAudio inAudioArrayAtIndex: [self countOfAudioArray]];
[newAudio setVideoContainerTag: [self videoContainerTag]];
[newAudio setTrackFromIndex: [audioDict[@"Track"] intValue] + 1];
[newAudio setCodecFromName: audioDict[@"Encoder"]];
[newAudio setMixdownFromName: audioDict[@"Mixdown"]];
[newAudio setSampleRateFromName: audioDict[@"Samplerate"]];
[newAudio setBitRateFromName: audioDict[@"Bitrate"]];
[newAudio setDrc: audioDict[@"TrackDRCSlider"]];
[newAudio setGain: audioDict[@"TrackGainSlider"]];
[newAudio release];
}
[self switchingTrackFromNone: nil]; // see if we need to add one to the list
}
- (void)applySettingsFromPreset:(NSDictionary *)preset
{
self.settings = [[[HBAudioDefaults alloc] init] autorelease];
[self.settings applySettingsFromPreset:preset];
[self.settings validateEncoderFallbackForVideoContainer:[self.videoContainerTag intValue]];
[self addTracksFromDefaults:NO];
}
- (void) _clearAudioArray
{
while (0 < [self countOfAudioArray])
{
[self removeObjectFromAudioArrayAtIndex: 0];
}
}
/**
* Uses the templateAudioArray from the preset to create the audios for the specified trackIndex.
*
* @param templateAudioArray the track template.
* @param trackIndex the index of the source track.
* @param firstOnly use only the first track of the template or all.
*/
- (void) _processPresetAudioArray: (NSArray *) templateAudioArray forTrack: (NSUInteger) trackIndex firstOnly: (BOOL) firstOnly
{
for (HBAudioTrackPreset *preset in templateAudioArray)
{
BOOL fallenBack = NO;
HBAudio *newAudio = [[HBAudio alloc] init];
[newAudio setController: self];
[self insertObject: newAudio inAudioArrayAtIndex: [self countOfAudioArray]];
[newAudio setVideoContainerTag: [self videoContainerTag]];
[newAudio setTrackFromIndex: (int)trackIndex];
const char *name = hb_audio_encoder_get_name(preset.encoder);
NSString *audioEncoder = nil;
// Check if we need to use a fallback
if (name)
{
audioEncoder = @(name);
if (preset.encoder & HB_ACODEC_PASS_FLAG &&
![newAudio setCodecFromName:audioEncoder])
{
int passthru, fallback;
fallenBack = YES;
passthru = hb_audio_encoder_get_from_name([audioEncoder UTF8String]);
fallback = hb_audio_encoder_get_fallback_for_passthru(passthru);
name = hb_audio_encoder_get_name(fallback);
// If we couldn't find an encoder for the passthru format
// fall back to the selected encoder fallback
if (name == NULL)
{
name = hb_audio_encoder_get_name(self.settings.encoderFallback);
}
}
else
{
name = hb_audio_encoder_sanitize_name([audioEncoder UTF8String]);
}
audioEncoder = @(name);
}
// If our preset wants us to support a codec that the track does not support, instead
// of changing the codec we remove the audio instead.
if ([newAudio setCodecFromName:audioEncoder])
{
const char *mixdown = hb_mixdown_get_name(preset.mixdown);
if (mixdown)
{
[newAudio setMixdownFromName: @(mixdown)];
}
const char *sampleRateName = hb_audio_samplerate_get_name(preset.sampleRate);
if (!sampleRateName)
{
[newAudio setSampleRateFromName: @"Auto"];
}
else
{
[newAudio setSampleRateFromName: @(sampleRateName)];
}
if (!fallenBack)
{
[newAudio setBitRateFromName: [NSString stringWithFormat:@"%d", preset.bitRate]];
}
[newAudio setDrc: @(preset.drc)];
[newAudio setGain: @(preset.gain)];
}
else
{
[self removeObjectFromAudioArrayAtIndex: [self countOfAudioArray] - 1];
}
[newAudio release];
if (firstOnly)
{
break;
}
}
}
/**
* Matches the source audio tracks with the specific language iso code.
*
* @param isoCode the iso code to match.
* @param selectOnlyFirst whether to match only the first track for the iso code.
*
* @return a NSIndexSet with the index of the matched tracks.
*/
- (NSIndexSet *) _tracksWithISOCode: (NSString *) isoCode selectOnlyFirst: (BOOL) selectOnlyFirst
{
NSMutableIndexSet *indexes = [NSMutableIndexSet indexSet];
// We search for the prefix noting that our titles have the format %d: %s where the %s is the prefix
[masterTrackArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
if (idx) // Note that we skip the "None" track
{
if ([isoCode isEqualToString:@"und"] || [obj[keyAudioTrackLanguageIsoCode] isEqualToString:isoCode])
{
[indexes addIndex:idx];
if (selectOnlyFirst)
{
*stop = YES;
}
}
}
}];
return indexes;
}
- (void) _processPresetAudioArray: (NSArray *) templateAudioArray forTracks: (NSIndexSet *) trackIndexes firstOnly: (BOOL) firstOnly
{
__block BOOL firsTrack = firstOnly;
[trackIndexes enumerateIndexesUsingBlock:^(NSUInteger idx, BOOL *stop) {
// Add the track
[self _processPresetAudioArray: self.settings.tracksArray forTrack:idx firstOnly:firsTrack];
firsTrack = self.settings.secondaryEncoderMode ? YES : NO;
}];
}
- (void) addTracksFromDefaults: (BOOL) allTracks
{
BOOL firstTrack = NO;
NSMutableIndexSet *tracksAdded = [NSMutableIndexSet indexSet];
NSMutableIndexSet *tracksToAdd = [NSMutableIndexSet indexSet];
// Reinitialize the configured list of audio tracks
[self _clearAudioArray];
if (self.settings.trackSelectionBehavior != HBAudioTrackSelectionBehaviorNone)
{
// Add tracks of Default and Alternate Language by name
for (NSString *languageISOCode in self.settings.trackSelectionLanguages)
{
NSMutableIndexSet *tracksIndexes = [[self _tracksWithISOCode: languageISOCode
selectOnlyFirst: self.settings.trackSelectionBehavior == HBAudioTrackSelectionBehaviorFirst] mutableCopy];
[tracksIndexes removeIndexes:tracksAdded];
if (tracksIndexes.count)
{
[self _processPresetAudioArray:self.settings.tracksArray forTracks:tracksIndexes firstOnly:firstTrack];
firstTrack = self.settings.secondaryEncoderMode ? YES : NO;
[tracksAdded addIndexes:tracksIndexes];
}
[tracksIndexes release];
}
// If no preferred Language was found, add standard track 1
if (tracksAdded.count == 0 && masterTrackArray.count > 1)
{
[tracksToAdd addIndex:1];
}
}
// If all tracks should be added, add all track numbers that are not yet processed
if (allTracks)
{
[tracksToAdd addIndexesInRange:NSMakeRange(1, masterTrackArray.count - 1)];
[tracksToAdd removeIndexes:tracksAdded];
}
if (tracksToAdd.count)
{
[self _processPresetAudioArray:self.settings.tracksArray forTracks:tracksToAdd firstOnly:firstTrack];
}
// Add an None item
[self switchingTrackFromNone: nil];
}
- (BOOL) anyCodecMatches: (int) aCodecValue
{
BOOL retval = NO;
NSUInteger audioArrayCount = [self countOfAudioArray];
for (NSUInteger i = 0; i < audioArrayCount && !retval; i++)
{
HBAudio *anAudio = [self objectInAudioArrayAtIndex: i];
if ([anAudio enabled] && aCodecValue == [[anAudio codec][keyAudioCodec] intValue])
{
retval = YES;
}
}
return retval;
}
- (void) addNewAudioTrack
{
HBAudio *newAudio = [[HBAudio alloc] init];
[newAudio setController: self];
[self insertObject: newAudio inAudioArrayAtIndex: [self countOfAudioArray]];
[newAudio setVideoContainerTag: [self videoContainerTag]];
[newAudio setTrack: noneTrack];
[newAudio setDrc: @0.0f];
[newAudio setGain: @0.0f];
[newAudio release];
}
#pragma mark -
#pragma mark Notification Handling
- (void) settingTrackToNone: (HBAudio *) newNoneTrack
{
// If this is not the last track in the array we need to remove it. We then need to see if a new
// one needs to be added (in the case when we were at maximum count and this switching makes it
// so we are no longer at maximum.
NSUInteger index = [audioArray indexOfObject: newNoneTrack];
if (NSNotFound != index && index < [self countOfAudioArray] - 1)
{
[self removeObjectFromAudioArrayAtIndex: index];
}
[self switchingTrackFromNone: nil]; // see if we need to add one to the list
}
- (void) switchingTrackFromNone: (HBAudio *) noLongerNoneTrack
{
NSUInteger count = [self countOfAudioArray];
BOOL needToAdd = NO;
// If there is no last track that is None we add one.
if (0 < count)
{
HBAudio *lastAudio = [self objectInAudioArrayAtIndex: count - 1];
if ([lastAudio enabled])
{
needToAdd = YES;
}
}
else
{
needToAdd = YES;
}
if (needToAdd)
{
[self addNewAudioTrack];
}
}
// This gets called whenever the video container changes.
- (void) containerChanged: (NSNotification *) aNotification
{
NSDictionary *notDict = [aNotification userInfo];
[self setVideoContainerTag: notDict[keyContainerTag]];
// Update each of the instances because this value influences possible settings.
for (HBAudio *audioObject in audioArray)
{
[audioObject setVideoContainerTag: [self videoContainerTag]];
}
// Update the Auto Passthru Fallback Codec Popup
// lets get the tag of the currently selected item first so we might reset it later
[self.settings validateEncoderFallbackForVideoContainer:[self.videoContainerTag intValue]];
}
- (void) titleChanged: (NSNotification *) aNotification
{
NSDictionary *notDict = [aNotification userInfo];
NSData *theData = notDict[keyTitleTag];
hb_title_t *title = NULL;
// Reinitialize the configured list of audio tracks
[self _clearAudioArray];
[theData getBytes: &title length: sizeof(title)];
if (title)
{
hb_audio_config_t *audio;
hb_list_t *list = title->list_audio;
int i, count = hb_list_count(list);
// Reinitialize the master list of available audio tracks from this title
NSMutableArray *newTrackArray = [NSMutableArray array];
[noneTrack release];
noneTrack = [@{keyAudioTrackIndex: @0,
keyAudioTrackName: NSLocalizedString(@"None", @"None"),
keyAudioInputCodec: @0} retain];
[newTrackArray addObject: noneTrack];
for (i = 0; i < count; i++)
{
audio = (hb_audio_config_t *) hb_list_audio_config_item(list, i);
[newTrackArray addObject: @{keyAudioTrackIndex: @(i + 1),
keyAudioTrackName: [NSString stringWithFormat: @"%d: %s", i, audio->lang.description],
keyAudioInputBitrate: @(audio->in.bitrate / 1000),
keyAudioInputSampleRate: @(audio->in.samplerate),
keyAudioInputCodec: [NSNumber numberWithUnsignedInteger: audio->in.codec],
keyAudioInputCodecParam: [NSNumber numberWithUnsignedInteger: audio->in.codec_param],
keyAudioInputChannelLayout: @(audio->in.channel_layout),
keyAudioTrackLanguageIsoCode: @(audio->lang.iso639_2)}];
}
self.masterTrackArray = newTrackArray;
[self switchingTrackFromNone: nil]; // this ensures there is a None track at the end of the list
}
else
{
self.masterTrackArray = nil;
}
}
#pragma mark - Defaults
- (IBAction)showSettingsSheet:(id)sender
{
self.defaultsController = [[[HBAudioDefaultsController alloc] initWithSettings:self.settings] autorelease];
[NSApp beginSheet:[self.defaultsController window]
modalForWindow:[[self view] window]
modalDelegate:self
didEndSelector:@selector(sheetDidEnd)
contextInfo:NULL];
}
- (void)sheetDidEnd
{
self.defaultsController = nil;
}
- (IBAction)reloadDefaults:(id)sender
{
[self addTracksFromDefaults:NO];
}
#pragma mark -
#pragma mark KVC
- (NSUInteger) countOfAudioArray
{
return [audioArray count];
}
- (HBAudio *) objectInAudioArrayAtIndex: (NSUInteger) index
{
return audioArray[index];
}
- (void) insertObject: (HBAudio *) audioObject inAudioArrayAtIndex: (NSUInteger) index;
{
[audioArray insertObject: audioObject atIndex: index];
}
- (void) removeObjectFromAudioArrayAtIndex: (NSUInteger) index
{
[audioArray removeObjectAtIndex: index];
}
@end
|