OSDN Git Service

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