OSDN Git Service

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