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
|
#include "QueueController.h"
@implementation QueueController
- (void) SetHandle: (hb_handle_t *) handle
{
fHandle = handle;
}
- (void) AddTextField: (NSString *) string rect: (NSRect *) rect
{
NSTextField * textField;
rect->origin.x = 0;
rect->origin.y -= 15;
rect->size.width = 700;
rect->size.height = 15;
textField = [[NSTextField alloc] initWithFrame: *rect];
[textField setEditable: NO];
[textField setSelectable: NO];
[textField setDrawsBackground: NO];
[textField setBordered: NO];
[textField setFont: [NSFont systemFontOfSize:[NSFont smallSystemFontSize]]];
[textField setStringValue: string];
[fTaskView addSubview: textField];
}
- (void) removeTask: (id) sender
{
hb_rem( fHandle, hb_job( fHandle, [sender tag] ) );
[self performSelectorOnMainThread: @selector( Update: )
withObject: sender waitUntilDone: NO];
}
- (void) AddButton: (NSRect *) rect tag: (int) tag
{
NSButton * button;
rect->origin.x = rect->size.width - 60;
rect->origin.y -= 20;
rect->size.width = 60;
rect->size.height = 20;
button = [[NSButton alloc] initWithFrame: *rect];
rect->size.width = rect->origin.x + 90;
[button setTitle: @"Remove"];
[button setBezelStyle: NSRoundedBezelStyle];
[button setFont: [NSFont systemFontOfSize:
[NSFont systemFontSizeForControlSize: NSMiniControlSize]]];
[[button cell] setControlSize: NSMiniControlSize];
[button setTag: tag];
[button setTarget: self];
[button setAction: @selector( removeTask: )];
[fTaskView addSubview: button];
NSBox * box;
rect->origin.x = 15;
rect->origin.y -= 10;
rect->size.width -= 10;
rect->size.height = 1;
box = [[NSBox alloc] initWithFrame: *rect];
[box setBoxType: NSBoxSeparator];
rect->origin.y -= 10;
rect->size.width -= 30;
[fTaskView addSubview: box];
}
- (IBAction) Update: (id) sender
{
int i;
hb_job_t * j;
hb_title_t * title;
NSSize size = [fScrollView contentSize];
int height = MAX( 20 + 145 * hb_count( fHandle ), size.height );
[fTaskView setFrame: NSMakeRect(0,0,size.width,height)];
NSRect rect = NSMakeRect(10,height-10,size.width-20,10);
NSArray * subviews = [fTaskView subviews];
while( [subviews count] > 0 )
{
[[subviews objectAtIndex: 0]
removeFromSuperviewWithoutNeedingDisplay];
}
for( i = 0; i < hb_count( fHandle ); i++ )
{
j = hb_job( fHandle, i );
title = j->title;
/* show the name of the source Note: use title->name instead of
title->dvd since name is just the chosen folder, instead of dvd which is the full path*/
[self AddTextField: [NSString stringWithFormat:
@"Task: %d Source: %s, Title %d, Chapters %d-%d Pass: %d of %d",i+1, title->name, title->index , j->chapter_start, j->chapter_end,MAX( 1, j->pass ), MIN( 2, j->pass + 1 )] rect: &rect]; /* Muxer settings (File Format in the gui) */
if (j->mux == 65536 || j->mux == 131072 || j->mux == 1048576)
{
jobFormat = @"MP4"; // HB_MUX_MP4,HB_MUX_PSP,HB_MUX_IPOD
}
if (j->mux == 262144)
{
jobFormat = @"AVI"; // HB_MUX_AVI
}
if (j->mux == 524288)
{
jobFormat = @"OGM"; // HB_MUX_OGM
}
if (j->mux == 2097152)
{
jobFormat = @"MKV"; // HB_MUX_MKV
}
// 2097152
/* Video Codec settings (Encoder in the gui) */
if (j->vcodec == 1)
{
jobVideoCodec = @"FFmpeg"; // HB_VCODEC_FFMPEG
}
if (j->vcodec == 2)
{
jobVideoCodec = @"XviD"; // HB_VCODEC_XVID
}
if (j->vcodec == 4)
{
/* Deterimine for sure how we are now setting iPod uuid atom */
if (j->h264_level) // We are encoding for iPod
{
jobVideoCodec = @"x264 (H.264 iPod)"; // HB_VCODEC_X264
}
else
{
jobVideoCodec = @"x264 (H.264 Main)"; // HB_VCODEC_X264
}
}
/* Audio Codecs (Second half of Codecs in the gui) */
if (j->acodec == 256)
{
jobAudioCodec = @"AAC"; // HB_ACODEC_FAAC
}
if (j->acodec == 512)
{
jobAudioCodec = @"MP3"; // HB_ACODEC_LAME
}
if (j->acodec == 1024)
{
jobAudioCodec = @"Vorbis"; // HB_ACODEC_VORBIS
}
if (j->acodec == 2048)
{
jobAudioCodec = @"AC3"; // HB_ACODEC_AC3
}
/* Show Basic File info */
if (j->chapter_markers == 1)
{
[self AddTextField: [NSString stringWithFormat: @"Format: %@ Container, %@ Video + %@ Audio, Chapter Markers", jobFormat, jobVideoCodec, jobAudioCodec]
rect: &rect];
}
else
{
[self AddTextField: [NSString stringWithFormat: @"Format: %@ Container, %@ Video + %@ Audio", jobFormat, jobVideoCodec, jobAudioCodec]
rect: &rect];
}
/*Picture info*/
/*integers for picture values deinterlace, crop[4], keep_ratio, grayscale, pixel_ratio, pixel_aspect_width, pixel_aspect_height,
maxWidth, maxHeight */
if (j->pixel_ratio == 1)
{
int titlewidth = title->width - j->crop[2] - j->crop[3];
int displayparwidth = titlewidth * j->pixel_aspect_width / j->pixel_aspect_height;
int displayparheight = title->height - j->crop[0] - j->crop[1];
jobPictureDetail = [NSString stringWithFormat: @"Picture: %dx%d (%dx%d Anamorphic)", displayparwidth, displayparheight, j->width, displayparheight];
}
else
{
jobPictureDetail = [NSString stringWithFormat: @"Picture: %dx%d", j->width, j->height];
}
if (j->keep_ratio == 1)
{
jobPictureDetail = [jobPictureDetail stringByAppendingString: @" Keep Aspect Ratio"];
}
if (j->grayscale == 1)
{
jobPictureDetail = [jobPictureDetail stringByAppendingString: @", Grayscale"];
}
if (j->deinterlace == 1)
{
jobPictureDetail = [jobPictureDetail stringByAppendingString: @", Deinterlace"];
}
/* Show Picture info */
[self AddTextField: [NSString stringWithFormat: @"%@", jobPictureDetail]rect: &rect];
/* Detailed Video info */
if (j->vquality <= 0 || j->vquality >= 1)
{
jobVideoQuality =[NSString stringWithFormat: @"%d kbps", j->vbitrate];
}
else
{
NSNumber * vidQuality;
vidQuality = [NSNumber numberWithInt: j->vquality * 100];
/* this is screwed up kind of. Needs to be formatted properly */
if (j->crf == 1)
{
jobVideoQuality =[NSString stringWithFormat: @"%@%% CRF", vidQuality];
}
else
{
jobVideoQuality =[NSString stringWithFormat: @"%@%% CQP", vidQuality];
}
}
if (j->vrate_base == 1126125)
{
/* NTSC FILM 23.976 */
jobVideoDetail = [NSString stringWithFormat:@"Video: %@, %@, 23.976 fps", jobVideoCodec, jobVideoQuality];
}
else if (j->vrate_base == 900900)
{
/* NTSC 29.97 */
jobVideoDetail = [NSString stringWithFormat:@"Video: %@, %@, 29.97 fps", jobVideoCodec, jobVideoQuality];
}
else
{
/* Everything else */
jobVideoDetail = [NSString stringWithFormat:@"Video: %@, %@, %d fps", jobVideoCodec, jobVideoQuality, j->vrate / j->vrate_base];
}
/* Add the video detail string to the job filed in the window */
[self AddTextField: [NSString stringWithFormat:@"%@", jobVideoDetail] rect: &rect];
/* if there is an x264 option string, lets add it here*/
/*NOTE: Due to size, lets get this in a tool tip*/
if (j->x264opts)
{
[self AddTextField: [NSString stringWithFormat:@"x264 Options: %@", [NSString stringWithUTF8String:j->x264opts]] rect: &rect];
}
/* Audio Detail */
if ([jobAudioCodec isEqualToString: @"AC3"])
{
jobAudioDetail = [NSString stringWithFormat:@"Audio: %@, Pass-Through", jobAudioCodec];
}
else
{
jobAudioDetail = [NSString stringWithFormat:@"Audio: %@, %d kbps, %d Hz", jobAudioCodec, j->abitrate, j->arate];
}
/* we now get the audio mixdown info for each of the two gui audio tracks */
/* lets do it the long way here to get a handle on things.
Hardcoded for two tracks for gui: audio_mixdowns[i] audio_mixdowns[i] */
int ai; // counter for each audios [] , macgui only allows for two audio tracks currently
for( ai = 0; ai < 2; ai++ )
{
if (j->audio_mixdowns[ai] == HB_AMIXDOWN_MONO)
{
jobAudioDetail = [jobAudioDetail stringByAppendingString: [NSString stringWithFormat:@", Track %d: Mono",ai + 1]];
}
if (j->audio_mixdowns[ai] == HB_AMIXDOWN_STEREO)
{
jobAudioDetail = [jobAudioDetail stringByAppendingString: [NSString stringWithFormat:@", Track %d: Stereo",ai + 1]];
}
if (j->audio_mixdowns[ai] == HB_AMIXDOWN_DOLBY)
{
jobAudioDetail = [jobAudioDetail stringByAppendingString: [NSString stringWithFormat:@", Track %d: Dolby Surround",ai + 1]];
}
if (j->audio_mixdowns[ai] == HB_AMIXDOWN_DOLBYPLII)
{
jobAudioDetail = [jobAudioDetail stringByAppendingString: [NSString stringWithFormat:@", Track %d: Dolby Pro Logic II",ai + 1]];
}
if (j->audio_mixdowns[ai] == HB_AMIXDOWN_6CH)
{
jobAudioDetail = [jobAudioDetail stringByAppendingString: [NSString stringWithFormat:@", Track %d: 6-channel discreet",ai + 1]];
}
}
/* Add the Audio detail string to the job filed in the window */
[self AddTextField: [NSString stringWithFormat:@"%@", jobAudioDetail] rect: &rect];
/*Destination Field */
[self AddTextField: [NSString stringWithFormat: @"Destination: %s", j->file] rect: &rect];
/* Show remove button */
[self AddButton: &rect tag: i];
}
[fTaskView scrollPoint: NSMakePoint(0,height)];
[fTaskView setNeedsDisplay: YES];
}
- (IBAction) ClosePanel: (id) sender
{
[NSApp stopModal];
}
@end
|