OSDN Git Service

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