OSDN Git Service

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