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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
|
/* $Id: scan.c,v 1.52 2005/11/25 15:05:25 titer Exp $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.m0k.org/>.
It may be used under the terms of the GNU General Public License. */
#include "hb.h"
#include "a52dec/a52.h"
#include "dca.h"
typedef struct
{
hb_handle_t * h;
char * path;
int title_index;
hb_list_t * list_title;
hb_dvd_t * dvd;
} hb_scan_t;
static void ScanFunc( void * );
static int DecodePreviews( hb_scan_t *, hb_title_t * title );
static void LookForAC3AndDCA( hb_title_t * title, hb_buffer_t * b );
static int AllAC3AndDCAOK( hb_title_t * title );
hb_thread_t * hb_scan_init( hb_handle_t * handle, const char * path,
int title_index, hb_list_t * list_title )
{
hb_scan_t * data = calloc( sizeof( hb_scan_t ), 1 );
data->h = handle;
data->path = strdup( path );
data->title_index = title_index;
data->list_title = list_title;
return hb_thread_init( "scan", ScanFunc, data, HB_NORMAL_PRIORITY );
}
static void ScanFunc( void * _data )
{
hb_scan_t * data = (hb_scan_t *) _data;
hb_title_t * title;
int i;
/* Try to open the path as a DVD. If it fails, try as a file */
hb_log( "scan: trying to open with libdvdread" );
if( ( data->dvd = hb_dvd_init( data->path ) ) )
{
hb_log( "scan: DVD has %d title(s)",
hb_dvd_title_count( data->dvd ) );
if( data->title_index )
{
/* Scan this title only */
hb_list_add( data->list_title, hb_dvd_title_scan( data->dvd,
data->title_index ) );
}
else
{
/* Scan all titles */
for( i = 0; i < hb_dvd_title_count( data->dvd ); i++ )
{
hb_list_add( data->list_title,
hb_dvd_title_scan( data->dvd, i + 1 ) );
}
}
}
else
{
/* Open as a VOB file */
FILE * file;
hb_log( "scan: trying to open as VOB file" );
file = fopen( data->path, "rb" );
if( file )
{
/* XXX */
fclose( file );
}
else
{
hb_log( "scan: fopen failed" );
return;
}
}
for( i = 0; i < hb_list_count( data->list_title ); )
{
int j;
hb_state_t state;
hb_audio_t * audio;
hb_title_t * title_tmp = NULL;
title = hb_list_item( data->list_title, i );
/* I've seen a DVD with strictly identical titles. Check this
here and ignore it if redundant */
for( j = 0; j < i; j++ )
{
title_tmp = hb_list_item( data->list_title, j );
if( title->vts == title_tmp->vts &&
title->block_start == title_tmp->block_start &&
title->block_end == title_tmp->block_end &&
title->block_count == title_tmp->block_count )
{
break;
}
else
{
title_tmp = NULL;
}
}
if( title_tmp )
{
hb_log( "scan: title %d is duplicate with title %d",
title->index, title_tmp->index );
hb_list_rem( data->list_title, title );
free( title ); /* This _will_ leak! */
continue;
}
#define p state.param.scanning
/* Update the UI */
state.state = HB_STATE_SCANNING;
p.title_cur = title->index;
p.title_count = hb_dvd_title_count( data->dvd );
hb_set_state( data->h, &state );
#undef p
/* Decode previews */
/* this will also detect more AC3 / DTS information */
if( !DecodePreviews( data, title ) )
{
/* TODO: free things */
hb_list_rem( data->list_title, title );
continue;
}
/* Make sure we found AC3 / DCA rates and bitrates */
for( j = 0; j < hb_list_count( title->list_audio ); )
{
audio = hb_list_item( title->list_audio, j );
if( ( audio->codec == HB_ACODEC_AC3 || audio->codec == HB_ACODEC_DCA ) &&
!audio->bitrate )
{
hb_log( "scan: removing audio with codec of 0x%x because of no bitrate",
audio->codec );
hb_list_rem( title->list_audio, audio );
free( audio );
continue;
}
j++;
}
/* Do we still have audio */
if( !hb_list_count( title->list_audio ) )
{
hb_list_rem( data->list_title, title );
free( title );
continue;
}
/* set a default input channel layout of stereo for LPCM or MPEG2 audio */
/* AC3 and DCA will already have had their layout set via DecodePreviews above, */
/* which calls LookForAC3AndDCA */
for( j = 0; j < hb_list_count( title->list_audio ); j++ )
{
audio = hb_list_item( title->list_audio, j );
if( audio->codec == HB_ACODEC_LPCM || audio->codec == HB_ACODEC_MPGA )
{
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_STEREO;
}
}
i++;
}
/* Init jobs templates */
for( i = 0; i < hb_list_count( data->list_title ); i++ )
{
hb_job_t * job;
title = hb_list_item( data->list_title, i );
job = calloc( sizeof( hb_job_t ), 1 );
title->job = job;
job->title = title;
/* Set defaults settings */
job->chapter_start = 1;
job->chapter_end = hb_list_count( title->list_chapter );
/* Autocrop by default. Gnark gnark */
memcpy( job->crop, title->crop, 4 * sizeof( int ) );
if( title->aspect == 16 )
{
hb_reduce( &job->pixel_aspect_width, &job->pixel_aspect_height,
16 * title->height, 9 * title->width );
}
else
{
hb_reduce( &job->pixel_aspect_width, &job->pixel_aspect_height,
4 * title->height, 3 * title->width );
}
job->width = title->width - job->crop[2] - job->crop[3];
// job->height = title->height - job->crop[0] - job->crop[1];
hb_fix_aspect( job, HB_KEEP_WIDTH );
if( job->height > title->height - job->crop[0] - job->crop[1] )
{
job->height = title->height - job->crop[0] - job->crop[1];
hb_fix_aspect( job, HB_KEEP_HEIGHT );
}
hb_log( "scan: title (%d) job->width:%d, job->height:%d",
i,job->width, job->height );
job->keep_ratio = 1;
job->vcodec = HB_VCODEC_FFMPEG;
job->vquality = -1.0;
job->vbitrate = 1000;
job->pass = 0;
job->vrate = title->rate;
job->vrate_base = title->rate_base;
job->audios[0] = 0;
job->audios[1] = -1;
job->acodec = HB_ACODEC_FAAC;
job->abitrate = 128;
job->arate = 44100;
job->subtitle = -1;
job->mux = HB_MUX_MP4;
}
if( data->dvd )
{
hb_dvd_close( &data->dvd );
}
free( data->path );
free( data );
_data = NULL;
}
/***********************************************************************
* DecodePreviews
***********************************************************************
* Decode 10 pictures for the given title.
* It assumes that data->reader and data->vts have successfully been
* DVDOpen()ed and ifoOpen()ed.
**********************************************************************/
static int DecodePreviews( hb_scan_t * data, hb_title_t * title )
{
int i, ret;
hb_buffer_t * buf_ps, * buf_es, * buf_raw;
hb_list_t * list_es, * list_raw;
hb_libmpeg2_t * mpeg2;
buf_ps = hb_buffer_init( 2048 );
list_es = hb_list_init();
list_raw = hb_list_init();
hb_log( "scan: decoding previews for title %d", title->index );
hb_dvd_start( data->dvd, title->index, 1 );
for( i = 0; i < 10; i++ )
{
int j, k;
FILE * file_preview;
char filename[1024];
if( !hb_dvd_seek( data->dvd, (float) ( i + 1 ) / 11.0 ) )
{
goto error;
}
hb_log( "scan: preview %d", i + 1 );
mpeg2 = hb_libmpeg2_init();
for( j = 0; j < 10240 ; j++ )
{
if( !hb_dvd_read( data->dvd, buf_ps ) )
{
goto error;
}
hb_demux_ps( buf_ps, list_es );
while( ( buf_es = hb_list_item( list_es, 0 ) ) )
{
hb_list_rem( list_es, buf_es );
if( buf_es->id == 0xE0 && !hb_list_count( list_raw ) )
{
hb_libmpeg2_decode( mpeg2, buf_es, list_raw );
}
else if( !i )
{
LookForAC3AndDCA( title, buf_es );
}
hb_buffer_close( &buf_es );
if( hb_list_count( list_raw ) &&
( i || AllAC3AndDCAOK( title ) ) )
{
/* We got a picture */
break;
}
}
if( hb_list_count( list_raw ) &&
( i || AllAC3AndDCAOK( title ) ) )
{
break;
}
}
if( !hb_list_count( list_raw ) )
{
hb_log( "scan: could not get a decoded picture" );
goto error;
}
if( !i )
{
/* Get size and rate infos */
title->rate = 27000000;
hb_libmpeg2_info( mpeg2, &title->width, &title->height,
&title->rate_base );
title->crop[0] = title->crop[1] = title->height / 2;
title->crop[2] = title->crop[3] = title->width / 2;
}
hb_libmpeg2_close( &mpeg2 );
while( ( buf_es = hb_list_item( list_es, 0 ) ) )
{
hb_list_rem( list_es, buf_es );
hb_buffer_close( &buf_es );
}
buf_raw = hb_list_item( list_raw, 0 );
hb_get_tempory_filename( data->h, filename, "%x%d",
(intptr_t)title, i );
file_preview = fopen( filename, "w" );
if( file_preview )
{
fwrite( buf_raw->data, title->width * title->height * 3 / 2,
1, file_preview );
fclose( file_preview );
}
else
{
hb_log( "scan: fopen failed (%s)", filename );
}
#define Y buf_raw->data
#define DARK 64
/* Detect black borders */
for( j = 0; j < title->width; j++ )
{
for( k = 0; k < title->crop[0]; k++ )
if( Y[ k * title->width + j ] > DARK )
{
title->crop[0] = k;
break;
}
for( k = 0; k < title->crop[1]; k++ )
if( Y[ ( title->height - k - 1 ) *
title->width + j ] > DARK )
{
title->crop[1] = k;
break;
}
}
for( j = 0; j < title->height; j++ )
{
for( k = 0; k < title->crop[2]; k++ )
if( Y[ j * title->width + k ] > DARK )
{
title->crop[2] = k;
break;
}
for( k = 0; k < title->crop[3]; k++ )
if( Y[ j * title->width +
title->width - k - 1 ] > DARK )
{
title->crop[3] = k;
break;
}
}
while( ( buf_raw = hb_list_item( list_raw, 0 ) ) )
{
hb_list_rem( list_raw, buf_raw );
hb_buffer_close( &buf_raw );
}
}
title->crop[0] = EVEN( title->crop[0] );
title->crop[1] = EVEN( title->crop[1] );
title->crop[2] = EVEN( title->crop[2] );
title->crop[3] = EVEN( title->crop[3] );
hb_log( "scan: %dx%d, %.3f fps, autocrop = %d/%d/%d/%d",
title->width, title->height, (float) title->rate /
(float) title->rate_base, title->crop[0], title->crop[1],
title->crop[2], title->crop[3] );
ret = 1;
goto cleanup;
error:
ret = 0;
cleanup:
hb_buffer_close( &buf_ps );
while( ( buf_es = hb_list_item( list_es, 0 ) ) )
{
hb_list_rem( list_es, buf_es );
hb_buffer_close( &buf_es );
}
hb_list_close( &list_es );
while( ( buf_raw = hb_list_item( list_raw, 0 ) ) )
{
hb_list_rem( list_raw, buf_raw );
hb_buffer_close( &buf_raw );
}
hb_list_close( &list_raw );
hb_dvd_stop( data->dvd );
return ret;
}
static void LookForAC3AndDCA( hb_title_t * title, hb_buffer_t * b )
{
int i;
int flags;
int rate;
int bitrate;
int frame_length;
dca_state_t * state;
/* Figure out if this is a AC3 or DCA buffer for a known track */
hb_audio_t * audio = NULL;
for( i = 0; i < hb_list_count( title->list_audio ); i++ )
{
audio = hb_list_item( title->list_audio, i );
/* check if we have an AC3 or DCA which we recognise */
if( ( audio->codec == HB_ACODEC_AC3 || audio->codec == HB_ACODEC_DCA ) &&
audio->id == b->id )
{
break;
}
else
{
audio = NULL;
}
}
if( !audio )
{
return;
}
if( audio->bitrate )
{
/* Already done for this track */
return;
}
for( i = 0; i < b->size - 7; i++ )
{
if ( audio->codec == HB_ACODEC_AC3 )
{
/* check for a52 */
if( a52_syncinfo( &b->data[i], &flags, &rate, &bitrate ) )
{
hb_log( "scan: AC3, rate=%dHz, bitrate=%d", rate, bitrate );
audio->rate = rate;
audio->bitrate = bitrate;
switch( flags & A52_CHANNEL_MASK )
{
/* mono sources */
case A52_MONO:
case A52_CHANNEL1:
case A52_CHANNEL2:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_MONO;
break;
/* stereo input */
case A52_CHANNEL:
case A52_STEREO:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_STEREO;
break;
/* dolby (DPL1 aka Dolby Surround = 4.0 matrix-encoded) input */
case A52_DOLBY:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_DOLBY;
break;
/* 3F/2R input */
case A52_3F2R:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_3F2R;
break;
/* 3F/1R input */
case A52_3F1R:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_3F1R;
break;
/* other inputs */
case A52_3F:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_3F;
break;
case A52_2F1R:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_2F1R;
break;
case A52_2F2R:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_2F2R;
break;
/* unknown */
default:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_STEREO;
}
/* add in our own LFE flag if the source has LFE */
if (flags & A52_LFE)
{
audio->input_channel_layout = audio->input_channel_layout | HB_INPUT_CH_LAYOUT_HAS_LFE;
}
/* store the AC3 flags for future reference
This enables us to find out if we had a stereo or Dolby source later on */
audio->config.a52.ac3flags = flags;
/* store the ac3 flags in the public ac3flags property too, so we can access it from the GUI */
audio->ac3flags = audio->config.a52.ac3flags;
/* XXX */
if ( (flags & A52_CHANNEL_MASK) == A52_DOLBY ) {
sprintf( audio->lang + strlen( audio->lang ),
" (Dolby Surround)" );
} else {
sprintf( audio->lang + strlen( audio->lang ),
" (%d.%d ch)",
HB_INPUT_CH_LAYOUT_GET_DISCRETE_FRONT_COUNT(audio->input_channel_layout) +
HB_INPUT_CH_LAYOUT_GET_DISCRETE_REAR_COUNT(audio->input_channel_layout),
HB_INPUT_CH_LAYOUT_GET_DISCRETE_LFE_COUNT(audio->input_channel_layout));
}
break;
}
}
else if ( audio->codec == HB_ACODEC_DCA )
{
hb_log( "scan: checking for DCA syncinfo" );
/* check for dca */
state = dca_init( 0 );
if( dca_syncinfo( state, &b->data[i], &flags, &rate, &bitrate, &frame_length ) )
{
hb_log( "scan: DCA, rate=%dHz, bitrate=%d", rate, bitrate );
audio->rate = rate;
audio->bitrate = bitrate;
switch( flags & DCA_CHANNEL_MASK )
{
/* mono sources */
case DCA_MONO:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_MONO;
break;
/* stereo input */
case DCA_CHANNEL:
case DCA_STEREO:
case DCA_STEREO_SUMDIFF:
case DCA_STEREO_TOTAL:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_STEREO;
break;
/* 3F/2R input */
case DCA_3F2R:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_3F2R;
break;
/* 3F/1R input */
case DCA_3F1R:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_3F1R;
break;
/* other inputs */
case DCA_3F:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_3F;
break;
case DCA_2F1R:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_2F1R;
break;
case DCA_2F2R:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_2F2R;
break;
case DCA_4F2R:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_4F2R;
break;
/* unknown */
default:
audio->input_channel_layout = HB_INPUT_CH_LAYOUT_STEREO;
}
/* add in our own LFE flag if the source has LFE */
if (flags & DCA_LFE)
{
audio->input_channel_layout = audio->input_channel_layout | HB_INPUT_CH_LAYOUT_HAS_LFE;
}
/* store the DCA flags for future reference
This enables us to find out if we had a stereo or Dolby source later on */
audio->config.dca.dcaflags = flags;
/* store the dca flags in the public dcaflags property too, so we can access it from the GUI */
audio->dcaflags = audio->config.dca.dcaflags;
/* XXX */
if ( (flags & DCA_CHANNEL_MASK) == DCA_DOLBY ) {
sprintf( audio->lang + strlen( audio->lang ),
" (Dolby Surround)" );
} else {
sprintf( audio->lang + strlen( audio->lang ),
" (%d.%d ch)",
HB_INPUT_CH_LAYOUT_GET_DISCRETE_FRONT_COUNT(audio->input_channel_layout) +
HB_INPUT_CH_LAYOUT_GET_DISCRETE_REAR_COUNT(audio->input_channel_layout),
HB_INPUT_CH_LAYOUT_GET_DISCRETE_LFE_COUNT(audio->input_channel_layout));
}
break;
}
}
}
}
static int AllAC3AndDCAOK( hb_title_t * title )
{
int i;
hb_audio_t * audio;
for( i = 0; i < hb_list_count( title->list_audio ); i++ )
{
audio = hb_list_item( title->list_audio, i );
if( ( audio->codec == HB_ACODEC_AC3 || audio->codec == HB_ACODEC_DCA ) &&
!audio->bitrate )
{
return 0;
}
}
return 1;
}
|