OSDN Git Service

6caa153e845a6f602cb242525f4783501609493d
[handbrake-jp/handbrake-jp-git.git] / libhb / work.c
1 /* $Id: work.c,v 1.43 2005/03/17 16:38:49 titer Exp $
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.fr/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #include "hb.h"
8 #include "a52dec/a52.h"
9 #include "dca.h"
10
11 typedef struct
12 {
13     hb_list_t * jobs;
14     hb_job_t  ** current_job;
15     int         cpu_count;
16     int       * error;
17     volatile int * die;
18
19 } hb_work_t;
20
21 static void work_func();
22 static void do_job( hb_job_t *, int cpu_count );
23 static void work_loop( void * );
24
25 #define FIFO_CPU_MULT 8
26
27 /**
28  * Allocates work object and launches work thread with work_func.
29  * @param jobs Handle to hb_list_t.
30  * @param cpu_count Humber of CPUs found in system.
31  * @param die Handle to user inititated exit indicator.
32  * @param error Handle to error indicator.
33  */
34 hb_thread_t * hb_work_init( hb_list_t * jobs, int cpu_count,
35                             volatile int * die, int * error, hb_job_t ** job )
36 {
37     hb_work_t * work = calloc( sizeof( hb_work_t ), 1 );
38
39     work->jobs      = jobs;
40     work->current_job = job;
41     work->cpu_count = cpu_count;
42     work->die       = die;
43     work->error     = error;
44
45     return hb_thread_init( "work", work_func, work, HB_LOW_PRIORITY );
46 }
47
48 /**
49  * Iterates through job list and calls do_job for each job.
50  * @param _work Handle work object.
51  */
52 static void work_func( void * _work )
53 {
54     hb_work_t  * work = _work;
55     hb_job_t   * job;
56
57     hb_log( "%d job(s) to process", hb_list_count( work->jobs ) );
58
59     while( !*work->die && ( job = hb_list_item( work->jobs, 0 ) ) )
60     {
61         hb_list_rem( work->jobs, job );
62         job->die = work->die;
63         *(work->current_job) = job;
64         do_job( job, work->cpu_count );
65         *(work->current_job) = NULL;
66     }
67
68     *(work->error) = HB_ERROR_NONE;
69
70     free( work );
71 }
72
73 hb_work_object_t * hb_get_work( int id )
74 {
75     hb_work_object_t * w;
76     for( w = hb_objects; w; w = w->next )
77     {
78         if( w->id == id )
79         {
80             hb_work_object_t *wc = malloc( sizeof(*w) );
81             *wc = *w;
82             return wc;
83         }
84     }
85     return NULL;
86 }
87
88 hb_work_object_t * hb_codec_decoder( int codec )
89 {
90     switch( codec )
91     {
92         case HB_ACODEC_AC3:  return hb_get_work( WORK_DECA52 );
93         case HB_ACODEC_DCA:  return hb_get_work( WORK_DECDCA );
94         case HB_ACODEC_MPGA: return hb_get_work( WORK_DECAVCODEC );
95         case HB_ACODEC_LPCM: return hb_get_work( WORK_DECLPCM );
96         case HB_ACODEC_FFMPEG: return hb_get_work( WORK_DECAVCODECAI );
97     }
98     return NULL;
99 }
100
101 hb_work_object_t * hb_codec_encoder( int codec )
102 {
103     switch( codec )
104     {
105         case HB_ACODEC_FAAC:   return hb_get_work( WORK_ENCFAAC );
106         case HB_ACODEC_LAME:   return hb_get_work( WORK_ENCLAME );
107         case HB_ACODEC_VORBIS: return hb_get_work( WORK_ENCVORBIS );
108     }
109     return NULL;
110 }
111
112 /**
113  * Displays job parameters in the debug log.
114  * @param job Handle work hb_job_t.
115  */
116 hb_display_job_info( hb_job_t * job )
117 {
118     hb_title_t * title = job->title;
119     hb_audio_t   * audio;
120     hb_subtitle_t * subtitle;
121     int             i, j;
122     
123     hb_log("job configuration:");
124     hb_log( " * source");
125     
126     hb_log( "   + %s", title->dvd );
127
128     hb_log( "   + title %d, chapter(s) %d to %d", title->index,
129             job->chapter_start, job->chapter_end );
130
131     if( title->container_name != NULL )
132         hb_log( "   + container: %s", title->container_name);
133
134     if( title->data_rate )
135     {
136         hb_log( "   + data rate: %d kbps", title->data_rate / 1000 );
137     }
138     
139     hb_log( " * destination");
140
141     hb_log( "   + %s", job->file );
142
143     switch( job->mux )
144     {
145         case HB_MUX_MP4:
146             hb_log("   + container: MPEG-4 (.mp4 and .m4v)");
147             
148             if( job->ipod_atom )
149                 hb_log( "     + compatibility atom for iPod 5G");
150
151             if( job->largeFileSize )
152                 hb_log( "     + 64-bit formatting");
153
154             if( job->mp4_optimize )
155                 hb_log( "     + optimized for progressive web downloads");
156             break;
157
158         case HB_MUX_AVI:
159             hb_log("   + container: AVI");
160             break;
161
162         case HB_MUX_MKV:
163             hb_log("   + container: Matroska (.mkv)");
164             break;
165
166         case HB_MUX_OGM:
167             hb_log("   + conttainer: Ogg Media (.ogm)");
168             break;
169     }
170
171     if( job->chapter_markers )
172     {
173         hb_log( "     + chapter markers" );
174     }
175     
176     hb_log(" * video track");
177     
178     hb_log("   + decoder: %s", title->video_codec_name );
179     
180     if( title->video_bitrate )
181     {
182         hb_log( "     + bitrate %d kbps", title->video_bitrate / 1000 );
183     }
184     
185     if( job->vfr)
186     {
187         hb_log( "   + frame rate: %.3f fps -> variable fps",
188             (float) title->rate / (float) title->rate_base );
189     }
190     else if( !job->cfr )
191     {
192         hb_log( "   + frame rate: same as source (around %.3f fps)",
193             (float) title->rate / (float) title->rate_base );
194     }
195     else
196     {
197         hb_log( "   + frame rate: %.3f fps -> constant %.3f fps",
198             (float) title->rate / (float) title->rate_base, (float) job->vrate / (float) job->vrate_base );
199     }
200
201     if( job->pixel_ratio )
202     {
203         hb_log( "   + %s anamorphic", job->pixel_ratio == 1 ? "strict" : "loose" );
204         hb_log( "     + storage dimensions: %d * %d -> %d * %d, crop %d/%d/%d/%d",
205                     title->width, title->height, job->width, job->height,
206                     job->crop[0], job->crop[1], job->crop[2], job->crop[3] );
207         hb_log( "     + pixel aspect ratio: %i / %i", job->pixel_aspect_width, job->pixel_aspect_height );
208         hb_log( "     + display dimensions: %.0f * %i",
209             (float)( job->width * job->pixel_aspect_width / job->pixel_aspect_height ), job->height );
210     }
211     else
212     {
213         hb_log( "   + dimensions: %d * %d -> %d * %d, crop %d/%d/%d/%d",
214                 title->width, title->height, job->width, job->height,
215                 job->crop[0], job->crop[1], job->crop[2], job->crop[3] );
216     }
217     
218     if( job->color_matrix )
219     {
220         hb_log( "   + color space: %s", job->color_matrix == 1 ? "ITU Bt.601 (SD)" : "ITU Bt.709 (HD)");
221     }
222     else
223     {
224         hb_log( "   + color space: %s", ( title->width < 1280 || title->height < 720 ) ? "ITU Bt.601 (SD)" : "ITU Bt.709 (HD)");        
225     }
226
227     if ( job->grayscale )
228         hb_log( "   + grayscale mode" );
229
230     if( hb_list_count( job->filters ) )
231     {
232         hb_log("   + %s", hb_list_count( job->filters) > 1 ? "filters" : "filter" );
233         for( i = 0; i < hb_list_count( job->filters ); i++ )
234         {
235             hb_filter_object_t * filter = hb_list_item( job->filters, i );
236             if (filter->settings)
237                 hb_log("     + %s (%s)", filter->name, filter->settings);
238             else
239                 hb_log("     + %s (default settings)", filter->name);
240         }
241     }
242     
243     if( !job->indepth_scan )
244     {
245         /* Video encoder */
246         switch( job->vcodec )
247         {
248             case HB_VCODEC_FFMPEG:
249                 hb_log( "   + encoder: FFmpeg" );
250                 break;
251
252             case HB_VCODEC_XVID:
253                 hb_log( "   + encoder: XviD" );
254                 break;
255
256             case HB_VCODEC_X264:
257                 hb_log( "   + encoder: x264" );
258                 if( job->x264opts != NULL && *job->x264opts != '\0' )
259                     hb_log( "     + options: %s", job->x264opts);
260                 break;
261
262             case HB_VCODEC_THEORA:
263                 hb_log( "   + encoder: Theora" );
264                 break;
265         }
266
267         if( job->vquality >= 0.0 && job->vquality <= 1.0 )
268         {
269             hb_log( "     + quality: %.2f", job->vquality );
270         }
271         else if( job->vquality > 1 )
272         {
273             hb_log( "     + quality: %.0f %s", job->vquality, job->crf && job->vcodec == HB_VCODEC_X264 ? "(RF)" : "(QP)" ); 
274         }
275         else
276         {
277             hb_log( "     + bitrate: %d kbps, pass: %d", job->vbitrate, job->pass );
278         }
279     }
280
281     for( i=0; i < hb_list_count(title->list_subtitle); i++ )
282     {
283         subtitle =  hb_list_item( title->list_subtitle, i );
284
285         if( subtitle )
286         {
287             hb_log( " * subtitle track %i, %s (id %x)", job->subtitle+1, subtitle->lang, subtitle->id);
288         }
289     }
290
291     if( !job->indepth_scan )
292     {
293         for( i = 0; i < hb_list_count( title->list_audio ); i++ )
294         {
295             audio = hb_list_item( title->list_audio, i );
296
297             hb_log( " * audio track %d", audio->config.out.track );
298             
299             if( audio->config.out.name )
300                 hb_log( "   + name: %s", audio->config.out.name );
301
302             hb_log( "   + decoder: %s (track %d, id %x)", audio->config.lang.description, audio->config.in.track, audio->id );
303
304             if( ( audio->config.in.codec == HB_ACODEC_AC3 ) || ( audio->config.in.codec == HB_ACODEC_DCA) )
305             {
306                 hb_log( "     + bitrate: %d kbps, samplerate: %d Hz", audio->config.in.bitrate / 1000, audio->config.in.samplerate );
307             }
308
309             if( (audio->config.out.codec != HB_ACODEC_AC3) && (audio->config.out.codec != HB_ACODEC_DCA) )
310             {
311                 for (j = 0; j < hb_audio_mixdowns_count; j++)
312                 {
313                     if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
314                         hb_log( "   + mixdown: %s", hb_audio_mixdowns[j].human_readable_name );
315                         break;
316                     }
317                 }
318             }
319
320             if ( audio->config.out.dynamic_range_compression > 1 && (audio->config.out.codec != HB_ACODEC_AC3) && (audio->config.out.codec != HB_ACODEC_DCA))
321             {
322                 hb_log("   + dynamic range compression: %f", audio->config.out.dynamic_range_compression);
323             }
324             
325             if( (audio->config.out.codec == HB_ACODEC_AC3) || (audio->config.out.codec == HB_ACODEC_DCA) )
326             {
327                 hb_log( "   + %s passthrough", (audio->config.out.codec == HB_ACODEC_AC3) ?
328                     "AC3" : "DCA" );
329             }
330             else
331             {
332                 hb_log( "   + encoder: %s", ( audio->config.out.codec == HB_ACODEC_FAAC ) ?
333                     "faac" : ( ( audio->config.out.codec == HB_ACODEC_LAME ) ? "lame" :
334                     "vorbis" ) );
335                 hb_log( "     + bitrate: %d kbps, samplerate: %d Hz", audio->config.out.bitrate, audio->config.out.samplerate );            
336             }
337         }
338     }
339 }
340
341 /**
342  * Job initialization rountine.
343  * Initializes fifos.
344  * Creates work objects for synchronizer, video decoder, video renderer, video decoder, audio decoder, audio encoder, reader, muxer.
345  * Launches thread for each work object with work_loop.
346  * Loops while monitoring status of work threads and fifos.
347  * Exits loop when conversion is done and fifos are empty.
348  * Closes threads and frees fifos.
349  * @param job Handle work hb_job_t.
350  * @param cpu_count number of CPUs found in system.
351  */
352 static void do_job( hb_job_t * job, int cpu_count )
353 {
354     hb_title_t    * title;
355     int             i, j;
356     hb_work_object_t * w;
357
358     hb_audio_t   * audio;
359     hb_subtitle_t * subtitle;
360     unsigned int subtitle_highest = 0;
361     unsigned int subtitle_highest_id = 0;
362     unsigned int subtitle_lowest = -1;
363     unsigned int subtitle_lowest_id = 0;
364     unsigned int subtitle_forced_id = 0;
365     unsigned int subtitle_hit = 0;
366
367     title = job->title;
368
369     job->list_work = hb_list_init();
370
371     hb_log( "starting job" );
372
373     if ( job->pixel_ratio == 1 )
374     {
375         /* Correct the geometry of the output movie when using PixelRatio */
376         job->height=title->height-job->crop[0]-job->crop[1];
377         job->width=title->width-job->crop[2]-job->crop[3];
378     }
379     else if ( job->pixel_ratio == 2 )
380     {
381
382         /* While keeping the DVD storage aspect, resize the job width and height
383            so they fit into the user's specified dimensions. */
384         hb_set_anamorphic_size(job, &job->width, &job->height, &job->pixel_aspect_width, &job->pixel_aspect_height);
385     }
386
387     if( job->pixel_ratio && job->vcodec == HB_VCODEC_FFMPEG)
388     {
389         /* Just to make working with ffmpeg even more fun,
390            lavc's MPEG-4 encoder can't handle PAR values >= 255,
391            even though AVRational does. Adjusting downwards
392            distorts the display aspect slightly, but such is life. */
393         while ((job->pixel_aspect_width & ~0xFF) ||
394                (job->pixel_aspect_height & ~0xFF))
395         {
396             job->pixel_aspect_width >>= 1;
397             job->pixel_aspect_height >>= 1;
398         }
399     }
400
401     /* Keep width and height within these boundaries,
402        but ignore for anamorphic. For "loose" anamorphic encodes,
403        this stuff is covered in the pixel_ratio section above.    */
404     if ( job->maxHeight && ( job->height > job->maxHeight ) && ( !job->pixel_ratio ) )
405     {
406         job->height = job->maxHeight;
407         hb_fix_aspect( job, HB_KEEP_HEIGHT );
408         hb_log( "Height out of bounds, scaling down to %i", job->maxHeight );
409         hb_log( "New dimensions %i * %i", job->width, job->height );
410     }
411     if ( job->maxWidth && ( job->width > job->maxWidth ) && ( !job->pixel_ratio ) )
412     {
413         job->width = job->maxWidth;
414         hb_fix_aspect( job, HB_KEEP_WIDTH );
415         hb_log( "Width out of bounds, scaling down to %i", job->maxWidth );
416         hb_log( "New dimensions %i * %i", job->width, job->height );
417     }
418
419     if( ( job->mux & HB_MUX_AVI ) || job->cfr )
420     {
421         /* VFR detelecine is not compatible with AVI or constant frame rates. */
422         job->vfr = 0;
423     }
424
425     if ( job->vfr )
426     {
427         /* Ensure we're using "Same as source" FPS,
428            aka VFR, if we're doing VFR detelecine. */
429         job->vrate_base = title->rate_base;
430     }
431
432     job->fifo_mpeg2  = hb_fifo_init( 256 );
433     job->fifo_raw    = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
434     job->fifo_sync   = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
435     job->fifo_render = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
436     job->fifo_mpeg4  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
437
438     /* Synchronization */
439     hb_list_add( job->list_work, ( w = hb_get_work( WORK_SYNC ) ) );
440     w->fifo_in  = NULL;
441     w->fifo_out = NULL;
442
443     /* Video decoder */
444     int vcodec = title->video_codec? title->video_codec : WORK_DECMPEG2;
445     hb_list_add( job->list_work, ( w = hb_get_work( vcodec ) ) );
446     w->codec_param = title->video_codec_param;
447     w->fifo_in  = job->fifo_mpeg2;
448     w->fifo_out = job->fifo_raw;
449
450     /* Video renderer */
451     hb_list_add( job->list_work, ( w = hb_get_work( WORK_RENDER ) ) );
452     w->fifo_in  = job->fifo_sync;
453     w->fifo_out = job->fifo_render;
454
455     if( !job->indepth_scan )
456     {
457
458         /* Video encoder */
459         switch( job->vcodec )
460         {
461         case HB_VCODEC_FFMPEG:
462             w = hb_get_work( WORK_ENCAVCODEC );
463             break;
464         case HB_VCODEC_XVID:
465             w = hb_get_work( WORK_ENCXVID );
466             break;
467         case HB_VCODEC_X264:
468             w = hb_get_work( WORK_ENCX264 );
469             break;
470         case HB_VCODEC_THEORA:
471             w = hb_get_work( WORK_ENCTHEORA );
472             break;
473         }
474         w->fifo_in  = job->fifo_render;
475         w->fifo_out = job->fifo_mpeg4;
476         w->config   = &job->config;
477
478         hb_list_add( job->list_work, w );
479     }
480
481     if( job->select_subtitle && !job->indepth_scan )
482     {
483         /*
484          * Must be second pass of a two pass with subtitle scan enabled, so
485          * add the subtitle that we found on the first pass for use in this
486          * pass.
487          */
488         if (*(job->select_subtitle))
489         {
490             hb_list_add( title->list_subtitle, *( job->select_subtitle ) );
491         }
492     }
493
494     for( i=0; i < hb_list_count(title->list_subtitle); i++ )
495     {
496         subtitle =  hb_list_item( title->list_subtitle, i );
497
498         if( subtitle )
499         {
500             subtitle->fifo_in  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
501             subtitle->fifo_raw = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
502
503             /*
504              * Disable forced subtitles if we didn't find any in the scan
505              * so that we display normal subtitles instead.
506              *
507              * select_subtitle implies that we did a scan.
508              */
509             if( !job->indepth_scan && job->subtitle_force &&
510                 job->select_subtitle )
511             {
512                 if( subtitle->forced_hits == 0 )
513                 {
514                     job->subtitle_force = 0;
515                 }
516             }
517
518             if (!job->indepth_scan || job->subtitle_force) {
519                 /*
520                  * Don't add threads for subtitles when we are scanning, unless
521                  * looking for forced subtitles.
522                  */
523                 w = hb_get_work( WORK_DECSUB );
524                 w->fifo_in  = subtitle->fifo_in;
525                 w->fifo_out = subtitle->fifo_raw;
526                 hb_list_add( job->list_work, w );
527             }
528         }
529     }
530
531     if( !job->indepth_scan )
532     {
533     /* if we are doing passthru, and the input codec is not the same as the output
534      * codec, then remove this audio from the job */
535     /* otherwise, Bad Things will happen */
536     for( i = 0; i < hb_list_count( title->list_audio ); )
537     {
538         audio = hb_list_item( title->list_audio, i );
539         if( ( ( audio->config.out.codec == HB_ACODEC_AC3 ) && ( audio->config.in.codec != HB_ACODEC_AC3 ) ) ||
540             ( ( audio->config.out.codec == HB_ACODEC_DCA ) && ( audio->config.in.codec != HB_ACODEC_DCA ) ) )
541         {
542             hb_log( "Passthru requested and input codec is not the same as output codec for track %d",
543                     audio->config.out.track );
544             hb_list_rem( title->list_audio, audio );
545             free( audio );
546             continue;
547         }
548         /* Adjust output track number, in case we removed one.
549          * Output tracks sadly still need to be in sequential order.
550          */
551         audio->config.out.track = i++;
552     }
553
554     int requested_mixdown = 0;
555     int requested_mixdown_index = 0;
556
557     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
558     {
559         audio = hb_list_item( title->list_audio, i );
560
561         if( audio->config.out.codec != audio->config.in.codec )
562         {
563             /* sense-check the current mixdown options */
564
565             /* log the requested mixdown */
566             for (j = 0; j < hb_audio_mixdowns_count; j++) {
567                 if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
568                     requested_mixdown = audio->config.out.mixdown;
569                     requested_mixdown_index = j;
570                 }
571             }
572
573             /* sense-check the requested mixdown */
574
575             if( audio->config.out.mixdown == 0 &&
576                 audio->config.out.codec != HB_ACODEC_AC3 )
577             {
578                 /*
579                  * Mixdown wasn't specified and this is not pass-through,
580                  * set a default mixdown of stereo.
581                  */
582                 audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
583             }
584
585             // Here we try to sanitize the audio input to output mapping.
586             // Constraints are:
587             //   1. only the AC3 & DCA decoder libraries currently support mixdown
588             //   2. the lame encoder library only supports stereo.
589             // So if the encoder is lame we need the output to be stereo (or multichannel
590             // matrixed into stereo like dpl). If the decoder is not AC3 or DCA the
591             // encoder has to handle the input format since we can't do a mixdown.
592 #define CAN_MIXDOWN(a) ( a->config.in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA) )
593 #define STEREO_ONLY(a) ( a->config.out.codec & HB_ACODEC_LAME )
594
595             switch (audio->config.in.channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK)
596             {
597                 // stereo input or something not handled below
598                 default:
599                 case HB_INPUT_CH_LAYOUT_STEREO:
600                     // mono gets mixed up to stereo & more than stereo gets mixed down
601                     if ( STEREO_ONLY( audio ) ||
602                          audio->config.out.mixdown > HB_AMIXDOWN_STEREO)
603                     {
604                         audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
605                     }
606                     break;
607
608                 // mono input
609                 case HB_INPUT_CH_LAYOUT_MONO:
610                     if ( STEREO_ONLY( audio ) )
611                     {
612                         if ( !CAN_MIXDOWN( audio ) )
613                         {
614                             // XXX we're hosed - we can't mix up & lame can't handle
615                             // the input format. The user shouldn't be able to make
616                             // this choice. It's too late to do anything about it now
617                             // so complain in the log & let things abort in lame.
618                             hb_log( "ERROR - can't use lame mp3 audio output with "
619                                     "mono audio stream %x - output will be messed up",
620                                     audio->id );
621                         }
622                         audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
623                     }
624                     else
625                     {
626                         // everything else passes through
627                         audio->config.out.mixdown = HB_AMIXDOWN_MONO;
628                     }
629                     break;
630
631                 // dolby (DPL1 aka Dolby Surround = 4.0 matrix-encoded) input
632                 // the A52 flags don't allow for a way to distinguish between DPL1 and
633                 // DPL2 on a DVD so we always assume a DPL1 source for A52_DOLBY.
634                 case HB_INPUT_CH_LAYOUT_DOLBY:
635                     if ( STEREO_ONLY( audio ) || !CAN_MIXDOWN( audio ) ||
636                          audio->config.out.mixdown > HB_AMIXDOWN_DOLBY )
637                     {
638                         audio->config.out.mixdown = HB_AMIXDOWN_DOLBY;
639                     }
640                     break;
641
642                 // 4 channel discrete
643                 case HB_INPUT_CH_LAYOUT_2F2R:
644                 case HB_INPUT_CH_LAYOUT_3F1R:
645                     if ( CAN_MIXDOWN( audio ) )
646                     {
647                         if ( STEREO_ONLY( audio ) ||
648                              audio->config.out.mixdown > HB_AMIXDOWN_DOLBY )
649                         {
650                             audio->config.out.mixdown = HB_AMIXDOWN_DOLBY;
651                         }
652                     }
653                     else
654                     {
655                         // XXX we can't mixdown & don't have any way to specify
656                         // 4 channel discrete output so we're hosed.
657                         hb_log( "ERROR - can't handle 4 channel discrete audio stream "
658                                 "%x - output will be messed up", audio->id );
659                     }
660                     break;
661
662                 // 5 or 6 channel discrete
663                 case HB_INPUT_CH_LAYOUT_3F2R:
664                     if ( CAN_MIXDOWN( audio ) )
665                     {
666                         if ( STEREO_ONLY( audio ) )
667                         {
668                             if ( audio->config.out.mixdown < HB_AMIXDOWN_STEREO )
669                             {
670                                 audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
671                             }
672                             else if ( audio->config.out.mixdown > HB_AMIXDOWN_DOLBYPLII )
673                             {
674                                 audio->config.out.mixdown = HB_AMIXDOWN_DOLBYPLII;
675                             }
676                         }
677                         else if ( ! ( audio->config.in.channel_layout &
678                                         HB_INPUT_CH_LAYOUT_HAS_LFE ) )
679                         {
680                             // we don't do 5 channel discrete so mixdown to DPLII
681                             audio->config.out.mixdown = HB_AMIXDOWN_DOLBYPLII;
682                         }
683                     }
684                     else if ( ! ( audio->config.in.channel_layout &
685                                         HB_INPUT_CH_LAYOUT_HAS_LFE ) )
686                     {
687                         // XXX we can't mixdown & don't have any way to specify
688                         // 5 channel discrete output so we're hosed.
689                         hb_log( "ERROR - can't handle 5 channel discrete audio stream "
690                                 "%x - output will be messed up", audio->id );
691                     }
692                     else
693                     {
694                         // we can't mixdown so force 6 channel discrete
695                         audio->config.out.mixdown = HB_AMIXDOWN_6CH;
696                     }
697                     break;
698             }
699
700             /* log the output mixdown */
701             for (j = 0; j < hb_audio_mixdowns_count; j++) {
702                 if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
703                     if ( audio->config.out.mixdown != requested_mixdown )
704                     {
705                         hb_log("work: sanitizing track %i mixdown %s to %s", i, hb_audio_mixdowns[requested_mixdown_index].human_readable_name, hb_audio_mixdowns[j].human_readable_name);
706                     }
707                     break;
708                 }
709             }
710         }
711
712         if (audio->config.out.codec == HB_ACODEC_VORBIS)
713             audio->priv.config.vorbis.language = audio->config.lang.simple;
714
715         /* set up the audio work structures */
716         audio->priv.fifo_in   = hb_fifo_init( 32 );
717         audio->priv.fifo_raw  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
718         audio->priv.fifo_sync = hb_fifo_init( 32 );
719         audio->priv.fifo_out  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
720
721
722         /*
723          * Audio Decoder Thread
724          */
725         if ( ( w = hb_codec_decoder( audio->config.in.codec ) ) == NULL )
726         {
727             hb_error("Invalid input codec: %d", audio->config.in.codec);
728             *job->die = 1;
729             goto cleanup;
730         }
731         w->fifo_in  = audio->priv.fifo_in;
732         w->fifo_out = audio->priv.fifo_raw;
733         w->config   = &audio->priv.config;
734         w->audio    = audio;
735         w->codec_param = audio->config.in.codec_param;
736
737         hb_list_add( job->list_work, w );
738
739         /*
740          * Audio Encoder Thread
741          */
742         if( audio->config.out.codec != HB_ACODEC_AC3 )
743         {
744             /*
745              * Add the encoder thread if not doing AC-3 pass through
746              */
747             if ( ( w = hb_codec_encoder( audio->config.out.codec ) ) == NULL )
748             {
749                 hb_error("Invalid audio codec: %#x", audio->config.out.codec);
750                 w = NULL;
751                 *job->die = 1;
752                 goto cleanup;
753             }
754             w->fifo_in  = audio->priv.fifo_sync;
755             w->fifo_out = audio->priv.fifo_out;
756             w->config   = &audio->priv.config;
757             w->audio    = audio;
758
759             hb_list_add( job->list_work, w );
760         }
761     }
762
763     }
764
765     /* Display settings */
766     hb_display_job_info( job );
767
768     /* Init read & write threads */
769     job->reader = hb_reader_init( job );
770
771
772     job->done = 0;
773
774     /* Launch processing threads */
775     for( i = 1; i < hb_list_count( job->list_work ); i++ )
776     {
777         w = hb_list_item( job->list_work, i );
778         w->done = &job->done;
779         w->thread_sleep_interval = 10;
780         if( w->init( w, job ) )
781         {
782             hb_error( "Failure to initialise thread '%s'", w->name );
783             *job->die = 1;
784             goto cleanup;
785         }
786         w->thread = hb_thread_init( w->name, work_loop, w,
787                                     HB_LOW_PRIORITY );
788     }
789
790     // The muxer requires track information that's set up by the encoder
791     // init routines so we have to init the muxer last.
792     job->muxer = job->indepth_scan? NULL : hb_muxer_init( job );
793
794     w = hb_list_item( job->list_work, 0 );
795     w->thread_sleep_interval = 10;
796     w->init( w, job );
797     while( !*job->die )
798     {
799         if ( ( w->status = w->work( w, NULL, NULL ) ) == HB_WORK_DONE )
800         {
801             break;
802         }
803         hb_snooze( w->thread_sleep_interval );
804     }
805     hb_list_rem( job->list_work, w );
806     w->close( w );
807     free( w );
808
809     hb_handle_t * h = job->h;
810     hb_state_t state;
811     hb_get_state( h, &state );
812     
813     hb_log("work: average encoding speed for job is %f fps", state.param.working.rate_avg);
814
815 cleanup:
816     /* Stop the write thread (thread_close will block until the muxer finishes) */
817     if( job->muxer != NULL )
818         hb_thread_close( &job->muxer );
819
820     job->done = 1;
821
822     /* Close work objects */
823     while( ( w = hb_list_item( job->list_work, 0 ) ) )
824     {
825         hb_list_rem( job->list_work, w );
826         if( w->thread != NULL )
827         {
828             hb_thread_close( &w->thread );
829             w->close( w );
830         }
831         free( w );
832     }
833
834     hb_list_close( &job->list_work );
835
836     /* Stop the read thread */
837     if( job->reader != NULL )
838         hb_thread_close( &job->reader );
839
840     /* Close fifos */
841     hb_fifo_close( &job->fifo_mpeg2 );
842     hb_fifo_close( &job->fifo_raw );
843     hb_fifo_close( &job->fifo_sync );
844     hb_fifo_close( &job->fifo_render );
845     hb_fifo_close( &job->fifo_mpeg4 );
846
847     for (i=0; i < hb_list_count(title->list_subtitle); i++) {
848         subtitle =  hb_list_item( title->list_subtitle, i);
849         if( subtitle )
850         {
851             hb_fifo_close( &subtitle->fifo_in );
852             hb_fifo_close( &subtitle->fifo_raw );
853         }
854     }
855     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
856     {
857         audio = hb_list_item( title->list_audio, i );
858         if( audio->priv.fifo_in != NULL )
859             hb_fifo_close( &audio->priv.fifo_in );
860         if( audio->priv.fifo_raw != NULL )
861             hb_fifo_close( &audio->priv.fifo_raw );
862         if( audio->priv.fifo_sync != NULL )
863             hb_fifo_close( &audio->priv.fifo_sync );
864         if( audio->priv.fifo_out != NULL )
865             hb_fifo_close( &audio->priv.fifo_out );
866     }
867
868     if( job->indepth_scan )
869     {
870         /*
871          * Before closing the title print out our subtitle stats if we need to
872          * Find the highest and lowest.
873          */
874         for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
875         {
876             subtitle =  hb_list_item( title->list_subtitle, i );
877             hb_log( "Subtitle stream 0x%x '%s': %d hits (%d forced)",
878                     subtitle->id, subtitle->lang, subtitle->hits,
879                     subtitle->forced_hits );
880             if( subtitle->hits > subtitle_highest )
881             {
882                 subtitle_highest = subtitle->hits;
883                 subtitle_highest_id = subtitle->id;
884             }
885
886             if( subtitle->hits < subtitle_lowest )
887             {
888                 subtitle_lowest = subtitle->hits;
889                 subtitle_lowest_id = subtitle->id;
890             }
891
892             if( subtitle->forced_hits > 0 )
893             {
894                 if( subtitle_forced_id == 0 )
895                 {
896                     subtitle_forced_id = subtitle->id;
897                 }
898             }
899         }
900
901         if( job->native_language ) {
902             /*
903              * We still have a native_language, so the audio and subtitles are
904              * different, so in this case it is a foreign film and we want to
905              * select the subtitle with the highest hits in our language.
906              */
907             subtitle_hit = subtitle_highest_id;
908             hb_log( "Found a native-language subtitle id 0x%x", subtitle_hit);
909         } else {
910             if( subtitle_forced_id )
911             {
912                 /*
913                  * If there are any subtitle streams with forced subtitles
914                  * then select it in preference to the lowest.
915                  */
916                 subtitle_hit = subtitle_forced_id;
917                 hb_log("Found a subtitle candidate id 0x%x (contains forced subs)",
918                        subtitle_hit);
919             } else if( subtitle_lowest < subtitle_highest )
920             {
921                 /*
922                  * OK we have more than one, and the lowest is lower,
923                  * but how much lower to qualify for turning it on by
924                  * default?
925                  *
926                  * Let's say 10% as a default.
927                  */
928                 if( subtitle_lowest < ( subtitle_highest * 0.1 ) )
929                 {
930                     subtitle_hit = subtitle_lowest_id;
931                     hb_log( "Found a subtitle candidate id 0x%x",
932                             subtitle_hit );
933                 } else {
934                     hb_log( "No candidate subtitle detected during subtitle-scan");
935                 }
936             }
937         }
938     }
939
940     if( job->select_subtitle )
941     {
942         if( job->indepth_scan )
943         {
944             for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
945             {
946                 subtitle =  hb_list_item( title->list_subtitle, i );
947                 if( subtitle->id == subtitle_hit )
948                 {
949                     hb_list_rem( title->list_subtitle, subtitle );
950                     *( job->select_subtitle ) = subtitle;
951                 }
952             }
953         } else {
954             /*
955              * Must be the end of pass 0 or 2 - we don't need this anymore.
956              *
957              * Have to put the subtitle list back together in the title though
958              * or the GUI will have a hissy fit.
959              */
960             free( job->select_subtitle );
961             job->select_subtitle = NULL;
962         }
963     }
964
965     if( job->filters )
966     {
967         for( i = 0; i < hb_list_count( job->filters ); i++ )
968         {
969             hb_filter_object_t * filter = hb_list_item( job->filters, i );
970             hb_filter_close( &filter );
971         }
972         hb_list_close( &job->filters );
973     }
974
975     hb_buffer_pool_free();
976
977     hb_title_close( &job->title );
978     free( job );
979 }
980
981 /**
982  * Performs the work object's specific work function.
983  * Loops calling work function for associated work object. Sleeps when fifo is full.
984  * Monitors work done indicator.
985  * Exits loop when work indiactor is set.
986  * @param _w Handle to work object.
987  */
988 static void work_loop( void * _w )
989 {
990     hb_work_object_t * w = _w;
991     hb_buffer_t      * buf_in, * buf_out;
992
993     while( !*w->done )
994     {
995 #if 0
996         hb_lock( job->pause );
997         hb_unlock( job->pause );
998 #endif
999         if( hb_fifo_is_full( w->fifo_out ) ||
1000 //        if( (hb_fifo_percent_full( w->fifo_out ) > 0.8) ||
1001             !( buf_in = hb_fifo_get( w->fifo_in ) ) )
1002         {
1003             hb_snooze( w->thread_sleep_interval );
1004 //                      w->thread_sleep_interval += 1;
1005             continue;
1006         }
1007 //              w->thread_sleep_interval = MAX(1, (w->thread_sleep_interval - 1));
1008
1009         w->status = w->work( w, &buf_in, &buf_out );
1010
1011         // Propagate any chapter breaks for the worker if and only if the
1012         // output frame has the same time stamp as the input frame (any
1013         // worker that delays frames has to propagate the chapter marks itself
1014         // and workers that move chapter marks to a different time should set
1015         // 'buf_in' to NULL so that this code won't generate spurious duplicates.)
1016         if( buf_in && buf_out && buf_in->new_chap && buf_in->start == buf_out->start)
1017         {
1018             // restore log below to debug chapter mark propagation problems
1019             //hb_log("work %s: Copying Chapter Break @ %lld", w->name, buf_in->start);
1020             buf_out->new_chap = buf_in->new_chap;
1021         }
1022
1023         if( buf_in )
1024         {
1025             hb_buffer_close( &buf_in );
1026         }
1027         if( buf_out )
1028         {
1029             hb_fifo_push( w->fifo_out, buf_out );
1030         }
1031     }
1032 }