OSDN Git Service

MacGUI: Implements a part of the NSTableView delegate in ChapterTitles so that pressi...
[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.fr/>.
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 hb_work_object_t * hb_get_work( 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             hb_work_object_t *wc = malloc( sizeof(*w) );
81             *wc = *w;
82             return wc;
83         }
84     }
85     return NULL;
86 }
87
88 hb_work_object_t * hb_codec_decoder( int codec )
89 {
90     switch( codec )
91     {
92         case HB_ACODEC_AC3:  return hb_get_work( WORK_DECA52 );
93         case HB_ACODEC_DCA:  return hb_get_work( WORK_DECDCA );
94         case HB_ACODEC_MPGA: return hb_get_work( WORK_DECAVCODEC );
95         case HB_ACODEC_LPCM: return hb_get_work( WORK_DECLPCM );
96         case HB_ACODEC_FFMPEG: return hb_get_work( WORK_DECAVCODECAI );
97     }
98     return NULL;
99 }
100
101 hb_work_object_t * hb_codec_encoder( int codec )
102 {
103     switch( codec )
104     {
105         case HB_ACODEC_FAAC:   return hb_get_work( WORK_ENCFAAC );
106         case HB_ACODEC_LAME:   return hb_get_work( WORK_ENCLAME );
107         case HB_ACODEC_VORBIS: return hb_get_work( WORK_ENCVORBIS );
108     }
109     return NULL;
110 }
111
112 /**
113  * Job initialization rountine.
114  * Initializes fifos.
115  * Creates work objects for synchronizer, video decoder, video renderer, video decoder, audio decoder, audio encoder, reader, muxer.
116  * Launches thread for each work object with work_loop.
117  * Loops while monitoring status of work threads and fifos.
118  * Exits loop when conversion is done and fifos are empty.
119  * Closes threads and frees fifos.
120  * @param job Handle work hb_job_t.
121  * @param cpu_count number of CPUs found in system.
122  */
123 static void do_job( hb_job_t * job, int cpu_count )
124 {
125     hb_title_t    * title;
126     int             i, j;
127     hb_work_object_t * w;
128     hb_work_object_t * final_w = NULL;
129
130     hb_audio_t   * audio;
131     hb_subtitle_t * subtitle;
132     int done;
133     unsigned int subtitle_highest = 0;
134     unsigned int subtitle_highest_id = 0;
135     unsigned int subtitle_lowest = -1;
136     unsigned int subtitle_lowest_id = 0;
137     unsigned int subtitle_forced_id = 0;
138     unsigned int subtitle_hit = 0;
139
140     title = job->title;
141
142     job->list_work = hb_list_init();
143
144     hb_log( "starting job" );
145     hb_log( " + device %s", title->dvd );
146     hb_log( " + title %d, chapter(s) %d to %d", title->index,
147             job->chapter_start, job->chapter_end );
148     if ( job->pixel_ratio == 1 )
149     {
150         /* Correct the geometry of the output movie when using PixelRatio */
151         job->height=title->height-job->crop[0]-job->crop[1];
152         job->width=title->width-job->crop[2]-job->crop[3];
153     }
154     else if ( job->pixel_ratio == 2 )
155     {
156
157         /* While keeping the DVD storage aspect, resize the job width and height
158            so they fit into the user's specified dimensions. */
159         hb_set_anamorphic_size(job, &job->width, &job->height, &job->pixel_aspect_width, &job->pixel_aspect_height);
160     }
161     
162     if( job->pixel_ratio && job->vcodec == HB_VCODEC_FFMPEG)
163     {
164         /* Just to make working with ffmpeg even more fun,
165            lavc's MPEG-4 encoder can't handle PAR values >= 255,
166            even though AVRational does. Adjusting downwards
167            distorts the display aspect slightly, but such is life. */
168         while ((job->pixel_aspect_width & ~0xFF) ||
169                (job->pixel_aspect_height & ~0xFF))
170         {
171             job->pixel_aspect_width >>= 1;
172             job->pixel_aspect_height >>= 1;
173         }
174     }
175     
176         /* Keep width and height within these boundaries,
177            but ignore for "loose" anamorphic encodes, for
178            which this stuff is covered in the pixel_ratio
179            section right above.*/
180         if (job->maxHeight && (job->height > job->maxHeight) && (job->pixel_ratio != 2))
181         {
182                 job->height = job->maxHeight;
183                 hb_fix_aspect( job, HB_KEEP_HEIGHT );
184                 hb_log("Height out of bounds, scaling down to %i", job->maxHeight);
185                 hb_log("New dimensions %i * %i", job->width, job->height);
186         }
187         if (job->maxWidth && (job->width > job->maxWidth) && (job->pixel_ratio != 2))
188         {
189                 job->width = job->maxWidth;
190                 hb_fix_aspect( job, HB_KEEP_WIDTH );
191                 hb_log("Width out of bounds, scaling down to %i", job->maxWidth);
192                 hb_log("New dimensions %i * %i", job->width, job->height);
193         }
194
195     hb_log( " + %dx%d -> %dx%d, crop %d/%d/%d/%d",
196             title->width, title->height, job->width, job->height,
197             job->crop[0], job->crop[1], job->crop[2], job->crop[3] );
198
199     if ( job->grayscale )
200         hb_log( " + grayscale mode" );
201
202     if ( job->vfr )
203     {
204         job->vrate_base = title->rate_base;
205         
206         int detelecine_present = 0;
207         if ( job->filters )
208         {
209             for( i = 0; i < hb_list_count( job->filters ); i++ )
210             {
211                 hb_filter_object_t * filter = hb_list_item( job->filters, i );
212                 if (filter->id == FILTER_DETELECINE)
213                     detelecine_present = 1;
214             }
215         }
216
217         if (!detelecine_present)
218         {
219             /* Allocate the filter. */
220             hb_filter_object_t * filter =  malloc( sizeof( hb_filter_object_t ) );
221
222             /* Copy in the contents of the detelecine struct. */
223             memcpy( filter, &hb_filter_detelecine, sizeof( hb_filter_object_t ) );
224
225             /* Set the name to a copy of the template name so render.c has something to free. */
226             filter->name = strdup(hb_filter_detelecine.name);
227
228             /* Add it to the list. */
229             hb_list_add( job->filters, filter );
230
231             hb_log("work: VFR mode -- adding detelecine filter");
232         }
233     }
234
235     if( hb_list_count( job->filters ) )
236     {
237         hb_log(" + filters");
238         for( i = 0; i < hb_list_count( job->filters ); i++ )
239         {
240             hb_filter_object_t * filter = hb_list_item( job->filters, i );
241             if (filter->settings)
242                 hb_log("   + %s (%s)", filter->name, filter->settings);
243             else
244                 hb_log("   + %s (default settings)", filter->name);
245         }
246     }
247
248     if( job->vfr)
249     {
250         hb_log( " + video frame rate: %.3f fps -> variable fps", (float) job->vrate /
251             (float) job->vrate_base );
252     }
253     else
254     {
255         hb_log( " + video frame rate: %.3f fps", (float) job->vrate / (float) job->vrate_base);
256     }
257
258     if( job->vquality >= 0.0 && job->vquality <= 1.0 )
259     {
260         hb_log( " + video quality %.2f", job->vquality );
261     }
262     else
263     {
264         hb_log( " + video bitrate %d kbps, pass %d", job->vbitrate, job->pass );
265     }
266
267         hb_log (" + PixelRatio: %d, width:%d, height: %d",job->pixel_ratio,job->width, job->height);
268     job->fifo_mpeg2  = hb_fifo_init( 2048 );
269     job->fifo_raw    = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
270     job->fifo_sync   = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
271     job->fifo_render = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
272     job->fifo_mpeg4  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
273
274     /* Synchronization */
275     hb_list_add( job->list_work, ( w = hb_get_work( WORK_SYNC ) ) );
276     w->fifo_in  = NULL;
277     w->fifo_out = NULL;
278
279     /* Video decoder */
280     int vcodec = title->video_codec? title->video_codec : WORK_DECMPEG2;
281     hb_list_add( job->list_work, ( w = hb_get_work( vcodec ) ) );
282     w->codec_param = title->video_codec_param;
283     w->fifo_in  = job->fifo_mpeg2;
284     w->fifo_out = job->fifo_raw;
285
286     /* Video renderer */
287     hb_list_add( job->list_work, ( w = hb_get_work( WORK_RENDER ) ) );
288     w->fifo_in  = job->fifo_sync;
289     w->fifo_out = job->fifo_render;
290     if ( job->indepth_scan )
291     {
292         /*
293          * if we're doing a subtitle scan the last thread in the
294          * processing pipeline is render - remember it so we can
295          * wait for its completion below.
296          */
297         final_w = w;
298     }
299
300     /* Video encoder */
301     switch( job->vcodec )
302     {
303         case HB_VCODEC_FFMPEG:
304             hb_log( " + encoder FFmpeg" );
305             w = hb_get_work( WORK_ENCAVCODEC );
306             break;
307         case HB_VCODEC_XVID:
308             hb_log( " + encoder XviD" );
309             w = hb_get_work( WORK_ENCXVID );
310             break;
311         case HB_VCODEC_X264:
312             hb_log( " + encoder x264" );
313             if( job->x264opts != NULL && *job->x264opts != '\0' )
314                 hb_log( "   + x264 options: %s", job->x264opts);
315             w = hb_get_work( WORK_ENCX264 );
316             break;
317         case HB_VCODEC_THEORA:
318             hb_log( " + encoder Theora" );
319             w = hb_get_work( WORK_ENCTHEORA );
320             break;
321     }
322     w->fifo_in  = job->fifo_render;
323     w->fifo_out = job->fifo_mpeg4;
324     w->config   = &job->config;
325
326     hb_list_add( job->list_work, w );
327     if ( !job->indepth_scan )
328     {
329         /*
330          * if we're not doing a subtitle scan the last thread in the
331          * processing pipeline is the encoder - remember it so we can
332          * wait for its completion below.
333          */
334         final_w = w;
335     }
336
337     if( job->select_subtitle && !job->indepth_scan )
338     {
339         /*
340          * Must be second pass of a two pass with subtitle scan enabled, so
341          * add the subtitle that we found on the first pass for use in this
342          * pass.
343          */
344         if (*(job->select_subtitle))
345         {
346             hb_list_add( title->list_subtitle, *( job->select_subtitle ) );
347         }
348     }
349
350     for( i=0; i < hb_list_count(title->list_subtitle); i++ )
351     {
352         subtitle =  hb_list_item( title->list_subtitle, i );
353
354         if( subtitle )
355         {
356             hb_log( " + subtitle %x, %s", subtitle->id, subtitle->lang );
357
358             subtitle->fifo_in  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
359             subtitle->fifo_raw = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
360
361             /*
362              * Disable forced subtitles if we didn't find any in the scan
363              * so that we display normal subtitles instead.
364              *
365              * select_subtitle implies that we did a scan.
366              */
367             if( !job->indepth_scan && job->subtitle_force &&
368                 job->select_subtitle )
369             {
370                 if( subtitle->forced_hits == 0 )
371                 {
372                     job->subtitle_force = 0;
373                 }
374             }
375
376             if (!job->indepth_scan || job->subtitle_force) {
377                 /*
378                  * Don't add threads for subtitles when we are scanning, unless
379                  * looking for forced subtitles.
380                  */
381                 w = hb_get_work( WORK_DECSUB );
382                 w->fifo_in  = subtitle->fifo_in;
383                 w->fifo_out = subtitle->fifo_raw;
384                 hb_list_add( job->list_work, w );
385             }
386         }
387     }
388
389     /* if we are doing passthru, and the input codec is not the same as the output
390      * codec, then remove this audio from the job */
391     /* otherwise, Bad Things will happen */
392     for( i = 0; i < hb_list_count( title->list_audio ); )
393     {
394         audio = hb_list_item( title->list_audio, i );
395         if( ( ( audio->config.out.codec == HB_ACODEC_AC3 ) && ( audio->config.in.codec != HB_ACODEC_AC3 ) ) ||
396             ( ( audio->config.out.codec == HB_ACODEC_DCA ) && ( audio->config.in.codec != HB_ACODEC_DCA ) ) )
397         {
398             hb_log( "Passthru requested and input codec is not the same as output codec for track %d",
399                     audio->config.out.track );
400             hb_list_rem( title->list_audio, audio );
401             free( audio );
402             continue;
403         }
404         /* Adjust output track number, in case we removed one.
405          * Output tracks sadly still need to be in sequential order.
406          */
407         audio->config.out.track = i++;
408     }
409
410     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
411     {
412         audio = hb_list_item( title->list_audio, i );
413         hb_log( " + audio track %d", audio->config.out.track );
414         hb_log( "   + input track %d", audio->config.in.track );
415         if( (audio->config.out.codec == HB_ACODEC_AC3) || (audio->config.out.codec == HB_ACODEC_DCA) )
416         {
417             hb_log( "   + %s passthrough", (audio->config.out.codec == HB_ACODEC_AC3) ?
418                 "AC3" : "DCA" );
419         }
420         else
421         {
422             hb_log( "   + audio %d kbps, %d Hz", audio->config.out.bitrate, audio->config.out.samplerate );
423             hb_log( "   + encoder %s", ( audio->config.out.codec == HB_ACODEC_FAAC ) ?
424             "faac" : ( ( audio->config.out.codec == HB_ACODEC_LAME ) ? "lame" :
425             "vorbis" ) );
426             if ( audio->config.out.dynamic_range_compression > 1 )
427                 hb_log("   + dynamic range compression: %f", audio->config.out.dynamic_range_compression);
428         }
429
430         hb_log( "     + %x, %s", audio->id, audio->config.lang.description );
431
432                 /* sense-check the current mixdown options */
433
434                 /* log the requested mixdown */
435                 for (j = 0; j < hb_audio_mixdowns_count; j++) {
436                         if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
437                                 hb_log( "       + Requested mixdown: %s (%s)", hb_audio_mixdowns[j].human_readable_name, hb_audio_mixdowns[j].internal_name );
438                                 break;
439                         }
440                 }
441
442         /* sense-check the requested mixdown */
443
444         if( audio->config.out.mixdown == 0 &&
445             audio->config.out.codec != HB_ACODEC_AC3 )
446         {
447             /*
448              * Mixdown wasn't specified and this is not pass-through,
449              * set a default mixdown of stereo.
450              */
451             audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
452         }
453
454         // Here we try to sanitize the audio input to output mapping.
455         // Constraints are:
456         //   1. only the AC3 & DCA decoder libraries currently support mixdown
457         //   2. the lame encoder library only supports stereo.
458         // So if the encoder is lame we need the output to be stereo (or multichannel
459         // matrixed into stereo like dpl). If the decoder is not AC3 or DCA the
460         // encoder has to handle the input format since we can't do a mixdown.
461 #define CAN_MIXDOWN(a) ( a->config.in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA) )
462 #define STEREO_ONLY(a) ( a->config.out.codec & HB_ACODEC_LAME )
463
464         switch (audio->config.in.channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK)
465         {
466             // stereo input or something not handled below
467             default:
468             case HB_INPUT_CH_LAYOUT_STEREO:
469                 // mono gets mixed up to stereo & more than stereo gets mixed down
470                 if ( STEREO_ONLY( audio ) ||
471                      audio->config.out.mixdown > HB_AMIXDOWN_STEREO)
472                 {
473                     audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
474                 }
475                 break;
476
477             // mono input
478             case HB_INPUT_CH_LAYOUT_MONO:
479                 if ( STEREO_ONLY( audio ) )
480                 {
481                     if ( !CAN_MIXDOWN( audio ) )
482                     {
483                         // XXX we're hosed - we can't mix up & lame can't handle
484                         // the input format. The user shouldn't be able to make
485                         // this choice. It's too late to do anything about it now
486                         // so complain in the log & let things abort in lame.
487                         hb_log( "ERROR - can't use lame mp3 audio output with "
488                                 "mono audio stream %x - output will be messed up",
489                                 audio->id );
490                     }
491                     audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
492                 }
493                 else
494                 {
495                     // everything else passes through
496                     audio->config.out.mixdown = HB_AMIXDOWN_MONO;
497                 }
498                 break;
499
500             // dolby (DPL1 aka Dolby Surround = 4.0 matrix-encoded) input
501             // the A52 flags don't allow for a way to distinguish between DPL1 and
502             // DPL2 on a DVD so we always assume a DPL1 source for A52_DOLBY.
503             case HB_INPUT_CH_LAYOUT_DOLBY:
504                 if ( STEREO_ONLY( audio ) || !CAN_MIXDOWN( audio ) ||
505                      audio->config.out.mixdown > HB_AMIXDOWN_DOLBY )
506                 {
507                     audio->config.out.mixdown = HB_AMIXDOWN_DOLBY;
508                 }
509                 break;
510
511             // 4 channel discrete
512             case HB_INPUT_CH_LAYOUT_2F2R:
513             case HB_INPUT_CH_LAYOUT_3F1R:
514                 if ( CAN_MIXDOWN( audio ) )
515                 {
516                     if ( STEREO_ONLY( audio ) ||
517                          audio->config.out.mixdown > HB_AMIXDOWN_DOLBY )
518                     {
519                         audio->config.out.mixdown = HB_AMIXDOWN_DOLBY;
520                     }
521                 }
522                 else
523                 {
524                     // XXX we can't mixdown & don't have any way to specify
525                     // 4 channel discrete output so we're hosed.
526                     hb_log( "ERROR - can't handle 4 channel discrete audio stream "
527                             "%x - output will be messed up", audio->id );
528                 }
529                 break;
530
531             // 5 or 6 channel discrete
532             case HB_INPUT_CH_LAYOUT_3F2R:
533                 if ( CAN_MIXDOWN( audio ) )
534                 {
535                     if ( STEREO_ONLY( audio ) )
536                     {
537                         if ( audio->config.out.mixdown < HB_AMIXDOWN_STEREO )
538                         {
539                             audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
540                         }
541                         else if ( audio->config.out.mixdown > HB_AMIXDOWN_DOLBYPLII )
542                         {
543                             audio->config.out.mixdown = HB_AMIXDOWN_DOLBYPLII;
544                         }
545                     }
546                     else if ( ! ( audio->config.in.channel_layout &
547                                     HB_INPUT_CH_LAYOUT_HAS_LFE ) )
548                     {
549                         // we don't do 5 channel discrete so mixdown to DPLII
550                         audio->config.out.mixdown = HB_AMIXDOWN_DOLBYPLII;
551                     }
552                 }
553                 else if ( ! ( audio->config.in.channel_layout &
554                                     HB_INPUT_CH_LAYOUT_HAS_LFE ) )
555                 {
556                     // XXX we can't mixdown & don't have any way to specify
557                     // 5 channel discrete output so we're hosed.
558                     hb_log( "ERROR - can't handle 5 channel discrete audio stream "
559                             "%x - output will be messed up", audio->id );
560                 }
561                 else
562                 {
563                     // we can't mixdown so force 6 channel discrete
564                     audio->config.out.mixdown = HB_AMIXDOWN_6CH;
565                 }
566                 break;
567         }
568
569                 /* log the output mixdown */
570                 for (j = 0; j < hb_audio_mixdowns_count; j++) {
571                         if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
572                                 hb_log( "       + Actual mixdown: %s (%s)", hb_audio_mixdowns[j].human_readable_name, hb_audio_mixdowns[j].internal_name );
573                                 break;
574                         }
575                 }
576
577         if (audio->config.out.codec == HB_ACODEC_VORBIS)
578             audio->priv.config.vorbis.language = audio->config.lang.simple;
579
580         /* set up the audio work structures */
581         audio->priv.fifo_in   = hb_fifo_init( 256 );
582         audio->priv.fifo_raw  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
583         audio->priv.fifo_sync = hb_fifo_init( 256 );
584         audio->priv.fifo_out  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
585
586
587         /*
588          * Audio Decoder Thread
589          */
590         if ( ( w = hb_codec_decoder( audio->config.in.codec ) ) == NULL )
591         {
592             hb_error("Invalid input codec: %d", audio->config.in.codec);
593             *job->die = 1;
594             goto cleanup;
595         }
596         w->fifo_in  = audio->priv.fifo_in;
597         w->fifo_out = audio->priv.fifo_raw;
598         w->config   = &audio->priv.config;
599         w->audio    = audio;
600         w->codec_param = audio->config.in.codec_param;
601
602         hb_list_add( job->list_work, w );
603
604         /*
605          * Audio Encoder Thread
606          */
607         if( audio->config.out.codec != HB_ACODEC_AC3 )
608         {
609             /*
610              * Add the encoder thread if not doing AC-3 pass through
611              */
612             if ( ( w = hb_codec_encoder( audio->config.out.codec ) ) == NULL )
613             {
614                 hb_error("Invalid audio codec: %#x", audio->config.out.codec);
615                 w = NULL;
616                 *job->die = 1;
617                 goto cleanup;
618             }
619             w->fifo_in  = audio->priv.fifo_sync;
620             w->fifo_out = audio->priv.fifo_out;
621             w->config   = &audio->priv.config;
622             w->audio    = audio;
623
624             hb_list_add( job->list_work, w );
625         }
626     }
627
628     /* Init read & write threads */
629     job->reader = hb_reader_init( job );
630
631     hb_log( " + output: %s", job->file );
632     job->muxer = hb_muxer_init( job );
633
634     job->done = 0;
635
636     /* Launch processing threads */
637     for( i = 1; i < hb_list_count( job->list_work ); i++ )
638     {
639         w = hb_list_item( job->list_work, i );
640         w->done = &job->done;
641         w->thread_sleep_interval = 10;
642         w->init( w, job );
643         w->thread = hb_thread_init( w->name, work_loop, w,
644                                     HB_LOW_PRIORITY );
645     }
646
647     done = 0;
648     w = hb_list_item( job->list_work, 0 );
649     w->thread_sleep_interval = 50;
650     w->init( w, job );
651     while( !*job->die )
652     {
653         if( ( w->status = w->work( w, NULL, NULL ) ) == HB_WORK_DONE )
654         {
655             done = 1;
656         }
657         if( done &&
658             final_w->status == HB_WORK_DONE &&
659             !hb_fifo_size( job->fifo_mpeg4 ) )
660         {
661             break;
662         }
663         hb_snooze( w->thread_sleep_interval );
664     }
665     hb_list_rem( job->list_work, w );
666     w->close( w );
667     free( w );
668     job->done = 1;
669
670 cleanup:
671     /* Close work objects */
672     while( ( w = hb_list_item( job->list_work, 0 ) ) )
673     {
674         hb_list_rem( job->list_work, w );
675         if( w->thread != NULL )
676         {
677             hb_thread_close( &w->thread );
678             w->close( w );
679         }
680         free( w );
681     }
682
683     hb_list_close( &job->list_work );
684
685     /* Stop read & write threads */
686     if( job->reader != NULL )
687         hb_thread_close( &job->reader );
688     if( job->muxer != NULL )
689         hb_thread_close( &job->muxer );
690
691     /* Close fifos */
692     hb_fifo_close( &job->fifo_mpeg2 );
693     hb_fifo_close( &job->fifo_raw );
694     hb_fifo_close( &job->fifo_sync );
695     hb_fifo_close( &job->fifo_render );
696     hb_fifo_close( &job->fifo_mpeg4 );
697
698     for (i=0; i < hb_list_count(title->list_subtitle); i++) {
699         subtitle =  hb_list_item( title->list_subtitle, i);
700         if( subtitle )
701         {
702             hb_fifo_close( &subtitle->fifo_in );
703             hb_fifo_close( &subtitle->fifo_raw );
704         }
705     }
706     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
707     {
708         audio = hb_list_item( title->list_audio, i );
709         if( audio->priv.fifo_in != NULL )
710             hb_fifo_close( &audio->priv.fifo_in );
711         if( audio->priv.fifo_raw != NULL )
712             hb_fifo_close( &audio->priv.fifo_raw );
713         if( audio->priv.fifo_sync != NULL )
714             hb_fifo_close( &audio->priv.fifo_sync );
715         if( audio->priv.fifo_out != NULL )
716             hb_fifo_close( &audio->priv.fifo_out );
717     }
718
719     if( job->indepth_scan )
720     {
721         /*
722          * Before closing the title print out our subtitle stats if we need to
723          * Find the highest and lowest.
724          */
725         for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
726         {
727             subtitle =  hb_list_item( title->list_subtitle, i );
728             hb_log( "Subtitle stream 0x%x '%s': %d hits (%d forced)",
729                     subtitle->id, subtitle->lang, subtitle->hits,
730                     subtitle->forced_hits );
731             if( subtitle->hits > subtitle_highest )
732             {
733                 subtitle_highest = subtitle->hits;
734                 subtitle_highest_id = subtitle->id;
735             }
736
737             if( subtitle->hits < subtitle_lowest )
738             {
739                 subtitle_lowest = subtitle->hits;
740                 subtitle_lowest_id = subtitle->id;
741             }
742
743             if( subtitle->forced_hits > 0 )
744             {
745                 if( subtitle_forced_id == 0 )
746                 {
747                     subtitle_forced_id = subtitle->id;
748                 }
749             }
750         }
751
752         if( job->native_language ) {
753             /*
754              * We still have a native_language, so the audio and subtitles are
755              * different, so in this case it is a foreign film and we want to
756              * select the subtitle with the highest hits in our language.
757              */
758             subtitle_hit = subtitle_highest_id;
759             hb_log( "Found a native-language subtitle id 0x%x", subtitle_hit);
760         } else {
761             if( subtitle_forced_id )
762             {
763                 /*
764                  * If there are any subtitle streams with forced subtitles
765                  * then select it in preference to the lowest.
766                  */
767                 subtitle_hit = subtitle_forced_id;
768                 hb_log("Found a subtitle candidate id 0x%x (contains forced subs)",
769                        subtitle_hit);
770             } else if( subtitle_lowest < subtitle_highest )
771             {
772                 /*
773                  * OK we have more than one, and the lowest is lower,
774                  * but how much lower to qualify for turning it on by
775                  * default?
776                  *
777                  * Let's say 10% as a default.
778                  */
779                 if( subtitle_lowest < ( subtitle_highest * 0.1 ) )
780                 {
781                     subtitle_hit = subtitle_lowest_id;
782                     hb_log( "Found a subtitle candidate id 0x%x",
783                             subtitle_hit );
784                 } else {
785                     hb_log( "No candidate subtitle detected during subtitle-scan");
786                 }
787             }
788         }
789     }
790
791     if( job->select_subtitle )
792     {
793         if( job->indepth_scan )
794         {
795             for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
796             {
797                 subtitle =  hb_list_item( title->list_subtitle, i );
798                 if( subtitle->id == subtitle_hit )
799                 {
800                     hb_list_rem( title->list_subtitle, subtitle );
801                     *( job->select_subtitle ) = subtitle;
802                 }
803             }
804         } else {
805             /*
806              * Must be the end of pass 0 or 2 - we don't need this anymore.
807              *
808              * Have to put the subtitle list back together in the title though
809              * or the GUI will have a hissy fit.
810              */
811             free( job->select_subtitle );
812             job->select_subtitle = NULL;
813         }
814     }
815
816     if( job->filters )
817     {
818         for( i = 0; i < hb_list_count( job->filters ); i++ )
819         {
820             hb_filter_object_t * filter = hb_list_item( job->filters, i );
821             hb_filter_close( &filter );
822         }
823         hb_list_close( &job->filters );
824     }
825
826     hb_buffer_pool_free();
827
828     hb_title_close( &job->title );
829     free( job );
830 }
831
832 /**
833  * Performs the work object's specific work function.
834  * Loops calling work function for associated work object. Sleeps when fifo is full.
835  * Monitors work done indicator.
836  * Exits loop when work indiactor is set.
837  * @param _w Handle to work object.
838  */
839 static void work_loop( void * _w )
840 {
841     hb_work_object_t * w = _w;
842     hb_buffer_t      * buf_in, * buf_out;
843
844     while( !*w->done )
845     {
846 #if 0
847         hb_lock( job->pause );
848         hb_unlock( job->pause );
849 #endif
850         if( hb_fifo_is_full( w->fifo_out ) ||
851 //        if( (hb_fifo_percent_full( w->fifo_out ) > 0.8) ||
852             !( buf_in = hb_fifo_get( w->fifo_in ) ) )
853         {
854             hb_snooze( w->thread_sleep_interval );
855 //                      w->thread_sleep_interval += 1;
856             continue;
857         }
858 //              w->thread_sleep_interval = MAX(1, (w->thread_sleep_interval - 1));
859
860         w->status = w->work( w, &buf_in, &buf_out );
861
862         // Propagate any chapter breaks for the worker if and only if the
863         // output frame has the same time stamp as the input frame (any
864         // worker that delays frames has to propagate the chapter marks itself
865         // and workers that move chapter marks to a different time should set
866         // 'buf_in' to NULL so that this code won't generate spurious duplicates.)
867         if( buf_in && buf_out && buf_in->new_chap && buf_in->start == buf_out->start)
868         {
869             // restore log below to debug chapter mark propagation problems
870             //hb_log("work %s: Copying Chapter Break @ %lld", w->name, buf_in->start);
871             buf_out->new_chap = buf_in->new_chap;
872         }
873
874         if( buf_in )
875         {
876             hb_buffer_close( &buf_in );
877         }
878         if( buf_out )
879         {
880             hb_fifo_push( w->fifo_out, buf_out );
881         }
882     }
883 }