OSDN Git Service

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