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
|
/* HBPreviewGenerator.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 "HBPreviewGenerator.h"
#import "HBUtilities.h"
#import "HBCore.h"
#import "Controller.h"
typedef enum EncodeState : NSUInteger {
EncodeStateIdle,
EncodeStateWorking,
EncodeStateCancelled,
} EncodeState;
@interface HBPreviewGenerator ()
@property (nonatomic, readonly, retain) NSMutableDictionary *picturePreviews;
@property (nonatomic, readonly) NSUInteger imagesCount;
@property (nonatomic, readonly) hb_handle_t *handle;
@property (nonatomic, readonly) hb_title_t *title;
@property (nonatomic) HBCore *core;
@property (nonatomic, getter=isCancelled) BOOL cancelled;
@property (nonatomic, retain) NSURL *fileURL;
@end
@implementation HBPreviewGenerator
- (id) initWithHandle: (hb_handle_t *) handle andTitle: (hb_title_t *) title
{
self = [super init];
if (self)
{
_handle = handle;
_title = title;
_picturePreviews = [[NSMutableDictionary alloc] init];
_imagesCount = [[[NSUserDefaults standardUserDefaults] objectForKey:@"PreviewsNumber"] intValue];
}
return self;
}
#pragma mark -
#pragma mark Preview images
/**
* Returns the picture preview at the specified index
*
* @param index picture index in title.
*/
- (NSImage *) imageAtIndex: (NSUInteger) index shouldCache: (BOOL) cache
{
if (index >= self.imagesCount)
return nil;
// The preview for the specified index may not currently exist, so this method
// generates it if necessary.
NSImage *theImage = [self.picturePreviews objectForKey:@(index)];
if (!theImage)
{
theImage = [HBPreviewGenerator makeImageForPicture:index
libhb:self.handle
title:self.title
deinterlace:self.deinterlace];
if (cache && theImage)
[self.picturePreviews setObject:theImage forKey:@(index)];
}
return theImage;
}
/**
* Purges all images from the cache. The next call to imageAtIndex: will cause a new
* image to be generated.
*/
- (void) purgeImageCache
{
[self.picturePreviews removeAllObjects];
}
/**
* This function converts an image created by libhb (specified via pictureIndex) into
* an NSImage suitable for the GUI code to use. If removeBorders is YES,
* makeImageForPicture crops the image generated by libhb stripping off the gray
* border around the content. This is the low-level method that generates the image.
* -imageForPicture calls this function whenever it can't find an image in its cache.
*
* @param pictureIndex Index in title.
* @param handle Handle to hb_handle_t.
* @param title Handle to hb_title_t of desired title.
* @param deinterlace Whether the preview image must be deinterlaced or not.
*/
+ (NSImage *) makeImageForPicture: (NSUInteger) pictureIndex
libhb: (hb_handle_t *) handle
title: (hb_title_t *) title
deinterlace: (BOOL) deinterlace
{
NSImage *img = nil;
hb_geometry_settings_t geo;
memset(&geo, 0, sizeof(geo));
geo.geometry.width = title->job->width;
geo.geometry.height = title->job->height;
// HBPreviewController will scale the image later,
// ignore the par.
geo.geometry.par.num = 1;
geo.geometry.par.den = 1;
memcpy(geo.crop, title->job->crop, sizeof(int[4]));
hb_image_t *image;
image = hb_get_preview2(handle, title->index, (int)pictureIndex, &geo, deinterlace);
if (image)
{
// Create an NSBitmapImageRep and copy the libhb image into it, converting it from
// libhb's format to one suitable for NSImage.
// The image data returned by hb_get_preview2 is 4 bytes per pixel, BGRA format.
// Alpha is ignored.
NSBitmapImageRep *imgrep = [[[NSBitmapImageRep alloc]
initWithBitmapDataPlanes:nil
pixelsWide:image->width
pixelsHigh:image->height
bitsPerSample:8
samplesPerPixel:3 // ignore alpha
hasAlpha:NO
isPlanar:NO
colorSpaceName:NSCalibratedRGBColorSpace
bitmapFormat:NSAlphaFirstBitmapFormat
bytesPerRow:image->width * 4
bitsPerPixel:32] autorelease];
UInt8 *src_line = image->data;
UInt32 *dst = (UInt32 *)[imgrep bitmapData];
for (int r = 0; r < image->height; r++)
{
UInt32 *src = (UInt32 *)src_line;
for (int c = 0; c < image->width; c++)
{
#if TARGET_RT_LITTLE_ENDIAN
*dst++ = Endian32_Swap(*src++);
#else
*dst++ = *src++;
#endif
}
src_line += image->plane[0].stride;
}
img = [[[NSImage alloc] initWithSize: NSMakeSize(image->width, image->height)] autorelease];
[img addRepresentation:imgrep];
}
hb_image_close(&image);
return img;
}
#pragma mark -
#pragma mark Preview movie
+ (NSURL *) generateFileURLForType:(NSString *) type
{
NSString *previewDirectory = [NSString stringWithFormat:@"%@/Previews/%d", [HBUtilities appSupportPath], getpid()];
if (![[NSFileManager defaultManager] fileExistsAtPath:previewDirectory])
{
if (![[NSFileManager defaultManager] createDirectoryAtPath:previewDirectory
withIntermediateDirectories:NO
attributes:nil
error:nil])
return nil;
}
return [[NSURL fileURLWithPath:previewDirectory]
URLByAppendingPathComponent:[NSString stringWithFormat:@"preview_temp.%@", type]];
}
/**
* This function start the encode of a movie preview, the delegate will be
* called with the updated the progress info and the fileURL.
* The called must call HBController prepareJobForPreview before this.
*
* @param index picture index in title.
* @param duration the duration in seconds of the preview movie.
*/
- (BOOL) createMovieAsyncWithImageIndex: (NSUInteger) index andDuration: (NSUInteger) duration;
{
/* return if an encoding if already started */
if (self.core || index >= self.imagesCount)
return NO;
hb_job_t *job = self.title->job;
/* Generate the file url and directories. */
if (job->mux & HB_MUX_MASK_MP4)
{
/* we use .m4v for our mp4 files so that ac3 and chapters in mp4 will play properly */
self.fileURL = [HBPreviewGenerator generateFileURLForType:@"m4v"];
}
else if (job->mux & HB_MUX_MASK_MKV)
{
self.fileURL = [HBPreviewGenerator generateFileURLForType:@"mkv"];
}
/* return if we couldn't get the fileURL */
if (!self.fileURL)
return NO;
/* See if there is an existing preview file, if so, delete it */
if (![[NSFileManager defaultManager] fileExistsAtPath:[self.fileURL path]])
{
[[NSFileManager defaultManager] removeItemAtPath:[self.fileURL path] error:NULL];
}
/* We now direct our preview encode to fileURL path */
hb_job_set_file(job, [[self.fileURL path] UTF8String]);
/* We use our advance pref to determine how many previews to scan */
job->start_at_preview = (int)index + 1;
job->seek_points = (int)self.imagesCount;
job->pts_to_stop = duration * 90000LL;
/* lets go ahead and send it off to libhb
* Note: unlike a full encode, we only send 1 pass regardless if the final encode calls for 2 passes.
* this should suffice for a fairly accurate short preview and cuts our preview generation time in half.
* However we also need to take into account the indepth scan for subtitles.
*/
int loggingLevel = [[[NSUserDefaults standardUserDefaults] objectForKey:@"LoggingLevel"] intValue];
self.core = [[[HBCore alloc] initWithLoggingLevel:loggingLevel] autorelease];
/*
* If scanning we need to do some extra setup of the job.
*/
if (job->indepth_scan == 1)
{
char *encoder_preset_tmp = job->encoder_preset != NULL ? strdup(job->encoder_preset) : NULL;
char *encoder_tune_tmp = job->encoder_tune != NULL ? strdup(job->encoder_tune) : NULL;
char *encoder_options_tmp = job->encoder_options != NULL ? strdup(job->encoder_options) : NULL;
char *encoder_profile_tmp = job->encoder_profile != NULL ? strdup(job->encoder_profile) : NULL;
char *encoder_level_tmp = job->encoder_level != NULL ? strdup(job->encoder_level) : NULL;
/*
* When subtitle scan is enabled do a fast pre-scan job
* which will determine which subtitles to enable, if any.
*/
hb_job_set_encoder_preset (job, NULL);
hb_job_set_encoder_tune (job, NULL);
hb_job_set_encoder_options(job, NULL);
hb_job_set_encoder_profile(job, NULL);
hb_job_set_encoder_level (job, NULL);
job->pass = -1;
hb_add(self.core.hb_handle, job);
/*
* reset the advanced settings
*/
hb_job_set_encoder_preset (job, encoder_preset_tmp);
hb_job_set_encoder_tune (job, encoder_tune_tmp);
hb_job_set_encoder_options(job, encoder_options_tmp);
hb_job_set_encoder_profile(job, encoder_profile_tmp);
hb_job_set_encoder_level (job, encoder_level_tmp);
free(encoder_preset_tmp);
free(encoder_tune_tmp);
free(encoder_options_tmp);
free(encoder_profile_tmp);
free(encoder_level_tmp);
}
/* Go ahead and perform the actual encoding preview scan */
job->indepth_scan = 0;
job->pass = 0;
hb_add(self.core.hb_handle, job);
/* we need to clean up the various lists after the job(s) have been set */
hb_job_reset(job);
[self registerCoreNotifications];
self.cancelled = NO;
/* start the actual encode */
[self.core start];
return YES;
}
/**
* Cancels the encoding process
*/
- (void) cancel
{
if (self.core)
{
if (self.core.state == HBStateWorking || self.core.state == HBStatePaused)
{
[self.core stop];
self.cancelled = YES;
}
}
}
/**
* Registers for notifications from HBCore.
*/
- (void) registerCoreNotifications
{
NSOperationQueue *mainQueue = [NSOperationQueue mainQueue];
[[NSNotificationCenter defaultCenter] addObserverForName:HBCoreWorkingNotification object:self.core queue:mainQueue usingBlock:^(NSNotification *note) {
hb_state_t s = *(self.core.hb_state);
NSMutableString *info = [NSMutableString stringWithFormat: @"Encoding preview: %.2f %%", 100.0 * s.param.working.progress];
if (s.param.working.seconds > -1)
{
[info appendFormat:@" (%.2f fps, avg %.2f fps, ETA %02dh%02dm%02ds)",
s.param.working.rate_cur, s.param.working.rate_avg, s.param.working.hours,
s.param.working.minutes, s.param.working.seconds];
}
double progress = 100.0 * s.param.working.progress;
[self.delegate updateProgress:progress info:info];
}];
[[NSNotificationCenter defaultCenter] addObserverForName:HBCoreMuxingNotification object:self.core queue:mainQueue usingBlock:^(NSNotification *note) {
[self.delegate updateProgress:100.0 info:@"Muxing Preview…"];
}];
[[NSNotificationCenter defaultCenter] addObserverForName:HBCoreWorkDoneNotification object:self.core queue:mainQueue usingBlock:^(NSNotification *note) {
[self.core stop];
self.core = nil;
/* Encode done, call the delegate and close libhb handle */
if (!self.isCancelled)
{
[self.delegate didCreateMovieAtURL:self.fileURL];
}
else
{
[self.delegate didCancelMovieCreation];
}
[[NSNotificationCenter defaultCenter] removeObserver:self];
}];
}
#pragma mark -
- (void) dealloc
{
[self.core stop];
self.core = nil;
[_fileURL release];
_fileURL = nil;
[_picturePreviews release];
_picturePreviews = nil;
[super dealloc];
}
@end
|