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
|
/* HBJob.m $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#import "HBJob.h"
#import "HBPreset.h"
#import "HBAudioDefaults.h"
#import "HBSubtitlesDefaults.h"
#import "NSCodingMacro.h"
#include "hb.h"
NSString *HBMixdownChangedNotification = @"HBMixdownChangedNotification";
NSString *HBContainerChangedNotification = @"HBContainerChangedNotification";
@implementation HBJob
- (instancetype)initWithTitle:(HBTitle *)title andPreset:(HBPreset *)preset
{
self = [super init];
if (self) {
NSParameterAssert(title);
NSParameterAssert(preset);
_title = title;
_titleIdx = title.hb_title->index;
_fileURL = [[NSURL fileURLWithPath:@(title.hb_title->path)] retain];
_container = HB_MUX_MP4;
_angle = 1;
_range = [[HBRange alloc] initWithTitle:title];
_video = [[HBVideo alloc] initWithJob:self];
_picture = [[HBPicture alloc] initWithTitle:title];
_filters = [[HBFilters alloc] init];
_audio = [[HBAudio alloc] initWithTitle:title];
_subtitles = [[HBSubtitles alloc] initWithTitle:title];
_chapterTitles = [title.chapters mutableCopy];
_uuid = [[[NSUUID UUID] UUIDString] retain];
[self applyPreset:preset];
}
return self;
}
- (void)applyPreset:(HBPreset *)preset
{
if (preset.isDefault)
{
self.presetName = [NSString stringWithFormat:@"%@ (Default)", preset.name];
}
else
{
self.presetName = preset.name;
}
NSDictionary *content = preset.content;
self.container = hb_container_get_from_name(hb_container_sanitize_name([content[@"FileFormat"] UTF8String]));
// MP4 specifics options.
self.mp4HttpOptimize = [content[@"Mp4HttpOptimize"] boolValue];
self.mp4iPodCompatible = [content[@"Mp4iPodCompatible"] boolValue];
// Chapter Markers
self.chaptersEnabled = [content[@"ChapterMarkers"] boolValue];
[@[self.audio, self.subtitles, self.filters, self.picture, self.video] makeObjectsPerformSelector:@selector(applyPreset:)
withObject:content];
}
- (void)applyCurrentSettingsToPreset:(NSMutableDictionary *)dict
{
dict[@"FileFormat"] = @(hb_container_get_name(self.container));
dict[@"ChapterMarkers"] = @(self.chaptersEnabled);
// MP4 specifics options.
dict[@"Mp4HttpOptimize"] = @(self.mp4HttpOptimize);
dict[@"Mp4iPodCompatible"] = @(self.mp4iPodCompatible);
[@[self.video, self.filters, self.picture, self.audio, self.subtitles] makeObjectsPerformSelector:@selector(writeToPreset:)
withObject:dict];
}
- (void)setContainer:(int)container
{
_container = container;
[self.audio containerChanged:container];
[self.subtitles containerChanged:container];
[self.video containerChanged];
/* post a notification for any interested observers to indicate that our video container has changed */
[[NSNotificationCenter defaultCenter] postNotification:
[NSNotification notificationWithName:HBContainerChangedNotification
object:self
userInfo:nil]];
}
- (void)setTitle:(HBTitle *)title
{
_title = title;
self.range.title = title;
self.picture.title = title;
}
+ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key
{
NSSet *retval = nil;
if ([key isEqualToString:@"mp4OptionsEnabled"])
{
retval = [NSSet setWithObjects:@"container", nil];
}
if ([key isEqualToString:@"mp4iPodCompatibleEnabled"])
{
retval = [NSSet setWithObjects:@"container", @"video.encoder", nil];
}
return retval;
}
- (void)dealloc
{
[_audio release];
[_subtitles release];
[_fileURL release];
[_destURL release];
[_range release];
[_video release];
[_picture release];
[_filters release];
[_chapterTitles release];
[_uuid release];
[_presetName release];
[super dealloc];
}
#pragma mark - NSCopying
- (instancetype)copyWithZone:(NSZone *)zone
{
HBJob *copy = [[[self class] alloc] init];
if (copy)
{
copy->_state = HBJobStateReady;
copy->_presetName = [_presetName copy];
copy->_titleIdx = _titleIdx;
copy->_uuid = [[[NSUUID UUID] UUIDString] retain];
copy->_fileURL = [_fileURL copy];
copy->_destURL = [_destURL copy];
copy->_container = _container;
copy->_angle = _angle;
copy->_mp4HttpOptimize = _mp4HttpOptimize;
copy->_mp4iPodCompatible = _mp4iPodCompatible;
copy->_range = [_range copy];
copy->_video = [_video copy];
copy->_picture = [_picture copy];
copy->_filters = [_filters copy];
copy->_video.job = copy;
copy->_audio = [_audio copy];
copy->_subtitles = [_subtitles copy];
copy->_chaptersEnabled = _chaptersEnabled;
copy->_chapterTitles = [[NSMutableArray alloc] initWithArray:_chapterTitles copyItems:YES];
}
return copy;
}
#pragma mark - NSCoding
- (void)encodeWithCoder:(NSCoder *)coder
{
[coder encodeInt:1 forKey:@"HBVideoVersion"];
encodeInt(_state);
encodeObject(_presetName);
encodeInt(_titleIdx);
encodeObject(_uuid);
encodeObject(_fileURL);
encodeObject(_destURL);
encodeInt(_container);
encodeInt(_angle);
encodeBool(_mp4HttpOptimize);
encodeBool(_mp4iPodCompatible);
encodeObject(_range);
encodeObject(_video);
encodeObject(_picture);
encodeObject(_filters);
encodeObject(_audio);
encodeObject(_subtitles);
encodeBool(_chaptersEnabled);
encodeObject(_chapterTitles);
}
- (id)initWithCoder:(NSCoder *)decoder
{
self = [super init];
decodeInt(_state);
decodeObject(_presetName);
decodeInt(_titleIdx);
decodeObject(_uuid);
decodeObject(_fileURL);
decodeObject(_destURL);
decodeInt(_container);
decodeInt(_angle);
decodeBool(_mp4HttpOptimize);
decodeBool(_mp4iPodCompatible);
decodeObject(_range);
decodeObject(_video);
decodeObject(_picture);
decodeObject(_filters);
_video.job = self;
decodeObject(_audio);
decodeObject(_subtitles);
decodeBool(_chaptersEnabled);
decodeObject(_chapterTitles);
return self;
}
@end
|