OSDN Git Service

Adds extra, user-selectable dynamic range compression to the liba52 interface, making...
[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->vfr )
164     {
165         job->vrate_base = 900900;
166
167         int detelecine_present = 0;        
168         if ( job->filters )
169         {
170             for( i = 0; i < hb_list_count( job->filters ); i++ )
171             {
172                 hb_filter_object_t * filter = hb_list_item( job->filters, i );
173                 if (filter->id == FILTER_DETELECINE)
174                     detelecine_present = 1;
175             }            
176         }
177         
178         if (!detelecine_present)
179             hb_list_add( job->filters, &hb_filter_detelecine );
180         
181         hb_log("work: VFR mode -- Switching FPS to 29.97 and detelecining.");
182     }
183     
184     if( job->filters )
185     {
186         hb_log(" + filters");
187         for( i = 0; i < hb_list_count( job->filters ); i++ )
188         {
189             hb_filter_object_t * filter = hb_list_item( job->filters, i );
190             if (filter->settings)
191                 hb_log("   + %s (%s)", filter->name, filter->settings);
192             else
193                 hb_log("   + %s (default settings)", filter->name);
194         }
195     }
196     
197     if( job->vquality >= 0.0 && job->vquality <= 1.0 )
198     {
199         hb_log( " + %.3f fps, video quality %.2f", (float) job->vrate /
200                 (float) job->vrate_base, job->vquality );
201     }
202     else
203     {
204         hb_log( " + %.3f fps, video bitrate %d kbps, pass %d",
205                 (float) job->vrate / (float) job->vrate_base,
206                 job->vbitrate, job->pass );
207     }
208         hb_log (" + PixelRatio: %d, width:%d, height: %d",job->pixel_ratio,job->width, job->height);
209     job->fifo_mpeg2  = hb_fifo_init( 2048 );
210     job->fifo_raw    = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
211     job->fifo_sync   = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
212     job->fifo_render = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
213     job->fifo_mpeg4  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
214
215     /* Synchronization */
216     hb_list_add( job->list_work, ( w = getWork( WORK_SYNC ) ) );
217     w->fifo_in  = NULL;
218     w->fifo_out = NULL;
219
220     /* Video decoder */
221     hb_list_add( job->list_work, ( w = getWork( WORK_DECMPEG2 ) ) );
222     w->fifo_in  = job->fifo_mpeg2;
223     w->fifo_out = job->fifo_raw;
224
225     /* Video renderer */
226     hb_list_add( job->list_work, ( w = getWork( WORK_RENDER ) ) );
227     w->fifo_in  = job->fifo_sync;
228     w->fifo_out = job->fifo_render;
229
230     /* Video encoder */
231     switch( job->vcodec )
232     {
233         case HB_VCODEC_FFMPEG:
234             hb_log( " + encoder FFmpeg" );
235             w = getWork( WORK_ENCAVCODEC );
236             break;
237         case HB_VCODEC_XVID:
238             hb_log( " + encoder XviD" );
239             w = getWork( WORK_ENCXVID );
240             break;
241         case HB_VCODEC_X264:
242             hb_log( " + encoder x264" );
243             if( job->x264opts != NULL && *job->x264opts != '\0' )
244                 hb_log( "   + x264 options: %s", job->x264opts);
245             w = getWork( WORK_ENCX264 );
246             break;
247     }
248     w->fifo_in  = job->fifo_render;
249     w->fifo_out = job->fifo_mpeg4;
250     w->config   = &job->config;
251     
252     hb_list_add( job->list_work, w );
253
254     if( job->select_subtitle && !job->indepth_scan ) 
255     {
256         /*
257          * Must be second pass of a two pass with subtitle scan enabled, so
258          * add the subtitle that we found on the first pass for use in this
259          * pass.
260          */
261         if (*(job->select_subtitle))
262         {
263             hb_list_add( title->list_subtitle, *( job->select_subtitle ) );
264         }
265     }
266
267     for( i=0; i < hb_list_count(title->list_subtitle); i++ ) 
268     {
269         subtitle =  hb_list_item( title->list_subtitle, i );
270
271         if( subtitle )
272         {
273             hb_log( " + subtitle %x, %s", subtitle->id, subtitle->lang );
274             
275             subtitle->fifo_in  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
276             subtitle->fifo_raw = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
277             
278             /*
279              * Disable forced subtitles if we didn't find any in the scan
280              * so that we display normal subtitles instead.
281              *
282              * select_subtitle implies that we did a scan.
283              */
284             if( !job->indepth_scan && job->subtitle_force && 
285                 job->select_subtitle ) 
286             {
287                 if( subtitle->forced_hits == 0 )
288                 {
289                     job->subtitle_force = 0;
290                 }
291             }
292
293             if (!job->indepth_scan || job->subtitle_force) {
294                 /*
295                  * Don't add threads for subtitles when we are scanning, unless
296                  * looking for forced subtitles.
297                  */
298                 if( sub_w != NULL )
299                 { 
300                     /*
301                      * Need to copy the prior subtitle structure so that we
302                      * don't overwrite the fifos.
303                      */
304                     sub_w = calloc( sizeof( hb_work_object_t ), 1 );
305                     sub_w = memcpy( sub_w, w, sizeof( hb_work_object_t ));
306                 } else {
307                     w = sub_w = getWork( WORK_DECSUB );
308                 }
309                 hb_list_add( job->list_work, sub_w );
310                 sub_w->fifo_in  = subtitle->fifo_in;
311                 sub_w->fifo_out = subtitle->fifo_raw;
312             }
313         }
314     }
315
316     if( job->acodec & HB_ACODEC_AC3 )
317     {
318         hb_log( " + audio AC3 passthrough" );
319     }
320     else
321     {
322         hb_log( " + audio %d kbps, %d Hz", job->abitrate, job->arate );
323         hb_log( " + encoder %s", ( job->acodec & HB_ACODEC_FAAC ) ?
324                 "faac" : ( ( job->acodec & HB_ACODEC_LAME ) ? "lame" :
325                 "vorbis" ) );
326     }
327     
328     if ( job->dynamic_range_compression )
329         hb_log(" + dynamic range compression: %f", job->dynamic_range_compression);
330
331     /* if we are doing AC3 passthru, then remove any non-AC3 audios from the job */
332     /* otherwise, Bad Things will happen */
333     for( i = 0; i < hb_list_count( title->list_audio ); )
334     {
335         audio = hb_list_item( title->list_audio, i );
336         if( ( job->acodec & HB_ACODEC_AC3 ) && ( audio->codec != HB_ACODEC_AC3 ) )
337         {
338             hb_list_rem( title->list_audio, audio );
339             free( audio );
340             continue;
341         }
342         i++;
343     }
344
345     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
346     {
347         audio = hb_list_item( title->list_audio, i );
348         hb_log( "   + %x, %s", audio->id, audio->lang );
349                         
350                 /* sense-check the current mixdown options */
351
352                 /* log the requested mixdown */
353                 for (j = 0; j < hb_audio_mixdowns_count; j++) {
354                         if (hb_audio_mixdowns[j].amixdown == job->audio_mixdowns[i]) {
355                                 hb_log( "     + Requested mixdown: %s (%s)", hb_audio_mixdowns[j].human_readable_name, hb_audio_mixdowns[j].internal_name );
356                                 break;
357                         }
358                 }
359
360         /* sense-check the requested mixdown */
361
362         /* audioCodecsSupportMono and audioCodecsSupport6Ch are the same for now,
363            but this may change in the future, so they are separated for flexibility */
364         int audioCodecsSupportMono = ((audio->codec == HB_ACODEC_AC3 ||
365             audio->codec == HB_ACODEC_DCA) && (job->acodec == HB_ACODEC_FAAC || job->acodec == HB_ACODEC_VORBIS));
366         int audioCodecsSupport6Ch =  ((audio->codec == HB_ACODEC_AC3 ||
367             audio->codec == HB_ACODEC_DCA) && (job->acodec == HB_ACODEC_FAAC || job->acodec == HB_ACODEC_VORBIS));
368
369         /* find out what the format of our source audio is */
370         switch (audio->input_channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK) {
371         
372             /* mono sources */
373             case HB_INPUT_CH_LAYOUT_MONO:
374                 /* regardless of what stereo mixdown we've requested, a mono source always get mixed down
375                 to mono if we can, and mixed up to stereo if we can't */
376                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 1) {
377                     job->audio_mixdowns[i] = HB_AMIXDOWN_MONO;
378                 } else {
379                     job->audio_mixdowns[i] = HB_AMIXDOWN_STEREO;
380                 }
381                 break;
382
383             /* stereo input */
384             case HB_INPUT_CH_LAYOUT_STEREO:
385                 /* if we've requested a mono mixdown, and it is supported, then do the mix */
386                 /* use stereo if not supported */
387                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 0) {
388                     job->audio_mixdowns[i] = HB_AMIXDOWN_STEREO;
389                 /* otherwise, preserve stereo regardless of if we requested something higher */
390                 } else if (job->audio_mixdowns[i] > HB_AMIXDOWN_STEREO) {
391                     job->audio_mixdowns[i] = HB_AMIXDOWN_STEREO;
392                 }
393                 break;
394
395             /* dolby (DPL1 aka Dolby Surround = 4.0 matrix-encoded) input */
396             /* the A52 flags don't allow for a way to distinguish between DPL1 and DPL2 on a DVD,
397                so we always assume a DPL1 source for A52_DOLBY */
398             case HB_INPUT_CH_LAYOUT_DOLBY:
399                 /* if we've requested a mono mixdown, and it is supported, then do the mix */
400                 /* preserve dolby if not supported */
401                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 0) {
402                     job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBY;
403                 /* otherwise, preserve dolby even if we requested something higher */
404                 /* a stereo mixdown will still be honoured here */
405                 } else if (job->audio_mixdowns[i] > HB_AMIXDOWN_DOLBY) {
406                     job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBY;
407                 }
408                 break;
409
410             /* 3F/2R input */
411             case HB_INPUT_CH_LAYOUT_3F2R:
412                 /* if we've requested a mono mixdown, and it is supported, then do the mix */
413                 /* use dpl2 if not supported */
414                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 0) {
415                     job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBYPLII;
416                 } else {
417                     /* check if we have 3F2R input and also have an LFE - i.e. we have a 5.1 source) */
418                     if (audio->input_channel_layout & HB_INPUT_CH_LAYOUT_HAS_LFE) {
419                         /* we have a 5.1 source */
420                         /* if we requested 6ch, but our audio format doesn't support it, then mix to DPLII instead */
421                         if (job->audio_mixdowns[i] == HB_AMIXDOWN_6CH && audioCodecsSupport6Ch == 0) {
422                             job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBYPLII;
423                         }
424                     } else {
425                         /* we have a 5.0 source, so we can't do 6ch conversion
426                         default to DPL II instead */
427                         if (job->audio_mixdowns[i] > HB_AMIXDOWN_DOLBYPLII) {
428                             job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBYPLII;
429                         }
430                     }
431                 }
432                 /* all other mixdowns will have been preserved here */
433                 break;
434
435             /* 3F/1R input */
436             case HB_INPUT_CH_LAYOUT_3F1R:
437                 /* if we've requested a mono mixdown, and it is supported, then do the mix */
438                 /* use dpl1 if not supported */
439                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 0) {
440                     job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBY;
441                 } else {
442                     /* we have a 4.0 or 4.1 source, so we can't do DPLII or 6ch conversion
443                     default to DPL I instead */
444                     if (job->audio_mixdowns[i] > HB_AMIXDOWN_DOLBY) {
445                         job->audio_mixdowns[i] = HB_AMIXDOWN_DOLBY;
446                     }
447                 }
448                 /* all other mixdowns will have been preserved here */
449                 break;
450
451             default:
452                 /* if we've requested a mono mixdown, and it is supported, then do the mix */
453                 if (job->audio_mixdowns[i] == HB_AMIXDOWN_MONO && audioCodecsSupportMono == 1) {
454                     job->audio_mixdowns[i] = HB_AMIXDOWN_MONO;
455                 /* mix everything else down to stereo */
456                 } else {
457                     job->audio_mixdowns[i] = HB_AMIXDOWN_STEREO;
458                 }
459
460         }
461
462                 /* log the output mixdown */
463                 for (j = 0; j < hb_audio_mixdowns_count; j++) {
464                         if (hb_audio_mixdowns[j].amixdown == job->audio_mixdowns[i]) {
465                                 hb_log( "     + Actual mixdown: %s (%s)", hb_audio_mixdowns[j].human_readable_name, hb_audio_mixdowns[j].internal_name );
466                                 break;
467                         }
468                 }
469
470                 /* we now know we have a valid mixdown for the input source and the audio output format */
471                 /* remember the mixdown for this track */
472                 audio->amixdown = job->audio_mixdowns[i];
473
474         audio->config.vorbis.language = audio->lang_simple;
475
476                 /* set up the audio work structures */
477         audio->fifo_in   = hb_fifo_init( 2048 );
478         audio->fifo_raw  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
479         audio->fifo_sync = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
480         audio->fifo_out  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
481
482         switch( audio->codec )
483         {
484             case HB_ACODEC_AC3:
485                 w = getWork( WORK_DECA52 );
486                 break;
487             case HB_ACODEC_DCA:
488                 w = getWork( WORK_DECDCA );
489                 break;
490             case HB_ACODEC_MPGA:
491                 w = getWork( WORK_DECAVCODEC );
492                 break;
493             case HB_ACODEC_LPCM:
494                 w = getWork( WORK_DECLPCM );
495                 break;
496         }
497         w->fifo_in       = audio->fifo_in;
498         w->fifo_out      = audio->fifo_raw;
499         w->config        = &audio->config;
500         w->amixdown      = audio->amixdown;
501         w->source_acodec = audio->codec;
502         
503         /* FIXME: This feels really hackish, anything better? */
504         audio_w = calloc( sizeof( hb_work_object_t ), 1 );
505         audio_w = memcpy( audio_w, w, sizeof( hb_work_object_t ));
506         
507         hb_list_add( job->list_work, audio_w );
508
509         switch( job->acodec )
510         {
511             case HB_ACODEC_FAAC:
512                 w = getWork( WORK_ENCFAAC );
513                 break;
514             case HB_ACODEC_LAME:
515                 w = getWork( WORK_ENCLAME );
516                 break;
517             case HB_ACODEC_VORBIS:
518                 w = getWork( WORK_ENCVORBIS );
519                 break;
520         }
521
522         if( job->acodec != HB_ACODEC_AC3 )
523         {
524             w->fifo_in       = audio->fifo_sync;
525             w->fifo_out      = audio->fifo_out;
526             w->config        = &audio->config;
527             w->amixdown      = audio->amixdown;
528             w->source_acodec = audio->codec;
529             
530             /* FIXME: This feels really hackish, anything better? */
531             audio_w = calloc( sizeof( hb_work_object_t ), 1 );
532             audio_w = memcpy( audio_w, w, sizeof( hb_work_object_t ));
533         
534             hb_list_add( job->list_work, audio_w );
535         }
536
537
538     }
539
540     /* Init read & write threads */
541     job->reader = hb_reader_init( job );
542
543     hb_log( " + output: %s", job->file );
544     job->muxer = hb_muxer_init( job );
545
546     job->done = 0;
547
548     /* Launch processing threads */
549     for( i = 1; i < hb_list_count( job->list_work ); i++ )
550     {
551         w = hb_list_item( job->list_work, i );
552         w->done = &job->done;
553         w->thread_sleep_interval = 10;
554         w->init( w, job );
555         w->thread = hb_thread_init( w->name, work_loop, w,
556                                     HB_LOW_PRIORITY );
557     }
558
559     done = 0;
560     w = hb_list_item( job->list_work, 0 );
561     w->thread_sleep_interval = 50;
562     w->init( w, job );
563     while( !*job->die )
564     {
565         if( w->work( w, NULL, NULL ) == HB_WORK_DONE )
566         {
567             done = 1;
568         }
569         if( done &&
570             !hb_fifo_size( job->fifo_sync ) &&
571             !hb_fifo_size( job->fifo_render ) &&
572             !hb_fifo_size( job->fifo_mpeg4 ) )
573         {
574             break;
575         }
576         hb_snooze( w->thread_sleep_interval );
577     }
578     hb_list_rem( job->list_work, w );
579     w->close( w );
580     job->done = 1;
581
582     /* Close work objects */
583     while( ( w = hb_list_item( job->list_work, 0 ) ) )
584     {
585         hb_list_rem( job->list_work, w );
586         hb_thread_close( &w->thread );
587         w->close( w );
588         
589         /* FIXME: This feels really hackish, anything better? */
590         if ( w->id == WORK_DECA52 ||
591              w->id == WORK_DECDCA ||
592              w->id == WORK_DECLPCM ||
593              w->id == WORK_ENCFAAC ||
594              w->id == WORK_ENCLAME ||
595              w->id == WORK_ENCVORBIS )
596         {
597             free( w );
598             w = NULL;
599         }
600     }
601     
602     hb_list_close( &job->list_work );
603
604     /* Stop read & write threads */
605     hb_thread_close( &job->reader );
606     hb_thread_close( &job->muxer );
607
608     /* Close fifos */
609     hb_fifo_close( &job->fifo_mpeg2 );
610     hb_fifo_close( &job->fifo_raw );
611     hb_fifo_close( &job->fifo_sync );
612     hb_fifo_close( &job->fifo_render );
613     hb_fifo_close( &job->fifo_mpeg4 );
614
615     for (i=0; i < hb_list_count(title->list_subtitle); i++) {
616         subtitle =  hb_list_item( title->list_subtitle, i);
617         if( subtitle )
618         {
619             hb_fifo_close( &subtitle->fifo_in );
620             hb_fifo_close( &subtitle->fifo_raw );
621         }
622     }
623     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
624     {
625         audio = hb_list_item( title->list_audio, i );
626         hb_fifo_close( &audio->fifo_in );
627         hb_fifo_close( &audio->fifo_raw );
628         hb_fifo_close( &audio->fifo_sync );
629         hb_fifo_close( &audio->fifo_out );
630     }
631
632     if( job->indepth_scan )
633     {
634         /*
635          * Before closing the title print out our subtitle stats if we need to
636          * Find the highest and lowest.
637          */
638         for( i=0; i < hb_list_count( title->list_subtitle ); i++ ) 
639         {
640             subtitle =  hb_list_item( title->list_subtitle, i );
641             hb_log( "Subtitle stream 0x%x '%s': %d hits (%d forced)",
642                     subtitle->id, subtitle->lang, subtitle->hits,
643                     subtitle->forced_hits );
644             if( subtitle->hits > subtitle_highest ) 
645             {
646                 subtitle_highest = subtitle->hits;
647                 subtitle_highest_id = subtitle->id;
648             } 
649             
650             if( subtitle->hits < subtitle_lowest ) 
651             {
652                 subtitle_lowest = subtitle->hits;
653                 subtitle_lowest_id = subtitle->id;
654             }
655
656             if( subtitle->forced_hits > 0 )
657             {
658                 if( subtitle_forced_id == 0 )
659                 {
660                     subtitle_forced_id = subtitle->id;
661                 }
662             }
663         }
664         
665         if( job->native_language ) {
666             /*
667              * We still have a native_language, so the audio and subtitles are
668              * different, so in this case it is a foreign film and we want to
669              * select the subtitle with the highest hits in our language.
670              */
671             subtitle_hit = subtitle_highest_id;
672             hb_log( "Found a native-language subtitle id 0x%x", subtitle_hit);
673         } else {
674             if( subtitle_forced_id )
675             {
676                 /*
677                  * If there are any subtitle streams with forced subtitles
678                  * then select it in preference to the lowest.
679                  */
680                 subtitle_hit = subtitle_forced_id;
681                 hb_log("Found a subtitle candidate id 0x%x (contains forced subs)",
682                        subtitle_hit);
683             } else if( subtitle_lowest < subtitle_highest ) 
684             {
685                 /*
686                  * OK we have more than one, and the lowest is lower,
687                  * but how much lower to qualify for turning it on by
688                  * default?
689                  *
690                  * Let's say 10% as a default.
691                  */
692                 if( subtitle_lowest < ( subtitle_highest * 0.1 ) ) 
693                 {
694                     subtitle_hit = subtitle_lowest_id;
695                     hb_log( "Found a subtitle candidate id 0x%x",
696                             subtitle_hit );
697                 } else {
698                     hb_log( "No candidate subtitle detected during subtitle-scan");
699                 }
700             }
701         }
702     }
703
704     if( job->select_subtitle ) 
705     {
706         if( job->indepth_scan ) 
707         {
708             for( i=0; i < hb_list_count( title->list_subtitle ); i++ ) 
709             {
710                 subtitle =  hb_list_item( title->list_subtitle, i );
711                 if( subtitle->id == subtitle_hit ) 
712                 {
713                     hb_list_rem( title->list_subtitle, subtitle );
714                     *( job->select_subtitle ) = subtitle;
715                 }
716             }
717         } else {
718             /*
719              * Must be the end of pass 0 or 2 - we don't need this anymore.
720              *
721              * Have to put the subtitle list back together in the title though
722              * or the GUI will have a hissy fit.
723              */
724             free( job->select_subtitle );
725             job->select_subtitle = NULL;
726         }
727     }
728
729     hb_buffer_pool_free();
730
731     hb_title_close( &job->title );
732     free( job );
733 }
734
735 /**
736  * Performs the work objects specific work function.
737  * Loops calling work function for associated work object. Sleeps when fifo is full.
738  * Monitors work done indicator.
739  * Exits loop when work indiactor is set.
740  * @param _w Handle to work object.
741  */
742 static void work_loop( void * _w )
743 {
744     hb_work_object_t * w = _w;
745     hb_buffer_t      * buf_in, * buf_out;
746
747     while( !*w->done )
748     {
749 #if 0
750         hb_lock( job->pause );
751         hb_unlock( job->pause );
752 #endif
753         if( hb_fifo_is_full( w->fifo_out ) ||
754 //        if( (hb_fifo_percent_full( w->fifo_out ) > 0.8) ||
755             !( buf_in = hb_fifo_get( w->fifo_in ) ) )
756         {
757             hb_snooze( w->thread_sleep_interval );
758 //                      w->thread_sleep_interval += 1;
759             continue;
760         }
761 //              w->thread_sleep_interval = MAX(1, (w->thread_sleep_interval - 1));
762
763         w->work( w, &buf_in, &buf_out );
764
765         // Propogate any chapter breaks for the worker
766         if( buf_in && buf_out && buf_in->new_chap )
767         {
768             hb_log("WORK: Copying Chapter Break");
769             buf_out->new_chap = 1;
770         }
771         
772         if( buf_in )
773         {
774             hb_buffer_close( &buf_in );
775         }
776         if( buf_out )
777         {
778             hb_fifo_push( w->fifo_out, buf_out );
779         }
780     }
781 }