OSDN Git Service

"Loose" anamorphic:
[handbrake-jp/handbrake-jp-git.git] / libhb / work.c
1 /* $Id: work.c,v 1.43 2005/03/17 16:38:49 titer Exp $
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.m0k.org/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #include "hb.h"
8 #include "a52dec/a52.h"
9 #include "dca.h"
10
11 typedef struct
12 {
13     hb_list_t * jobs;
14     hb_job_t  ** current_job;
15     int         cpu_count;
16     int       * error;
17     volatile int * die;
18
19 } hb_work_t;
20
21 static void work_func();
22 static void do_job( hb_job_t *, int cpu_count );
23 static void work_loop( void * );
24
25 #define FIFO_CPU_MULT 8
26
27 /**
28  * Allocates work object and launches work thread with work_func.
29  * @param jobs Handle to hb_list_t.
30  * @param cpu_count Humber of CPUs found in system.
31  * @param die Handle to user inititated exit indicator.
32  * @param error Handle to error indicator.
33  */
34 hb_thread_t * hb_work_init( hb_list_t * jobs, int cpu_count,
35                             volatile int * die, int * error, hb_job_t ** job )
36 {
37     hb_work_t * work = calloc( sizeof( hb_work_t ), 1 );
38
39     work->jobs      = jobs;
40     work->current_job = job;
41     work->cpu_count = cpu_count;
42     work->die       = die;
43     work->error     = error;
44
45     return hb_thread_init( "work", work_func, work, HB_LOW_PRIORITY );
46 }
47
48 /**
49  * Iterates through job list and calls do_job for each job.
50  * @param _work Handle work object.
51  */
52 static void work_func( void * _work )
53 {
54     hb_work_t  * work = _work;
55     hb_job_t   * job;
56
57     hb_log( "%d job(s) to process", hb_list_count( work->jobs ) );
58
59     while( !*work->die && ( job = hb_list_item( work->jobs, 0 ) ) )
60     {
61         hb_list_rem( work->jobs, job );
62         job->die = work->die;
63         *(work->current_job) = job;
64         do_job( job, work->cpu_count );
65         *(work->current_job) = NULL;
66     }
67
68     *(work->error) = HB_ERROR_NONE;
69
70     free( work );
71 }
72
73 static hb_work_object_t * getWork( int id )
74 {
75     hb_work_object_t * w;
76     for( w = hb_objects; w; w = w->next )
77     {
78         if( w->id == id )
79         {
80             return w;
81         }
82     }
83     return NULL;
84 }
85
86 /**
87  * Job initialization rountine.
88  * Initializes fifos.
89  * Creates work objects for synchronizer, video decoder, video renderer, video decoder, audio decoder, audio encoder, reader, muxer.
90  * Launches thread for each work object with work_loop.
91  * Loops while monitoring status of work threads and fifos.
92  * Exits loop when conversion is done and fifos are empty.
93  * Closes threads and frees fifos.
94  * @param job Handle work hb_job_t.
95  * @param cpu_count number of CPUs found in system.
96  */
97 static void do_job( hb_job_t * job, int cpu_count )
98 {
99     hb_title_t    * title;
100     int             i, j;
101     hb_work_object_t * w;
102     
103     /* FIXME: This feels really hackish, anything better? */
104     hb_work_object_t * audio_w = NULL;
105     hb_work_object_t * sub_w = NULL;
106
107     hb_audio_t   * audio;
108     hb_subtitle_t * subtitle;
109     int done;
110     unsigned int subtitle_highest = 0;
111     unsigned int subtitle_highest_id = 0;
112     unsigned int subtitle_lowest = -1;
113     unsigned int subtitle_lowest_id = 0;
114     unsigned int subtitle_forced_id = 0;
115     unsigned int subtitle_hit = 0;
116
117     title = job->title;
118
119     job->list_work = hb_list_init();
120
121     hb_log( "starting job" );
122     hb_log( " + device %s", title->dvd );
123     hb_log( " + title %d, chapter(s) %d to %d", title->index,
124             job->chapter_start, job->chapter_end );
125     if ( job->pixel_ratio == 1 )
126     {
127         /* Correct the geometry of the output movie when using PixelRatio */
128         job->height=title->height-job->crop[0]-job->crop[1];
129         job->width=title->width-job->crop[2]-job->crop[3];
130     }
131     else if ( job->pixel_ratio == 2 )
132     {
133
134         /* While keeping the DVD storage aspect, resize the job width and height
135            so they fit into the user's specified dimensions. */
136         hb_set_anamorphic_size(job);
137     }
138
139         /* Keep width and height within these boundaries,
140            but ignore for "loose" anamorphic encodes, for
141            which this stuff is covered in the pixel_ratio
142            section right above.*/
143         if (job->maxHeight && (job->height > job->maxHeight) && (job->pixel_ratio != 2))
144         {
145                 job->height = job->maxHeight;
146                 hb_fix_aspect( job, HB_KEEP_HEIGHT );
147                 hb_log("Height out of bounds, scaling down to %i", job->maxHeight);
148                 hb_log("New dimensions %i * %i", job->width, job->height);
149         }
150         if (job->maxWidth && (job->width > job->maxWidth) && (job->pixel_ratio != 2))
151         {
152                 job->width = job->maxWidth;
153                 hb_fix_aspect( job, HB_KEEP_WIDTH );   
154                 hb_log("Width out of bounds, scaling down to %i", job->maxWidth);
155                 hb_log("New dimensions %i * %i", job->width, job->height);
156         }
157
158     hb_log( " + %dx%d -> %dx%d, crop %d/%d/%d/%d",
159             title->width, title->height, job->width, job->height,
160             job->crop[0], job->crop[1], job->crop[2], job->crop[3] );
161     hb_log( " + grayscale %s", job->grayscale ? "on" : "off" );
162     
163     if( job->filters )
164     {
165         hb_log(" + filters");
166         for( i = 0; i < hb_list_count( job->filters ); i++ )
167         {
168             hb_filter_object_t * filter = hb_list_item( job->filters, i );
169             if (filter->settings)
170                 hb_log("   + %s (%s)", filter->name, filter->settings);
171             else
172                 hb_log("   + %s (default settings)", filter->name);
173         }
174     }
175     
176     if( job->vquality >= 0.0 && job->vquality <= 1.0 )
177     {
178         hb_log( " + %.3f fps, video quality %.2f", (float) job->vrate /
179                 (float) job->vrate_base, job->vquality );
180     }
181     else
182     {
183         hb_log( " + %.3f fps, video bitrate %d kbps, pass %d",
184                 (float) job->vrate / (float) job->vrate_base,
185                 job->vbitrate, job->pass );
186     }
187         hb_log (" + PixelRatio: %d, width:%d, height: %d",job->pixel_ratio,job->width, job->height);
188     job->fifo_mpeg2  = hb_fifo_init( 2048 );
189     job->fifo_raw    = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
190     job->fifo_sync   = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
191     job->fifo_render = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
192     job->fifo_mpeg4  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
193
194     /* Synchronization */
195     hb_list_add( job->list_work, ( w = getWork( WORK_SYNC ) ) );
196     w->fifo_in  = NULL;
197     w->fifo_out = NULL;
198
199     /* Video decoder */
200     hb_list_add( job->list_work, ( w = getWork( WORK_DECMPEG2 ) ) );
201     w->fifo_in  = job->fifo_mpeg2;
202     w->fifo_out = job->fifo_raw;
203
204     /* Video renderer */
205     hb_list_add( job->list_work, ( w = getWork( WORK_RENDER ) ) );
206     w->fifo_in  = job->fifo_sync;
207     w->fifo_out = job->fifo_render;
208
209     /* Video encoder */
210     switch( job->vcodec )
211     {
212         case HB_VCODEC_FFMPEG:
213             hb_log( " + encoder FFmpeg" );
214             w = getWork( WORK_ENCAVCODEC );
215             break;
216         case HB_VCODEC_XVID:
217             hb_log( " + encoder XviD" );
218             w = getWork( WORK_ENCXVID );
219             break;
220         case HB_VCODEC_X264:
221             hb_log( " + encoder x264" );
222             w = getWork( WORK_ENCX264 );
223             break;
224     }
225     w->fifo_in  = job->fifo_render;
226     w->fifo_out = job->fifo_mpeg4;
227     w->config   = &job->config;
228     
229     hb_list_add( job->list_work, w );
230
231     if( job->select_subtitle && !job->indepth_scan ) 
232     {
233         /*
234          * Must be second pass of a two pass with subtitle scan enabled, so
235          * add the subtitle that we found on the first pass for use in this
236          * pass.
237          */
238         if (*(job->select_subtitle))
239         {
240             hb_list_add( title->list_subtitle, *( job->select_subtitle ) );
241         }
242     }
243
244     for( i=0; i < hb_list_count(title->list_subtitle); i++ ) 
245     {
246         subtitle =  hb_list_item( title->list_subtitle, i );
247
248         if( subtitle )
249         {
250             hb_log( " + subtitle %x, %s", subtitle->id, subtitle->lang );
251             
252             subtitle->fifo_in  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
253             subtitle->fifo_raw = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
254             
255             /*
256              * Disable forced subtitles if we didn't find any in the scan
257              * so that we display normal subtitles instead.
258              *
259              * select_subtitle implies that we did a scan.
260              */
261             if( !job->indepth_scan && job->subtitle_force && 
262                 job->select_subtitle ) 
263             {
264                 if( subtitle->forced_hits == 0 )
265                 {
266                     job->subtitle_force = 0;
267                 }
268             }
269
270             if (!job->indepth_scan || job->subtitle_force) {
271                 /*
272                  * Don't add threads for subtitles when we are scanning, unless
273                  * looking for forced subtitles.
274                  */
275                 if( sub_w != NULL )
276                 { 
277                     /*
278                      * Need to copy the prior subtitle structure so that we
279                      * don't overwrite the fifos.
280                      */
281                     sub_w = calloc( sizeof( hb_work_object_t ), 1 );
282                     sub_w = memcpy( sub_w, w, sizeof( hb_work_object_t ));
283                 } else {
284                     w = sub_w = getWork( WORK_DECSUB );
285                 }
286                 hb_list_add( job->list_work, sub_w );
287                 sub_w->fifo_in  = subtitle->fifo_in;
288                 sub_w->fifo_out = subtitle->fifo_raw;
289             }
290         }
291     }
292
293     if( job->acodec & HB_ACODEC_AC3 )
294     {
295         hb_log( " + audio AC3 passthrough" );
296     }
297     else
298     {
299         hb_log( " + audio %d kbps, %d Hz", job->abitrate, job->arate );
300         hb_log( " + encoder %s", ( job->acodec & HB_ACODEC_FAAC ) ?
301                 "faac" : ( ( job->acodec & HB_ACODEC_LAME ) ? "lame" :
302                 "vorbis" ) );
303     }
304
305     /* if we are doing AC3 passthru, then remove any non-AC3 audios from the job */
306     /* otherwise, Bad Things will happen */
307     for( i = 0; i < hb_list_count( title->list_audio ); )
308     {
309         audio = hb_list_item( title->list_audio, i );
310         if( ( job->acodec & HB_ACODEC_AC3 ) && ( audio->codec != HB_ACODEC_AC3 ) )
311         {
312             hb_list_rem( title->list_audio, audio );
313             free( audio );
314             continue;
315         }
316         i++;
317     }
318
319     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
320     {
321         audio = hb_list_item( title->list_audio, i );
322         hb_log( "   + %x, %s", audio->id, audio->lang );
323                         
324                 /* sense-check the current mixdown options */
325
326                 /* log the requested mixdown */
327                 for (j = 0; j < hb_audio_mixdowns_count; j++) {
328                         if (hb_audio_mixdowns[j].amixdown == job->audio_mixdowns[i]) {
329                                 hb_log( "     + Requested mixdown: %s (%s)", hb_audio_mixdowns[j].human_readable_name, hb_audio_mixdowns[j].internal_name );
330                                 break;
331                         }
332                 }
333
334         /* sense-check the requested mixdown */
335
336         /* audioCodecsSupportMono and audioCodecsSupport6Ch are the same for now,
337            but this may change in the future, so they are separated for flexibility */
338         int audioCodecsSupportMono = ((audio->codec == HB_ACODEC_AC3 ||
339             audio->codec == HB_ACODEC_DCA) && (job->acodec == HB_ACODEC_FAAC || job->acodec == HB_ACODEC_VORBIS));
340         int audioCodecsSupport6Ch =  ((audio->codec == HB_ACODEC_AC3 ||
341             audio->codec == HB_ACODEC_DCA) && (job->acodec == HB_ACODEC_FAAC || job->acodec == HB_ACODEC_VORBIS));
342
343         /* find out what the format of our source audio is */
344         switch (audio->input_channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK) {
345         
346             /* mono sources */
347             case HB_INPUT_CH_LAYOUT_MONO:
348                 /* regardless of what stereo mixdown we've requested, a mono source always get mixed down
349                 to mono if we can, and mixed up to stereo if we can't */
350                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 1) {
351                     job->audio_mixdowns[i] = HB_AMIXDOWN_MONO;
352                 } else {
353                     job->audio_mixdowns[i] = HB_AMIXDOWN_STEREO;
354                 }
355                 break;
356
357             /* stereo input */
358             case HB_INPUT_CH_LAYOUT_STEREO:
359                 /* if we've requested a mono mixdown, and it is supported, then do the mix */
360                 /* use stereo if not supported */
361                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 0) {
362                     job->audio_mixdowns[i] = HB_AMIXDOWN_STEREO;
363                 /* otherwise, preserve stereo regardless of if we requested something higher */
364                 } else if (job->audio_mixdowns[i] > HB_AMIXDOWN_STEREO) {
365                     job->audio_mixdowns[i] = HB_AMIXDOWN_STEREO;
366                 }
367                 break;
368
369             /* dolby (DPL1 aka Dolby Surround = 4.0 matrix-encoded) input */
370             /* the A52 flags don't allow for a way to distinguish between DPL1 and DPL2 on a DVD,
371                so we always assume a DPL1 source for A52_DOLBY */
372             case HB_INPUT_CH_LAYOUT_DOLBY:
373                 /* if we've requested a mono mixdown, and it is supported, then do the mix */
374                 /* preserve dolby if not supported */
375                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 0) {
376                     job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBY;
377                 /* otherwise, preserve dolby even if we requested something higher */
378                 /* a stereo mixdown will still be honoured here */
379                 } else if (job->audio_mixdowns[i] > HB_AMIXDOWN_DOLBY) {
380                     job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBY;
381                 }
382                 break;
383
384             /* 3F/2R input */
385             case HB_INPUT_CH_LAYOUT_3F2R:
386                 /* if we've requested a mono mixdown, and it is supported, then do the mix */
387                 /* use dpl2 if not supported */
388                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 0) {
389                     job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBYPLII;
390                 } else {
391                     /* check if we have 3F2R input and also have an LFE - i.e. we have a 5.1 source) */
392                     if (audio->input_channel_layout & HB_INPUT_CH_LAYOUT_HAS_LFE) {
393                         /* we have a 5.1 source */
394                         /* if we requested 6ch, but our audio format doesn't support it, then mix to DPLII instead */
395                         if (job->audio_mixdowns[i] == HB_AMIXDOWN_6CH && audioCodecsSupport6Ch == 0) {
396                             job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBYPLII;
397                         }
398                     } else {
399                         /* we have a 5.0 source, so we can't do 6ch conversion
400                         default to DPL II instead */
401                         if (job->audio_mixdowns[i] > HB_AMIXDOWN_DOLBYPLII) {
402                             job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBYPLII;
403                         }
404                     }
405                 }
406                 /* all other mixdowns will have been preserved here */
407                 break;
408
409             /* 3F/1R input */
410             case HB_INPUT_CH_LAYOUT_3F1R:
411                 /* if we've requested a mono mixdown, and it is supported, then do the mix */
412                 /* use dpl1 if not supported */
413                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 0) {
414                     job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBY;
415                 } else {
416                     /* we have a 4.0 or 4.1 source, so we can't do DPLII or 6ch conversion
417                     default to DPL I instead */
418                     if (job->audio_mixdowns[i] > HB_AMIXDOWN_DOLBY) {
419                         job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBY;
420                     }
421                 }
422                 /* all other mixdowns will have been preserved here */
423                 break;
424
425             default:
426                 /* if we've requested a mono mixdown, and it is supported, then do the mix */
427                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 1) {
428                     job->audio_mixdowns[i] = HB_AMIXDOWN_MONO;
429                 /* mix everything else down to stereo */
430                 } else {
431                     job->audio_mixdowns[i] = HB_AMIXDOWN_STEREO;
432                 }
433
434         }
435
436                 /* log the output mixdown */
437                 for (j = 0; j < hb_audio_mixdowns_count; j++) {
438                         if (hb_audio_mixdowns[j].amixdown == job->audio_mixdowns[i]) {
439                                 hb_log( "     + Actual mixdown: %s (%s)", hb_audio_mixdowns[j].human_readable_name, hb_audio_mixdowns[j].internal_name );
440                                 break;
441                         }
442                 }
443
444                 /* we now know we have a valid mixdown for the input source and the audio output format */
445                 /* remember the mixdown for this track */
446                 audio->amixdown = job->audio_mixdowns[i];
447
448         audio->config.vorbis.language = audio->lang_simple;
449
450                 /* set up the audio work structures */
451         audio->fifo_in   = hb_fifo_init( 2048 );
452         audio->fifo_raw  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
453         audio->fifo_sync = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
454         audio->fifo_out  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
455
456         switch( audio->codec )
457         {
458             case HB_ACODEC_AC3:
459                 w = getWork( WORK_DECA52 );
460                 break;
461             case HB_ACODEC_DCA:
462                 w = getWork( WORK_DECDCA );
463                 break;
464             case HB_ACODEC_MPGA:
465                 w = getWork( WORK_DECAVCODEC );
466                 break;
467             case HB_ACODEC_LPCM:
468                 w = getWork( WORK_DECLPCM );
469                 break;
470         }
471         w->fifo_in       = audio->fifo_in;
472         w->fifo_out      = audio->fifo_raw;
473         w->config        = &audio->config;
474         w->amixdown      = audio->amixdown;
475         w->source_acodec = audio->codec;
476         
477         /* FIXME: This feels really hackish, anything better? */
478         audio_w = calloc( sizeof( hb_work_object_t ), 1 );
479         audio_w = memcpy( audio_w, w, sizeof( hb_work_object_t ));
480         
481         hb_list_add( job->list_work, audio_w );
482
483         switch( job->acodec )
484         {
485             case HB_ACODEC_FAAC:
486                 w = getWork( WORK_ENCFAAC );
487                 break;
488             case HB_ACODEC_LAME:
489                 w = getWork( WORK_ENCLAME );
490                 break;
491             case HB_ACODEC_VORBIS:
492                 w = getWork( WORK_ENCVORBIS );
493                 break;
494         }
495
496         if( job->acodec != HB_ACODEC_AC3 )
497         {
498             w->fifo_in       = audio->fifo_sync;
499             w->fifo_out      = audio->fifo_out;
500             w->config        = &audio->config;
501             w->amixdown      = audio->amixdown;
502             w->source_acodec = audio->codec;
503             
504             /* FIXME: This feels really hackish, anything better? */
505             audio_w = calloc( sizeof( hb_work_object_t ), 1 );
506             audio_w = memcpy( audio_w, w, sizeof( hb_work_object_t ));
507         
508             hb_list_add( job->list_work, audio_w );
509         }
510
511
512     }
513
514     /* Init read & write threads */
515     job->reader = hb_reader_init( job );
516
517     hb_log( " + output: %s", job->file );
518     job->muxer = hb_muxer_init( job );
519
520     job->done = 0;
521
522     /* Launch processing threads */
523     for( i = 1; i < hb_list_count( job->list_work ); i++ )
524     {
525         w = hb_list_item( job->list_work, i );
526         w->done = &job->done;
527         w->thread_sleep_interval = 10;
528         w->init( w, job );
529         w->thread = hb_thread_init( w->name, work_loop, w,
530                                     HB_LOW_PRIORITY );
531     }
532
533     done = 0;
534     w = hb_list_item( job->list_work, 0 );
535     w->thread_sleep_interval = 50;
536     w->init( w, job );
537     while( !*job->die )
538     {
539         if( w->work( w, NULL, NULL ) == HB_WORK_DONE )
540         {
541             done = 1;
542         }
543         if( done &&
544             !hb_fifo_size( job->fifo_sync ) &&
545             !hb_fifo_size( job->fifo_render ) &&
546             !hb_fifo_size( job->fifo_mpeg4 ) )
547         {
548             break;
549         }
550         hb_snooze( w->thread_sleep_interval );
551     }
552     hb_list_rem( job->list_work, w );
553     w->close( w );
554     job->done = 1;
555
556     /* Close work objects */
557     while( ( w = hb_list_item( job->list_work, 0 ) ) )
558     {
559         hb_list_rem( job->list_work, w );
560         hb_thread_close( &w->thread );
561         w->close( w );
562         
563         /* FIXME: This feels really hackish, anything better? */
564         if ( w->id == WORK_DECA52 ||
565              w->id == WORK_DECDCA ||
566              w->id == WORK_DECLPCM ||
567              w->id == WORK_ENCFAAC ||
568              w->id == WORK_ENCLAME ||
569              w->id == WORK_ENCVORBIS )
570         {
571             free( w );
572             w = NULL;
573         }
574     }
575     
576     hb_list_close( &job->list_work );
577
578     /* Stop read & write threads */
579     hb_thread_close( &job->reader );
580     hb_thread_close( &job->muxer );
581
582     /* Close fifos */
583     hb_fifo_close( &job->fifo_mpeg2 );
584     hb_fifo_close( &job->fifo_raw );
585     hb_fifo_close( &job->fifo_sync );
586     hb_fifo_close( &job->fifo_render );
587     hb_fifo_close( &job->fifo_mpeg4 );
588
589     for (i=0; i < hb_list_count(title->list_subtitle); i++) {
590         subtitle =  hb_list_item( title->list_subtitle, i);
591         if( subtitle )
592         {
593             hb_fifo_close( &subtitle->fifo_in );
594             hb_fifo_close( &subtitle->fifo_raw );
595         }
596     }
597     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
598     {
599         audio = hb_list_item( title->list_audio, i );
600         hb_fifo_close( &audio->fifo_in );
601         hb_fifo_close( &audio->fifo_raw );
602         hb_fifo_close( &audio->fifo_sync );
603         hb_fifo_close( &audio->fifo_out );
604     }
605
606     if( job->indepth_scan )
607     {
608         /*
609          * Before closing the title print out our subtitle stats if we need to
610          * Find the highest and lowest.
611          */
612         for( i=0; i < hb_list_count( title->list_subtitle ); i++ ) 
613         {
614             subtitle =  hb_list_item( title->list_subtitle, i );
615             hb_log( "Subtitle stream 0x%x '%s': %d hits (%d forced)",
616                     subtitle->id, subtitle->lang, subtitle->hits,
617                     subtitle->forced_hits );
618             if( subtitle->hits > subtitle_highest ) 
619             {
620                 subtitle_highest = subtitle->hits;
621                 subtitle_highest_id = subtitle->id;
622             } 
623             
624             if( subtitle->hits < subtitle_lowest ) 
625             {
626                 subtitle_lowest = subtitle->hits;
627                 subtitle_lowest_id = subtitle->id;
628             }
629
630             if( subtitle->forced_hits > 0 )
631             {
632                 if( subtitle_forced_id == 0 )
633                 {
634                     subtitle_forced_id = subtitle->id;
635                 }
636             }
637         }
638         
639         if( job->native_language ) {
640             /*
641              * We still have a native_language, so the audio and subtitles are
642              * different, so in this case it is a foreign film and we want to
643              * select the subtitle with the highest hits in our language.
644              */
645             subtitle_hit = subtitle_highest_id;
646             hb_log( "Found a native-language subtitle id 0x%x", subtitle_hit);
647         } else {
648             if( subtitle_forced_id )
649             {
650                 /*
651                  * If there are any subtitle streams with forced subtitles
652                  * then select it in preference to the lowest.
653                  */
654                 subtitle_hit = subtitle_forced_id;
655                 hb_log("Found a subtitle candidate id 0x%x (contains forced subs)",
656                        subtitle_hit);
657             } else if( subtitle_lowest < subtitle_highest ) 
658             {
659                 /*
660                  * OK we have more than one, and the lowest is lower,
661                  * but how much lower to qualify for turning it on by
662                  * default?
663                  *
664                  * Let's say 10% as a default.
665                  */
666                 if( subtitle_lowest < ( subtitle_highest * 0.1 ) ) 
667                 {
668                     subtitle_hit = subtitle_lowest_id;
669                     hb_log( "Found a subtitle candidate id 0x%x",
670                             subtitle_hit );
671                 } else {
672                     hb_log( "No candidate subtitle detected during subtitle-scan");
673                 }
674             }
675         }
676     }
677
678     if( job->select_subtitle ) 
679     {
680         if( job->indepth_scan ) 
681         {
682             for( i=0; i < hb_list_count( title->list_subtitle ); i++ ) 
683             {
684                 subtitle =  hb_list_item( title->list_subtitle, i );
685                 if( subtitle->id == subtitle_hit ) 
686                 {
687                     hb_list_rem( title->list_subtitle, subtitle );
688                     *( job->select_subtitle ) = subtitle;
689                 }
690             }
691         } else {
692             /*
693              * Must be the end of pass 0 or 2 - we don't need this anymore.
694              *
695              * Have to put the subtitle list back together in the title though
696              * or the GUI will have a hissy fit.
697              */
698             free( job->select_subtitle );
699             job->select_subtitle = NULL;
700         }
701     }
702
703     hb_buffer_pool_free();
704
705     hb_title_close( &job->title );
706     free( job );
707 }
708
709 /**
710  * Performs the work objects specific work function.
711  * Loops calling work function for associated work object. Sleeps when fifo is full.
712  * Monitors work done indicator.
713  * Exits loop when work indiactor is set.
714  * @param _w Handle to work object.
715  */
716 static void work_loop( void * _w )
717 {
718     hb_work_object_t * w = _w;
719     hb_buffer_t      * buf_in, * buf_out;
720
721     while( !*w->done )
722     {
723 #if 0
724         hb_lock( job->pause );
725         hb_unlock( job->pause );
726 #endif
727         if( hb_fifo_is_full( w->fifo_out ) ||
728 //        if( (hb_fifo_percent_full( w->fifo_out ) > 0.8) ||
729             !( buf_in = hb_fifo_get( w->fifo_in ) ) )
730         {
731             hb_snooze( w->thread_sleep_interval );
732 //                      w->thread_sleep_interval += 1;
733             continue;
734         }
735 //              w->thread_sleep_interval = MAX(1, (w->thread_sleep_interval - 1));
736
737         w->work( w, &buf_in, &buf_out );
738
739         // Propogate any chapter breaks for the worker
740         if( buf_in && buf_out && buf_in->new_chap )
741         {
742             hb_log("WORK: Copying Chapter Break");
743             buf_out->new_chap = 1;
744         }
745         
746         if( buf_in )
747         {
748             hb_buffer_close( &buf_in );
749         }
750         if( buf_out )
751         {
752             hb_fifo_push( w->fifo_out, buf_out );
753         }
754     }
755 }