OSDN Git Service

Enable subtitle-scan to work when using Xvid as the encoder. Also checks return value...
[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     if( !job->indepth_scan )
301     {
302
303         /* Video encoder */
304         switch( job->vcodec )
305         {
306         case HB_VCODEC_FFMPEG:
307             hb_log( " + encoder FFmpeg" );
308             w = hb_get_work( WORK_ENCAVCODEC );
309             break;
310         case HB_VCODEC_XVID:
311             hb_log( " + encoder XviD" );
312             w = hb_get_work( WORK_ENCXVID );
313             break;
314         case HB_VCODEC_X264:
315             hb_log( " + encoder x264" );
316             if( job->x264opts != NULL && *job->x264opts != '\0' )
317                 hb_log( "   + x264 options: %s", job->x264opts);
318             w = hb_get_work( WORK_ENCX264 );
319             break;
320         case HB_VCODEC_THEORA:
321             hb_log( " + encoder Theora" );
322             w = hb_get_work( WORK_ENCTHEORA );
323             break;
324         }
325         w->fifo_in  = job->fifo_render;
326         w->fifo_out = job->fifo_mpeg4;
327         w->config   = &job->config;
328
329         hb_list_add( job->list_work, w );
330
331         /*
332          * if we're not doing a subtitle scan the last thread in the
333          * processing pipeline is the encoder - remember it so we can
334          * wait for its completion below.
335          */
336         final_w = w;
337     }
338
339     if( job->select_subtitle && !job->indepth_scan )
340     {
341         /*
342          * Must be second pass of a two pass with subtitle scan enabled, so
343          * add the subtitle that we found on the first pass for use in this
344          * pass.
345          */
346         if (*(job->select_subtitle))
347         {
348             hb_list_add( title->list_subtitle, *( job->select_subtitle ) );
349         }
350     }
351
352     for( i=0; i < hb_list_count(title->list_subtitle); i++ )
353     {
354         subtitle =  hb_list_item( title->list_subtitle, i );
355
356         if( subtitle )
357         {
358             hb_log( " + subtitle %x, %s", subtitle->id, subtitle->lang );
359
360             subtitle->fifo_in  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
361             subtitle->fifo_raw = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
362
363             /*
364              * Disable forced subtitles if we didn't find any in the scan
365              * so that we display normal subtitles instead.
366              *
367              * select_subtitle implies that we did a scan.
368              */
369             if( !job->indepth_scan && job->subtitle_force &&
370                 job->select_subtitle )
371             {
372                 if( subtitle->forced_hits == 0 )
373                 {
374                     job->subtitle_force = 0;
375                 }
376             }
377
378             if (!job->indepth_scan || job->subtitle_force) {
379                 /*
380                  * Don't add threads for subtitles when we are scanning, unless
381                  * looking for forced subtitles.
382                  */
383                 w = hb_get_work( WORK_DECSUB );
384                 w->fifo_in  = subtitle->fifo_in;
385                 w->fifo_out = subtitle->fifo_raw;
386                 hb_list_add( job->list_work, w );
387             }
388         }
389     }
390
391     if( !job->indepth_scan )
392     {
393     /* if we are doing passthru, and the input codec is not the same as the output
394      * codec, then remove this audio from the job */
395     /* otherwise, Bad Things will happen */
396     for( i = 0; i < hb_list_count( title->list_audio ); )
397     {
398         audio = hb_list_item( title->list_audio, i );
399         if( ( ( audio->config.out.codec == HB_ACODEC_AC3 ) && ( audio->config.in.codec != HB_ACODEC_AC3 ) ) ||
400             ( ( audio->config.out.codec == HB_ACODEC_DCA ) && ( audio->config.in.codec != HB_ACODEC_DCA ) ) )
401         {
402             hb_log( "Passthru requested and input codec is not the same as output codec for track %d",
403                     audio->config.out.track );
404             hb_list_rem( title->list_audio, audio );
405             free( audio );
406             continue;
407         }
408         /* Adjust output track number, in case we removed one.
409          * Output tracks sadly still need to be in sequential order.
410          */
411         audio->config.out.track = i++;
412     }
413
414     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
415     {
416         audio = hb_list_item( title->list_audio, i );
417         hb_log( " + audio track %d", audio->config.out.track );
418         hb_log( "   + input track %d", audio->config.in.track );
419         if( (audio->config.out.codec == HB_ACODEC_AC3) || (audio->config.out.codec == HB_ACODEC_DCA) )
420         {
421             hb_log( "   + %s passthrough", (audio->config.out.codec == HB_ACODEC_AC3) ?
422                 "AC3" : "DCA" );
423         }
424         else
425         {
426             hb_log( "   + audio %d kbps, %d Hz", audio->config.out.bitrate, audio->config.out.samplerate );
427             hb_log( "   + encoder %s", ( audio->config.out.codec == HB_ACODEC_FAAC ) ?
428             "faac" : ( ( audio->config.out.codec == HB_ACODEC_LAME ) ? "lame" :
429             "vorbis" ) );
430             if ( audio->config.out.dynamic_range_compression > 1 )
431                 hb_log("   + dynamic range compression: %f", audio->config.out.dynamic_range_compression);
432         }
433
434         hb_log( "     + %x, %s", audio->id, audio->config.lang.description );
435
436         if( audio->config.out.codec != audio->config.in.codec )
437         {
438             /* sense-check the current mixdown options */
439
440             /* log the requested mixdown */
441             for (j = 0; j < hb_audio_mixdowns_count; j++) {
442                 if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
443                     hb_log( "       + Requested mixdown: %s (%s)", hb_audio_mixdowns[j].human_readable_name, hb_audio_mixdowns[j].internal_name );
444                     break;
445                 }
446             }
447
448             /* sense-check the requested mixdown */
449
450             if( audio->config.out.mixdown == 0 &&
451                 audio->config.out.codec != HB_ACODEC_AC3 )
452             {
453                 /*
454                  * Mixdown wasn't specified and this is not pass-through,
455                  * set a default mixdown of stereo.
456                  */
457                 audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
458             }
459
460             // Here we try to sanitize the audio input to output mapping.
461             // Constraints are:
462             //   1. only the AC3 & DCA decoder libraries currently support mixdown
463             //   2. the lame encoder library only supports stereo.
464             // So if the encoder is lame we need the output to be stereo (or multichannel
465             // matrixed into stereo like dpl). If the decoder is not AC3 or DCA the
466             // encoder has to handle the input format since we can't do a mixdown.
467 #define CAN_MIXDOWN(a) ( a->config.in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA) )
468 #define STEREO_ONLY(a) ( a->config.out.codec & HB_ACODEC_LAME )
469
470             switch (audio->config.in.channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK)
471             {
472                 // stereo input or something not handled below
473                 default:
474                 case HB_INPUT_CH_LAYOUT_STEREO:
475                     // mono gets mixed up to stereo & more than stereo gets mixed down
476                     if ( STEREO_ONLY( audio ) ||
477                          audio->config.out.mixdown > HB_AMIXDOWN_STEREO)
478                     {
479                         audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
480                     }
481                     break;
482
483                 // mono input
484                 case HB_INPUT_CH_LAYOUT_MONO:
485                     if ( STEREO_ONLY( audio ) )
486                     {
487                         if ( !CAN_MIXDOWN( audio ) )
488                         {
489                             // XXX we're hosed - we can't mix up & lame can't handle
490                             // the input format. The user shouldn't be able to make
491                             // this choice. It's too late to do anything about it now
492                             // so complain in the log & let things abort in lame.
493                             hb_log( "ERROR - can't use lame mp3 audio output with "
494                                     "mono audio stream %x - output will be messed up",
495                                     audio->id );
496                         }
497                         audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
498                     }
499                     else
500                     {
501                         // everything else passes through
502                         audio->config.out.mixdown = HB_AMIXDOWN_MONO;
503                     }
504                     break;
505
506                 // dolby (DPL1 aka Dolby Surround = 4.0 matrix-encoded) input
507                 // the A52 flags don't allow for a way to distinguish between DPL1 and
508                 // DPL2 on a DVD so we always assume a DPL1 source for A52_DOLBY.
509                 case HB_INPUT_CH_LAYOUT_DOLBY:
510                     if ( STEREO_ONLY( audio ) || !CAN_MIXDOWN( audio ) ||
511                          audio->config.out.mixdown > HB_AMIXDOWN_DOLBY )
512                     {
513                         audio->config.out.mixdown = HB_AMIXDOWN_DOLBY;
514                     }
515                     break;
516
517                 // 4 channel discrete
518                 case HB_INPUT_CH_LAYOUT_2F2R:
519                 case HB_INPUT_CH_LAYOUT_3F1R:
520                     if ( CAN_MIXDOWN( audio ) )
521                     {
522                         if ( STEREO_ONLY( audio ) ||
523                              audio->config.out.mixdown > HB_AMIXDOWN_DOLBY )
524                         {
525                             audio->config.out.mixdown = HB_AMIXDOWN_DOLBY;
526                         }
527                     }
528                     else
529                     {
530                         // XXX we can't mixdown & don't have any way to specify
531                         // 4 channel discrete output so we're hosed.
532                         hb_log( "ERROR - can't handle 4 channel discrete audio stream "
533                                 "%x - output will be messed up", audio->id );
534                     }
535                     break;
536
537                 // 5 or 6 channel discrete
538                 case HB_INPUT_CH_LAYOUT_3F2R:
539                     if ( CAN_MIXDOWN( audio ) )
540                     {
541                         if ( STEREO_ONLY( audio ) )
542                         {
543                             if ( audio->config.out.mixdown < HB_AMIXDOWN_STEREO )
544                             {
545                                 audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
546                             }
547                             else if ( audio->config.out.mixdown > HB_AMIXDOWN_DOLBYPLII )
548                             {
549                                 audio->config.out.mixdown = HB_AMIXDOWN_DOLBYPLII;
550                             }
551                         }
552                         else if ( ! ( audio->config.in.channel_layout &
553                                         HB_INPUT_CH_LAYOUT_HAS_LFE ) )
554                         {
555                             // we don't do 5 channel discrete so mixdown to DPLII
556                             audio->config.out.mixdown = HB_AMIXDOWN_DOLBYPLII;
557                         }
558                     }
559                     else if ( ! ( audio->config.in.channel_layout &
560                                         HB_INPUT_CH_LAYOUT_HAS_LFE ) )
561                     {
562                         // XXX we can't mixdown & don't have any way to specify
563                         // 5 channel discrete output so we're hosed.
564                         hb_log( "ERROR - can't handle 5 channel discrete audio stream "
565                                 "%x - output will be messed up", audio->id );
566                     }
567                     else
568                     {
569                         // we can't mixdown so force 6 channel discrete
570                         audio->config.out.mixdown = HB_AMIXDOWN_6CH;
571                     }
572                     break;
573             }
574
575             /* log the output mixdown */
576             for (j = 0; j < hb_audio_mixdowns_count; j++) {
577                 if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
578                     hb_log( "       + Actual mixdown: %s (%s)", hb_audio_mixdowns[j].human_readable_name, hb_audio_mixdowns[j].internal_name );
579                     break;
580                 }
581             }
582         }
583
584         if (audio->config.out.codec == HB_ACODEC_VORBIS)
585             audio->priv.config.vorbis.language = audio->config.lang.simple;
586
587         /* set up the audio work structures */
588         audio->priv.fifo_in   = hb_fifo_init( 256 );
589         audio->priv.fifo_raw  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
590         audio->priv.fifo_sync = hb_fifo_init( 256 );
591         audio->priv.fifo_out  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
592
593
594         /*
595          * Audio Decoder Thread
596          */
597         if ( ( w = hb_codec_decoder( audio->config.in.codec ) ) == NULL )
598         {
599             hb_error("Invalid input codec: %d", audio->config.in.codec);
600             *job->die = 1;
601             goto cleanup;
602         }
603         w->fifo_in  = audio->priv.fifo_in;
604         w->fifo_out = audio->priv.fifo_raw;
605         w->config   = &audio->priv.config;
606         w->audio    = audio;
607         w->codec_param = audio->config.in.codec_param;
608
609         hb_list_add( job->list_work, w );
610
611         /*
612          * Audio Encoder Thread
613          */
614         if( audio->config.out.codec != HB_ACODEC_AC3 )
615         {
616             /*
617              * Add the encoder thread if not doing AC-3 pass through
618              */
619             if ( ( w = hb_codec_encoder( audio->config.out.codec ) ) == NULL )
620             {
621                 hb_error("Invalid audio codec: %#x", audio->config.out.codec);
622                 w = NULL;
623                 *job->die = 1;
624                 goto cleanup;
625             }
626             w->fifo_in  = audio->priv.fifo_sync;
627             w->fifo_out = audio->priv.fifo_out;
628             w->config   = &audio->priv.config;
629             w->audio    = audio;
630
631             hb_list_add( job->list_work, w );
632         }
633     }
634
635     }
636
637     /* Init read & write threads */
638     job->reader = hb_reader_init( job );
639
640     hb_log( " + output: %s", job->file );
641     job->muxer = hb_muxer_init( job );
642
643     job->done = 0;
644
645     /* Launch processing threads */
646     for( i = 1; i < hb_list_count( job->list_work ); i++ )
647     {
648         w = hb_list_item( job->list_work, i );
649         w->done = &job->done;
650         w->thread_sleep_interval = 10;
651         if( w->init( w, job ) )
652         {
653             hb_error( "Failure to initialise thread '%s'", w->name );
654             *job->die = 1;
655             goto cleanup;
656         }
657         w->thread = hb_thread_init( w->name, work_loop, w,
658                                     HB_LOW_PRIORITY );
659     }
660
661     done = 0;
662     w = hb_list_item( job->list_work, 0 );
663     w->thread_sleep_interval = 50;
664     w->init( w, job );
665     while( !*job->die )
666     {
667         if( ( w->status = w->work( w, NULL, NULL ) ) == HB_WORK_DONE )
668         {
669             done = 1;
670         }
671         if( done &&
672             final_w->status == HB_WORK_DONE &&
673             !hb_fifo_size( job->fifo_mpeg4 ) )
674         {
675             break;
676         }
677         hb_snooze( w->thread_sleep_interval );
678     }
679     hb_list_rem( job->list_work, w );
680     w->close( w );
681     free( w );
682     job->done = 1;
683
684 cleanup:
685     /* Close work objects */
686     while( ( w = hb_list_item( job->list_work, 0 ) ) )
687     {
688         hb_list_rem( job->list_work, w );
689         if( w->thread != NULL )
690         {
691             hb_thread_close( &w->thread );
692             w->close( w );
693         }
694         free( w );
695     }
696
697     hb_list_close( &job->list_work );
698
699     /* Stop read & write threads */
700     if( job->reader != NULL )
701         hb_thread_close( &job->reader );
702     if( job->muxer != NULL )
703         hb_thread_close( &job->muxer );
704
705     /* Close fifos */
706     hb_fifo_close( &job->fifo_mpeg2 );
707     hb_fifo_close( &job->fifo_raw );
708     hb_fifo_close( &job->fifo_sync );
709     hb_fifo_close( &job->fifo_render );
710     hb_fifo_close( &job->fifo_mpeg4 );
711
712     for (i=0; i < hb_list_count(title->list_subtitle); i++) {
713         subtitle =  hb_list_item( title->list_subtitle, i);
714         if( subtitle )
715         {
716             hb_fifo_close( &subtitle->fifo_in );
717             hb_fifo_close( &subtitle->fifo_raw );
718         }
719     }
720     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
721     {
722         audio = hb_list_item( title->list_audio, i );
723         if( audio->priv.fifo_in != NULL )
724             hb_fifo_close( &audio->priv.fifo_in );
725         if( audio->priv.fifo_raw != NULL )
726             hb_fifo_close( &audio->priv.fifo_raw );
727         if( audio->priv.fifo_sync != NULL )
728             hb_fifo_close( &audio->priv.fifo_sync );
729         if( audio->priv.fifo_out != NULL )
730             hb_fifo_close( &audio->priv.fifo_out );
731     }
732
733     if( job->indepth_scan )
734     {
735         /*
736          * Before closing the title print out our subtitle stats if we need to
737          * Find the highest and lowest.
738          */
739         for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
740         {
741             subtitle =  hb_list_item( title->list_subtitle, i );
742             hb_log( "Subtitle stream 0x%x '%s': %d hits (%d forced)",
743                     subtitle->id, subtitle->lang, subtitle->hits,
744                     subtitle->forced_hits );
745             if( subtitle->hits > subtitle_highest )
746             {
747                 subtitle_highest = subtitle->hits;
748                 subtitle_highest_id = subtitle->id;
749             }
750
751             if( subtitle->hits < subtitle_lowest )
752             {
753                 subtitle_lowest = subtitle->hits;
754                 subtitle_lowest_id = subtitle->id;
755             }
756
757             if( subtitle->forced_hits > 0 )
758             {
759                 if( subtitle_forced_id == 0 )
760                 {
761                     subtitle_forced_id = subtitle->id;
762                 }
763             }
764         }
765
766         if( job->native_language ) {
767             /*
768              * We still have a native_language, so the audio and subtitles are
769              * different, so in this case it is a foreign film and we want to
770              * select the subtitle with the highest hits in our language.
771              */
772             subtitle_hit = subtitle_highest_id;
773             hb_log( "Found a native-language subtitle id 0x%x", subtitle_hit);
774         } else {
775             if( subtitle_forced_id )
776             {
777                 /*
778                  * If there are any subtitle streams with forced subtitles
779                  * then select it in preference to the lowest.
780                  */
781                 subtitle_hit = subtitle_forced_id;
782                 hb_log("Found a subtitle candidate id 0x%x (contains forced subs)",
783                        subtitle_hit);
784             } else if( subtitle_lowest < subtitle_highest )
785             {
786                 /*
787                  * OK we have more than one, and the lowest is lower,
788                  * but how much lower to qualify for turning it on by
789                  * default?
790                  *
791                  * Let's say 10% as a default.
792                  */
793                 if( subtitle_lowest < ( subtitle_highest * 0.1 ) )
794                 {
795                     subtitle_hit = subtitle_lowest_id;
796                     hb_log( "Found a subtitle candidate id 0x%x",
797                             subtitle_hit );
798                 } else {
799                     hb_log( "No candidate subtitle detected during subtitle-scan");
800                 }
801             }
802         }
803     }
804
805     if( job->select_subtitle )
806     {
807         if( job->indepth_scan )
808         {
809             for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
810             {
811                 subtitle =  hb_list_item( title->list_subtitle, i );
812                 if( subtitle->id == subtitle_hit )
813                 {
814                     hb_list_rem( title->list_subtitle, subtitle );
815                     *( job->select_subtitle ) = subtitle;
816                 }
817             }
818         } else {
819             /*
820              * Must be the end of pass 0 or 2 - we don't need this anymore.
821              *
822              * Have to put the subtitle list back together in the title though
823              * or the GUI will have a hissy fit.
824              */
825             free( job->select_subtitle );
826             job->select_subtitle = NULL;
827         }
828     }
829
830     if( job->filters )
831     {
832         for( i = 0; i < hb_list_count( job->filters ); i++ )
833         {
834             hb_filter_object_t * filter = hb_list_item( job->filters, i );
835             hb_filter_close( &filter );
836         }
837         hb_list_close( &job->filters );
838     }
839
840     hb_buffer_pool_free();
841
842     hb_title_close( &job->title );
843     free( job );
844 }
845
846 /**
847  * Performs the work object's specific work function.
848  * Loops calling work function for associated work object. Sleeps when fifo is full.
849  * Monitors work done indicator.
850  * Exits loop when work indiactor is set.
851  * @param _w Handle to work object.
852  */
853 static void work_loop( void * _w )
854 {
855     hb_work_object_t * w = _w;
856     hb_buffer_t      * buf_in, * buf_out;
857
858     while( !*w->done )
859     {
860 #if 0
861         hb_lock( job->pause );
862         hb_unlock( job->pause );
863 #endif
864         if( hb_fifo_is_full( w->fifo_out ) ||
865 //        if( (hb_fifo_percent_full( w->fifo_out ) > 0.8) ||
866             !( buf_in = hb_fifo_get( w->fifo_in ) ) )
867         {
868             hb_snooze( w->thread_sleep_interval );
869 //                      w->thread_sleep_interval += 1;
870             continue;
871         }
872 //              w->thread_sleep_interval = MAX(1, (w->thread_sleep_interval - 1));
873
874         w->status = w->work( w, &buf_in, &buf_out );
875
876         // Propagate any chapter breaks for the worker if and only if the
877         // output frame has the same time stamp as the input frame (any
878         // worker that delays frames has to propagate the chapter marks itself
879         // and workers that move chapter marks to a different time should set
880         // 'buf_in' to NULL so that this code won't generate spurious duplicates.)
881         if( buf_in && buf_out && buf_in->new_chap && buf_in->start == buf_out->start)
882         {
883             // restore log below to debug chapter mark propagation problems
884             //hb_log("work %s: Copying Chapter Break @ %lld", w->name, buf_in->start);
885             buf_out->new_chap = buf_in->new_chap;
886         }
887
888         if( buf_in )
889         {
890             hb_buffer_close( &buf_in );
891         }
892         if( buf_out )
893         {
894             hb_fifo_push( w->fifo_out, buf_out );
895         }
896     }
897 }