OSDN Git Service

Add SSA subtitle support
[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 #include "libavformat/avformat.h"
11
12 typedef struct
13 {
14     hb_list_t * jobs;
15     hb_job_t  ** current_job;
16     int         cpu_count;
17     int       * error;
18     volatile int * die;
19
20 } hb_work_t;
21
22 static void work_func();
23 static void do_job( hb_job_t *, int cpu_count );
24 static void work_loop( void * );
25
26 #define FIFO_LARGE 32
27 #define FIFO_LARGE_WAKE 16
28 #define FIFO_SMALL 16
29 #define FIFO_SMALL_WAKE 15
30
31 /**
32  * Allocates work object and launches work thread with work_func.
33  * @param jobs Handle to hb_list_t.
34  * @param cpu_count Humber of CPUs found in system.
35  * @param die Handle to user inititated exit indicator.
36  * @param error Handle to error indicator.
37  */
38 hb_thread_t * hb_work_init( hb_list_t * jobs, int cpu_count,
39                             volatile int * die, int * error, hb_job_t ** job )
40 {
41     hb_work_t * work = calloc( sizeof( hb_work_t ), 1 );
42
43     work->jobs      = jobs;
44     work->current_job = job;
45     work->cpu_count = cpu_count;
46     work->die       = die;
47     work->error     = error;
48
49     return hb_thread_init( "work", work_func, work, HB_LOW_PRIORITY );
50 }
51
52 static void InitWorkState( hb_handle_t * h )
53 {
54     hb_state_t state;
55
56     state.state = HB_STATE_WORKING;
57 #define p state.param.working
58     p.progress  = 0.0;
59     p.rate_cur  = 0.0;
60     p.rate_avg  = 0.0;
61     p.hours     = -1;
62     p.minutes   = -1;
63     p.seconds   = -1; 
64 #undef p
65
66     hb_set_state( h, &state );
67
68 }
69
70 /**
71  * Iterates through job list and calls do_job for each job.
72  * @param _work Handle work object.
73  */
74 static void work_func( void * _work )
75 {
76     hb_work_t  * work = _work;
77     hb_job_t   * job;
78
79     hb_log( "%d job(s) to process", hb_list_count( work->jobs ) );
80
81     while( !*work->die && ( job = hb_list_item( work->jobs, 0 ) ) )
82     {
83         hb_list_rem( work->jobs, job );
84         job->die = work->die;
85         *(work->current_job) = job;
86         InitWorkState( job->h );
87         do_job( job, work->cpu_count );
88         *(work->current_job) = NULL;
89     }
90
91     *(work->error) = HB_ERROR_NONE;
92
93     free( work );
94 }
95
96 hb_work_object_t * hb_get_work( int id )
97 {
98     hb_work_object_t * w;
99     for( w = hb_objects; w; w = w->next )
100     {
101         if( w->id == id )
102         {
103             hb_work_object_t *wc = malloc( sizeof(*w) );
104             *wc = *w;
105             return wc;
106         }
107     }
108     return NULL;
109 }
110
111 hb_work_object_t * hb_codec_decoder( int codec )
112 {
113     switch( codec )
114     {
115         case HB_ACODEC_AC3:  return hb_get_work( WORK_DECA52 );
116         case HB_ACODEC_DCA:  return hb_get_work( WORK_DECDCA );
117         case HB_ACODEC_MPGA: return hb_get_work( WORK_DECAVCODEC );
118         case HB_ACODEC_LPCM: return hb_get_work( WORK_DECLPCM );
119         case HB_ACODEC_FFMPEG: return hb_get_work( WORK_DECAVCODECAI );
120     }
121     return NULL;
122 }
123
124 hb_work_object_t * hb_codec_encoder( int codec )
125 {
126     switch( codec )
127     {
128         case HB_ACODEC_FAAC:   return hb_get_work( WORK_ENCFAAC );
129         case HB_ACODEC_LAME:   return hb_get_work( WORK_ENCLAME );
130         case HB_ACODEC_VORBIS: return hb_get_work( WORK_ENCVORBIS );
131         case HB_ACODEC_CA_AAC:  return hb_get_work( WORK_ENC_CA_AAC );
132     }
133     return NULL;
134 }
135
136 /**
137  * Displays job parameters in the debug log.
138  * @param job Handle work hb_job_t.
139  */
140 void hb_display_job_info( hb_job_t * job )
141 {
142     hb_title_t * title = job->title;
143     hb_audio_t   * audio;
144     hb_subtitle_t * subtitle;
145     int             i, j;
146     
147     hb_log("job configuration:");
148     hb_log( " * source");
149     
150     hb_log( "   + %s", title->path );
151
152     hb_log( "   + title %d, chapter(s) %d to %d", title->index,
153             job->chapter_start, job->chapter_end );
154
155     if( title->container_name != NULL )
156         hb_log( "   + container: %s", title->container_name);
157
158     if( title->data_rate )
159     {
160         hb_log( "   + data rate: %d kbps", title->data_rate / 1000 );
161     }
162     
163     hb_log( " * destination");
164
165     hb_log( "   + %s", job->file );
166
167     switch( job->mux )
168     {
169         case HB_MUX_MP4:
170             hb_log("   + container: MPEG-4 (.mp4 and .m4v)");
171             
172             if( job->ipod_atom )
173                 hb_log( "     + compatibility atom for iPod 5G");
174
175             if( job->largeFileSize )
176                 hb_log( "     + 64-bit formatting");
177
178             if( job->mp4_optimize )
179                 hb_log( "     + optimized for progressive web downloads");
180             
181             if( job->color_matrix )
182                 hb_log( "     + custom color matrix: %s", job->color_matrix == 1 ? "ITU Bt.601 (SD)" : "ITU Bt.709 (HD)");
183             break;
184
185         case HB_MUX_AVI:
186             hb_log("   + container: AVI");
187             break;
188
189         case HB_MUX_MKV:
190             hb_log("   + container: Matroska (.mkv)");
191             break;
192
193         case HB_MUX_OGM:
194             hb_log("   + conttainer: Ogg Media (.ogm)");
195             break;
196     }
197
198     if( job->chapter_markers )
199     {
200         hb_log( "     + chapter markers" );
201     }
202     
203     hb_log(" * video track");
204     
205     hb_log("   + decoder: %s", title->video_codec_name );
206     
207     if( title->video_bitrate )
208     {
209         hb_log( "     + bitrate %d kbps", title->video_bitrate / 1000 );
210     }
211     
212     if( !job->cfr )
213     {
214         hb_log( "   + frame rate: same as source (around %.3f fps)",
215             (float) title->rate / (float) title->rate_base );
216     }
217     else
218     {
219         static const char *frtypes[] = {
220             "", "constant", "peak rate limited to"
221         };
222         hb_log( "   + frame rate: %.3f fps -> %s %.3f fps",
223             (float) title->rate / (float) title->rate_base, frtypes[job->cfr],
224             (float) job->vrate / (float) job->vrate_base );
225     }
226
227     if( job->anamorphic.mode )
228     {
229         hb_log( "   + %s anamorphic", job->anamorphic.mode == 1 ? "strict" : job->anamorphic.mode == 2? "loose" : "custom" );
230         if( job->anamorphic.mode == 3 && job->anamorphic.keep_display_aspect )
231         {
232             hb_log( "     + keeping source display aspect ratio"); 
233         }
234         hb_log( "     + storage dimensions: %d * %d -> %d * %d, crop %d/%d/%d/%d, mod %i",
235                     title->width, title->height, job->width, job->height,
236                     job->crop[0], job->crop[1], job->crop[2], job->crop[3], job->modulus );
237         if( job->anamorphic.itu_par )
238         {
239             hb_log( "     + using ITU pixel aspect ratio values"); 
240         }
241         hb_log( "     + pixel aspect ratio: %i / %i", job->anamorphic.par_width, job->anamorphic.par_height );
242         hb_log( "     + display dimensions: %.0f * %i",
243             (float)( job->width * job->anamorphic.par_width / job->anamorphic.par_height ), job->height );
244     }
245     else
246     {
247         hb_log( "   + dimensions: %d * %d -> %d * %d, crop %d/%d/%d/%d",
248                 title->width, title->height, job->width, job->height,
249                 job->crop[0], job->crop[1], job->crop[2], job->crop[3] );
250     }
251
252     if ( job->grayscale )
253         hb_log( "   + grayscale mode" );
254
255     if( hb_list_count( job->filters ) )
256     {
257         hb_log("   + %s", hb_list_count( job->filters) > 1 ? "filters" : "filter" );
258         for( i = 0; i < hb_list_count( job->filters ); i++ )
259         {
260             hb_filter_object_t * filter = hb_list_item( job->filters, i );
261             if (filter->settings)
262                 hb_log("     + %s (%s)", filter->name, filter->settings);
263             else
264                 hb_log("     + %s (default settings)", filter->name);
265         }
266     }
267     
268     if( !job->indepth_scan )
269     {
270         /* Video encoder */
271         switch( job->vcodec )
272         {
273             case HB_VCODEC_FFMPEG:
274                 hb_log( "   + encoder: FFmpeg" );
275                 break;
276
277             case HB_VCODEC_X264:
278                 hb_log( "   + encoder: x264" );
279                 if( job->x264opts != NULL && *job->x264opts != '\0' )
280                     hb_log( "     + options: %s", job->x264opts);
281                 break;
282
283             case HB_VCODEC_THEORA:
284                 hb_log( "   + encoder: Theora" );
285                 break;
286         }
287
288         if( job->vquality >= 0.0 && job->vquality <= 1.0 )
289         {
290             hb_log( "     + quality: %.2f", job->vquality );
291         }
292         else if( job->vquality > 1 )
293         {
294             hb_log( "     + quality: %.2f %s", job->vquality, job->vcodec == HB_VCODEC_X264 ? "(RF)" : "(QP)" ); 
295         }
296         else
297         {
298             hb_log( "     + bitrate: %d kbps, pass: %d", job->vbitrate, job->pass );
299         }
300     }
301
302     for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
303     {
304         subtitle =  hb_list_item( title->list_subtitle, i );
305
306         if( subtitle )
307         {
308             if( subtitle->source == SRTSUB )
309             {
310                 /* For SRT, print offset and charset too */
311                 hb_log( " * subtitle track %i, %s (id %x) %s [%s] -> %s%s, offset: %"PRId64", charset: %s",
312                         subtitle->track, subtitle->lang, subtitle->id, "Text", "SRT", "Pass-Through",
313                         subtitle->config.default_track ? ", Default" : "",
314                         subtitle->config.offset, subtitle->config.src_codeset );
315             }
316             else
317             {
318                 hb_log( " * subtitle track %i, %s (id %x) %s [%s] -> %s%s%s", subtitle->track, subtitle->lang, subtitle->id,
319                         subtitle->format == PICTURESUB ? "Picture" : "Text",
320                         subtitle->source == VOBSUB ? "VOBSUB" : 
321                         subtitle->source == CC608SUB || subtitle->source == CC708SUB ? "CC" : 
322                         subtitle->source == UTF8SUB ? "UTF-8" : 
323                         subtitle->source == TX3GSUB ? "TX3G" : 
324                         subtitle->source == SSASUB ? "SSA" : "Unknown",
325                         subtitle->config.dest == RENDERSUB ? "Render/Burn in" : "Pass-Through",
326                         subtitle->config.force ? ", Forced Only" : "",
327                         subtitle->config.default_track ? ", Default" : "" );
328             }
329         }
330     }
331
332     if( !job->indepth_scan )
333     {
334         for( i = 0; i < hb_list_count( title->list_audio ); i++ )
335         {
336             audio = hb_list_item( title->list_audio, i );
337
338             hb_log( " * audio track %d", audio->config.out.track );
339             
340             if( audio->config.out.name )
341                 hb_log( "   + name: %s", audio->config.out.name );
342
343             hb_log( "   + decoder: %s (track %d, id %x)", audio->config.lang.description, audio->config.in.track + 1, audio->id );
344
345             if( ( audio->config.in.codec == HB_ACODEC_AC3 ) || ( audio->config.in.codec == HB_ACODEC_DCA) )
346             {
347                 hb_log( "     + bitrate: %d kbps, samplerate: %d Hz", audio->config.in.bitrate / 1000, audio->config.in.samplerate );
348             }
349
350             if( (audio->config.out.codec != HB_ACODEC_AC3) && (audio->config.out.codec != HB_ACODEC_DCA) )
351             {
352                 for (j = 0; j < hb_audio_mixdowns_count; j++)
353                 {
354                     if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
355                         hb_log( "   + mixdown: %s", hb_audio_mixdowns[j].human_readable_name );
356                         break;
357                     }
358                 }
359             }
360
361             if ( audio->config.out.dynamic_range_compression && (audio->config.out.codec != HB_ACODEC_AC3) && (audio->config.out.codec != HB_ACODEC_DCA))
362             {
363                 hb_log("   + dynamic range compression: %f", audio->config.out.dynamic_range_compression);
364             }
365             
366             if( (audio->config.out.codec == HB_ACODEC_AC3) || (audio->config.out.codec == HB_ACODEC_DCA) )
367             {
368                 hb_log( "   + %s passthrough", (audio->config.out.codec == HB_ACODEC_AC3) ?
369                     "AC3" : "DCA" );
370             }
371             else
372             {
373                 hb_log( "   + encoder: %s", ( audio->config.out.codec == HB_ACODEC_FAAC ) ?
374                     "faac" : ( ( audio->config.out.codec == HB_ACODEC_LAME ) ?
375                     "lame" : ( ( audio->config.out.codec == HB_ACODEC_CA_AAC ) ?
376                               "ca_aac" : "vorbis"  ) ) );
377                 hb_log( "     + bitrate: %d kbps, samplerate: %d Hz", audio->config.out.bitrate, audio->config.out.samplerate );            
378             }
379         }
380     }
381 }
382
383 /* Corrects framerates when actual duration and frame count numbers are known. */
384 void correct_framerate( hb_job_t * job )
385 {
386     int real_frames;
387
388     hb_interjob_t * interjob = hb_interjob_get( job->h );
389
390     if( ( job->sequence_id & 0xFFFFFF ) != ( interjob->last_job & 0xFFFFFF) )
391         return; // Interjob information is for a different encode.
392
393     /* Cache the original framerate before altering it. */
394     interjob->vrate = job->vrate;
395     interjob->vrate_base = job->vrate_base;
396
397     real_frames = interjob->frame_count - interjob->render_dropped;
398
399     job->vrate = job->vrate_base * ( (double)real_frames * 90000 / interjob->total_time );
400 }
401
402 /**
403  * Job initialization rountine.
404  * Initializes fifos.
405  * Creates work objects for synchronizer, video decoder, video renderer, video decoder, audio decoder, audio encoder, reader, muxer.
406  * Launches thread for each work object with work_loop.
407  * Loops while monitoring status of work threads and fifos.
408  * Exits loop when conversion is done and fifos are empty.
409  * Closes threads and frees fifos.
410  * @param job Handle work hb_job_t.
411  * @param cpu_count number of CPUs found in system.
412  */
413 static void do_job( hb_job_t * job, int cpu_count )
414 {
415     hb_title_t    * title;
416     int             i, j;
417     hb_work_object_t * w;
418     hb_work_object_t * sync;
419     hb_work_object_t * muxer;
420     hb_interjob_t * interjob;
421
422     hb_audio_t   * audio;
423     hb_subtitle_t * subtitle;
424     unsigned int subtitle_highest = 0;
425     unsigned int subtitle_highest_id = 0;
426     unsigned int subtitle_lowest = -1;
427     unsigned int subtitle_lowest_id = 0;
428     unsigned int subtitle_forced_id = 0;
429     unsigned int subtitle_hit = 0;
430
431     title = job->title;
432     interjob = hb_interjob_get( job->h );
433
434     if( job->pass == 2 && !job->cfr )
435     {
436         correct_framerate( job );
437     }
438
439     job->list_work = hb_list_init();
440
441     hb_log( "starting job" );
442
443     if( job->anamorphic.mode )
444     {
445         hb_set_anamorphic_size(job, &job->width, &job->height, &job->anamorphic.par_width, &job->anamorphic.par_height);
446
447         if( job->vcodec == HB_VCODEC_FFMPEG )
448         {
449             /* Just to make working with ffmpeg even more fun,
450                lavc's MPEG-4 encoder can't handle PAR values >= 255,
451                even though AVRational does. Adjusting downwards
452                distorts the display aspect slightly, but such is life. */
453             while ((job->anamorphic.par_width & ~0xFF) ||
454                    (job->anamorphic.par_height & ~0xFF))
455             {
456                 job->anamorphic.par_width >>= 1;
457                 job->anamorphic.par_height >>= 1;
458             }
459         }
460     }
461     
462     /* Keep width and height within these boundaries,
463        but ignore for anamorphic. For "loose" anamorphic encodes,
464        this stuff is covered in the pixel_ratio section above.    */
465     if ( job->maxHeight && ( job->height > job->maxHeight ) && ( !job->anamorphic.mode ) )
466     {
467         job->height = job->maxHeight;
468         hb_fix_aspect( job, HB_KEEP_HEIGHT );
469         hb_log( "Height out of bounds, scaling down to %i", job->maxHeight );
470         hb_log( "New dimensions %i * %i", job->width, job->height );
471     }
472     if ( job->maxWidth && ( job->width > job->maxWidth ) && ( !job->anamorphic.mode ) )
473     {
474         job->width = job->maxWidth;
475         hb_fix_aspect( job, HB_KEEP_WIDTH );
476         hb_log( "Width out of bounds, scaling down to %i", job->maxWidth );
477         hb_log( "New dimensions %i * %i", job->width, job->height );
478     }
479
480     if( job->mux & HB_MUX_AVI )
481     {
482         // The concept of variable frame rate video was a bit too advanced
483         // for Microsoft so AVI doesn't support it. Since almost all dvd
484         // video is VFR we have to convert it to constant frame rate to
485         // put it in an AVI container. So duplicate, drop and
486         // otherwise trash video frames to appease the gods of Redmond.
487         job->cfr = 1;
488     }
489
490     if ( job->cfr == 0 )
491     {
492         /* Ensure we're using "Same as source" FPS */
493         job->vrate_base = title->rate_base;
494     }
495
496     job->fifo_mpeg2  = hb_fifo_init( FIFO_LARGE, FIFO_LARGE_WAKE );
497     job->fifo_raw    = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
498     job->fifo_sync   = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
499     job->fifo_render = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
500     job->fifo_mpeg4  = hb_fifo_init( FIFO_LARGE, FIFO_LARGE_WAKE );
501
502     /*
503      * Audio fifos must be initialized before sync
504      */
505     if( !job->indepth_scan )
506     {
507     // if we are doing passthru, and the input codec is not the same as the output
508     // codec, then remove this audio from the job. If we're not doing passthru and
509     // the input codec is the 'internal' ffmpeg codec, make sure that only one
510     // audio references that audio stream since the codec context is specific to
511     // the audio id & multiple copies of the same stream will garble the audio
512     // or cause aborts.
513     uint8_t aud_id_uses[MAX_STREAMS];
514     memset( aud_id_uses, 0, sizeof(aud_id_uses) );
515     for( i = 0; i < hb_list_count( title->list_audio ); )
516     {
517         audio = hb_list_item( title->list_audio, i );
518         if( ( ( audio->config.out.codec == HB_ACODEC_AC3 ) && ( audio->config.in.codec != HB_ACODEC_AC3 ) ) ||
519             ( ( audio->config.out.codec == HB_ACODEC_DCA ) && ( audio->config.in.codec != HB_ACODEC_DCA ) ) )
520         {
521             hb_log( "Passthru requested and input codec is not the same as output codec for track %d",
522                     audio->config.out.track );
523             hb_list_rem( title->list_audio, audio );
524             free( audio );
525             continue;
526         }
527         if ( audio->config.in.codec == HB_ACODEC_FFMPEG )
528         {
529             if ( aud_id_uses[audio->id] )
530             {
531                 hb_log( "Multiple decodes of audio id %d, removing track %d",
532                         audio->id, audio->config.out.track );
533                 hb_list_rem( title->list_audio, audio );
534                 free( audio );
535                 continue;
536             }
537             ++aud_id_uses[audio->id];
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                 audio->config.out.codec != HB_ACODEC_DCA )
569             {
570                 /*
571                  * Mixdown wasn't specified and this is not pass-through,
572                  * set a default mixdown of stereo.
573                  */
574                 audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
575             }
576
577             // Here we try to sanitize the audio input to output mapping.
578             // Constraints are:
579             //   1. only the AC3 & DCA decoder libraries currently support mixdown
580             //   2. the lame encoder library only supports stereo.
581             // So if the encoder is lame we need the output to be stereo (or multichannel
582             // matrixed into stereo like dpl). If the decoder is not AC3 or DCA the
583             // encoder has to handle the input format since we can't do a mixdown.
584             switch (audio->config.in.channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK)
585             {
586                 // stereo input or something not handled below
587                 default:
588                 case HB_INPUT_CH_LAYOUT_STEREO:
589                     // mono gets mixed up to stereo & more than stereo gets mixed down
590                     if ( audio->config.out.mixdown > HB_AMIXDOWN_STEREO )
591                     {
592                         audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
593                     }
594                     break;
595
596                 // mono input
597                 case HB_INPUT_CH_LAYOUT_MONO:
598                     // everything else passes through
599                     audio->config.out.mixdown = HB_AMIXDOWN_MONO;
600                     break;
601
602                 // dolby (DPL1 aka Dolby Surround = 4.0 matrix-encoded) input
603                 // the A52 flags don't allow for a way to distinguish between DPL1 and
604                 // DPL2 on a DVD so we always assume a DPL1 source for A52_DOLBY.
605                 case HB_INPUT_CH_LAYOUT_DOLBY:
606                     if ( audio->config.out.mixdown > HB_AMIXDOWN_DOLBY )
607                     {
608                         audio->config.out.mixdown = HB_AMIXDOWN_DOLBY;
609                     }
610                     break;
611
612                 // 4 channel discrete
613                 case HB_INPUT_CH_LAYOUT_2F2R:
614                 case HB_INPUT_CH_LAYOUT_3F1R:
615                     if ( audio->config.out.mixdown > HB_AMIXDOWN_DOLBY )
616                     {
617                         audio->config.out.mixdown = HB_AMIXDOWN_DOLBY;
618                     }
619                     break;
620
621                 // 5 or 6 channel discrete
622                 case HB_INPUT_CH_LAYOUT_3F2R:
623                     if ( ! ( audio->config.in.channel_layout &
624                                     HB_INPUT_CH_LAYOUT_HAS_LFE ) )
625                     {
626                         // we don't do 5 channel discrete so mixdown to DPLII
627                         audio->config.out.mixdown = HB_AMIXDOWN_DOLBYPLII;
628                     }
629                     break;
630             }
631
632             /* log the output mixdown */
633             for (j = 0; j < hb_audio_mixdowns_count; j++) {
634                 if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
635                     if ( audio->config.out.mixdown != requested_mixdown )
636                     {
637                         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);
638                     }
639                     break;
640                 }
641             }
642         }
643
644         if (audio->config.out.codec == HB_ACODEC_VORBIS)
645             audio->priv.config.vorbis.language = audio->config.lang.simple;
646
647         /* set up the audio work structures */
648         audio->priv.fifo_in   = hb_fifo_init( FIFO_LARGE, FIFO_LARGE_WAKE );
649         audio->priv.fifo_raw  = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
650         audio->priv.fifo_sync = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
651         audio->priv.fifo_out  = hb_fifo_init( FIFO_LARGE, FIFO_LARGE_WAKE );
652     }
653
654     }
655     /* Synchronization */
656     sync = hb_sync_init( job );
657
658     /* Video decoder */
659     int vcodec = title->video_codec? title->video_codec : WORK_DECMPEG2;
660     hb_list_add( job->list_work, ( w = hb_get_work( vcodec ) ) );
661     w->codec_param = title->video_codec_param;
662     w->fifo_in  = job->fifo_mpeg2;
663     w->fifo_out = job->fifo_raw;
664
665     /* Video renderer */
666     hb_list_add( job->list_work, ( w = hb_get_work( WORK_RENDER ) ) );
667     w->fifo_in  = job->fifo_sync;
668     if( !job->indepth_scan )
669         w->fifo_out = job->fifo_render;
670     else
671         w->fifo_out = NULL;
672
673     if( !job->indepth_scan )
674     {
675
676         /* Video encoder */
677         switch( job->vcodec )
678         {
679         case HB_VCODEC_FFMPEG:
680             w = hb_get_work( WORK_ENCAVCODEC );
681             break;
682         case HB_VCODEC_X264:
683             w = hb_get_work( WORK_ENCX264 );
684             break;
685         case HB_VCODEC_THEORA:
686             w = hb_get_work( WORK_ENCTHEORA );
687             break;
688         }
689         w->fifo_in  = job->fifo_render;
690         w->fifo_out = job->fifo_mpeg4;
691         w->config   = &job->config;
692
693         hb_list_add( job->list_work, w );
694     }
695
696     /*
697      * Look for the scanned subtitle in the existing subtitle list
698      */
699     if ( !job->indepth_scan && interjob->select_subtitle &&
700          ( job->pass == 0 || job->pass == 2 ) )
701     {
702         /*
703          * Disable forced subtitles if we didn't find any in the scan
704          * so that we display normal subtitles instead.
705          *
706          * select_subtitle implies that we did a scan.
707          */
708         if( interjob->select_subtitle->config.force && 
709             interjob->select_subtitle->forced_hits == 0 )
710         {
711             interjob->select_subtitle->config.force = 0;
712         }
713         for( i=0; i < hb_list_count(title->list_subtitle); i++ )
714         {
715             subtitle =  hb_list_item( title->list_subtitle, i );
716
717             if( subtitle )
718             {
719                 /*
720                 * Disable forced subtitles if we didn't find any in the scan
721                 * so that we display normal subtitles instead.
722                 *
723                 * select_subtitle implies that we did a scan.
724                 */
725                 if( interjob->select_subtitle->id == subtitle->id )
726                 {
727                     *subtitle = *(interjob->select_subtitle);
728                     free( interjob->select_subtitle );
729                     interjob->select_subtitle = NULL;
730                     break;
731                 }
732             }
733         }
734
735         if( interjob->select_subtitle )
736         {
737             /*
738              * Its not in the existing list
739              *
740              * Must be second pass of a two pass with subtitle scan enabled, so
741              * add the subtitle that we found on the first pass for use in this
742              * pass.
743              */
744             hb_list_add( title->list_subtitle, interjob->select_subtitle );
745             interjob->select_subtitle = NULL;
746         }
747     }
748
749
750     for( i=0; i < hb_list_count(title->list_subtitle); i++ )
751     {
752         subtitle =  hb_list_item( title->list_subtitle, i );
753
754         if( subtitle )
755         {
756             subtitle->fifo_in   = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
757             subtitle->fifo_raw  = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
758             subtitle->fifo_sync = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
759             subtitle->fifo_out  = hb_fifo_init( FIFO_SMALL, FIFO_SMALL_WAKE );
760
761             if( (!job->indepth_scan || job->select_subtitle_config.force) && 
762                 subtitle->source == VOBSUB ) {
763                 /*
764                  * Don't add threads for subtitles when we are scanning, unless
765                  * looking for forced subtitles.
766                  */
767                 w = hb_get_work( WORK_DECVOBSUB );
768                 w->fifo_in  = subtitle->fifo_in;
769                 w->fifo_out = subtitle->fifo_raw;
770                 w->subtitle = subtitle;
771                 hb_list_add( job->list_work, w );
772             }
773
774             if( !job->indepth_scan && subtitle->source == CC608SUB )
775             {
776                 w = hb_get_work( WORK_DECCC608 );
777                 w->fifo_in  = subtitle->fifo_in;
778                 w->fifo_out = subtitle->fifo_raw;
779                 hb_list_add( job->list_work, w );
780             }
781
782             if( !job->indepth_scan && subtitle->source == SRTSUB )
783             {
784                 w = hb_get_work( WORK_DECSRTSUB );
785                 w->fifo_in  = subtitle->fifo_in;
786                 w->fifo_out = subtitle->fifo_raw;
787                 w->subtitle = subtitle;
788                 hb_list_add( job->list_work, w );
789             }
790             
791             if( !job->indepth_scan && subtitle->source == UTF8SUB )
792             {
793                 w = hb_get_work( WORK_DECUTF8SUB );
794                 w->fifo_in  = subtitle->fifo_in;
795                 w->fifo_out = subtitle->fifo_raw;
796                 hb_list_add( job->list_work, w );
797             }
798             
799             if( !job->indepth_scan && subtitle->source == TX3GSUB )
800             {
801                 w = hb_get_work( WORK_DECTX3GSUB );
802                 w->fifo_in  = subtitle->fifo_in;
803                 w->fifo_out = subtitle->fifo_raw;
804                 hb_list_add( job->list_work, w );
805             }
806             
807             if( !job->indepth_scan && subtitle->source == SSASUB )
808             {
809                 w = hb_get_work( WORK_DECSSASUB );
810                 w->fifo_in  = subtitle->fifo_in;
811                 w->fifo_out = subtitle->fifo_raw;
812                 hb_list_add( job->list_work, w );
813             }
814
815             if( !job->indepth_scan && 
816                 subtitle->format == PICTURESUB
817                 && subtitle->config.dest == PASSTHRUSUB )
818             {
819                 /*
820                  * Passing through a subtitle picture, this will have to
821                  * be rle encoded before muxing.
822                  */
823                 w = hb_get_work( WORK_ENCVOBSUB );
824                 w->fifo_in  = subtitle->fifo_sync;
825                 w->fifo_out = subtitle->fifo_out;
826                 w->subtitle = subtitle;
827                 hb_list_add( job->list_work, w );
828             }
829         }
830     }
831
832     if( !job->indepth_scan )
833     {
834         for( i = 0; i < hb_list_count( title->list_audio ); i++ )
835         {
836             audio = hb_list_item( title->list_audio, i );
837
838             /*
839             * Audio Decoder Thread
840             */
841             if ( ( w = hb_codec_decoder( audio->config.in.codec ) ) == NULL )
842             {
843                 hb_error("Invalid input codec: %d", audio->config.in.codec);
844                 *job->die = 1;
845                 goto cleanup;
846             }
847             w->fifo_in  = audio->priv.fifo_in;
848             w->fifo_out = audio->priv.fifo_raw;
849             w->config   = &audio->priv.config;
850             w->audio    = audio;
851             w->codec_param = audio->config.in.codec_param;
852
853             hb_list_add( job->list_work, w );
854
855             /*
856             * Audio Encoder Thread
857             */
858             if( audio->config.out.codec != HB_ACODEC_AC3 &&
859                 audio->config.out.codec != HB_ACODEC_DCA )
860             {
861                 /*
862                 * Add the encoder thread if not doing AC-3 pass through
863                 */
864                 if ( ( w = hb_codec_encoder( audio->config.out.codec ) ) == NULL )
865                 {
866                     hb_error("Invalid audio codec: %#x", audio->config.out.codec);
867                     w = NULL;
868                     *job->die = 1;
869                     goto cleanup;
870                 }
871                 w->fifo_in  = audio->priv.fifo_sync;
872                 w->fifo_out = audio->priv.fifo_out;
873                 w->config   = &audio->priv.config;
874                 w->audio    = audio;
875
876                 hb_list_add( job->list_work, w );
877             }
878         }
879     }
880     
881     if( job->chapter_markers && job->chapter_start == job->chapter_end )
882     {
883         job->chapter_markers = 0;
884         hb_log("work: only 1 chapter, disabling chapter markers");
885     }
886
887     /* Display settings */
888     hb_display_job_info( job );
889
890     /* Init read & write threads */
891     job->reader = hb_reader_init( job );
892
893
894     job->done = 0;
895
896     /* Launch processing threads */
897     for( i = 0; i < hb_list_count( job->list_work ); i++ )
898     {
899         w = hb_list_item( job->list_work, i );
900         w->done = &job->done;
901         w->thread_sleep_interval = 10;
902         if( w->init( w, job ) )
903         {
904             hb_error( "Failure to initialise thread '%s'", w->name );
905             *job->die = 1;
906             goto cleanup;
907         }
908         w->thread = hb_thread_init( w->name, work_loop, w,
909                                     HB_LOW_PRIORITY );
910     }
911
912     if ( job->indepth_scan )
913     {
914         muxer = NULL;
915         w = sync;
916         sync->done = &job->done;
917     }
918     else
919     {
920         sync->done = &job->done;
921         sync->thread_sleep_interval = 10;
922         if( sync->init( w, job ) )
923         {
924             hb_error( "Failure to initialise thread '%s'", w->name );
925             *job->die = 1;
926             goto cleanup;
927         }
928         sync->thread = hb_thread_init( sync->name, work_loop, sync,
929                                     HB_LOW_PRIORITY );
930
931         // The muxer requires track information that's set up by the encoder
932         // init routines so we have to init the muxer last.
933         muxer = hb_muxer_init( job );
934         w = muxer;
935     }
936
937     while ( !*job->die && !*w->done && w->status != HB_WORK_DONE )
938     {
939         hb_buffer_t      * buf_in, * buf_out;
940
941         buf_in = hb_fifo_get_wait( w->fifo_in );
942         if ( buf_in == NULL )
943             continue;
944         if ( *job->die )
945         {
946             if( buf_in )
947             {
948                 hb_buffer_close( &buf_in );
949             }
950             break;
951         }
952
953         buf_out = NULL;
954         w->status = w->work( w, &buf_in, &buf_out );
955
956         if( buf_in )
957         {
958             hb_buffer_close( &buf_in );
959         }
960         if ( buf_out && w->fifo_out == NULL )
961         {
962             hb_buffer_close( &buf_out );
963         }
964         if( buf_out )
965         {
966             while ( !*job->die )
967             {
968                 if ( hb_fifo_full_wait( w->fifo_out ) )
969                 {
970                     hb_fifo_push( w->fifo_out, buf_out );
971                     break;
972                 }
973             }
974         }
975     }
976
977     hb_handle_t * h = job->h;
978     hb_state_t state;
979     hb_get_state( h, &state );
980     
981     hb_log("work: average encoding speed for job is %f fps", state.param.working.rate_avg);
982
983     job->done = 1;
984     if( muxer != NULL )
985     {
986         muxer->close( muxer );
987         free( muxer );
988
989         if( sync->thread != NULL )
990         {
991             hb_thread_close( &sync->thread );
992             sync->close( sync );
993         }
994         free( sync );
995     }
996
997 cleanup:
998     /* Stop the write thread (thread_close will block until the muxer finishes) */
999     job->done = 1;
1000
1001     /* Close work objects */
1002     while( ( w = hb_list_item( job->list_work, 0 ) ) )
1003     {
1004         hb_list_rem( job->list_work, w );
1005         if( w->thread != NULL )
1006         {
1007             hb_thread_close( &w->thread );
1008             w->close( w );
1009         }
1010         free( w );
1011     }
1012
1013     hb_list_close( &job->list_work );
1014
1015     /* Stop the read thread */
1016     if( job->reader != NULL )
1017         hb_thread_close( &job->reader );
1018
1019     /* Close fifos */
1020     hb_fifo_close( &job->fifo_mpeg2 );
1021     hb_fifo_close( &job->fifo_raw );
1022     hb_fifo_close( &job->fifo_sync );
1023     hb_fifo_close( &job->fifo_render );
1024     hb_fifo_close( &job->fifo_mpeg4 );
1025
1026     for (i=0; i < hb_list_count(title->list_subtitle); i++) {
1027         subtitle =  hb_list_item( title->list_subtitle, i);
1028         if( subtitle )
1029         {
1030             hb_fifo_close( &subtitle->fifo_in );
1031             hb_fifo_close( &subtitle->fifo_raw );
1032             hb_fifo_close( &subtitle->fifo_sync );
1033             hb_fifo_close( &subtitle->fifo_out );
1034         }
1035     }
1036     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
1037     {
1038         audio = hb_list_item( title->list_audio, i );
1039         if( audio->priv.fifo_in != NULL )
1040             hb_fifo_close( &audio->priv.fifo_in );
1041         if( audio->priv.fifo_raw != NULL )
1042             hb_fifo_close( &audio->priv.fifo_raw );
1043         if( audio->priv.fifo_sync != NULL )
1044             hb_fifo_close( &audio->priv.fifo_sync );
1045         if( audio->priv.fifo_out != NULL )
1046             hb_fifo_close( &audio->priv.fifo_out );
1047     }
1048
1049     if( job->indepth_scan )
1050     {
1051         /*
1052          * Before closing the title print out our subtitle stats if we need to
1053          * Find the highest and lowest.
1054          */
1055         for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
1056         {
1057             subtitle =  hb_list_item( title->list_subtitle, i );
1058
1059             hb_log( "Subtitle stream 0x%x '%s': %d hits (%d forced)",
1060                     subtitle->id, subtitle->lang, subtitle->hits,
1061                     subtitle->forced_hits );
1062
1063             if( subtitle->hits == 0 )
1064                 continue;
1065
1066             if( subtitle->hits > subtitle_highest )
1067             {
1068                 subtitle_highest = subtitle->hits;
1069                 subtitle_highest_id = subtitle->id;
1070             }
1071
1072             if( subtitle->hits < subtitle_lowest )
1073             {
1074                 subtitle_lowest = subtitle->hits;
1075                 subtitle_lowest_id = subtitle->id;
1076             }
1077
1078             if( subtitle->forced_hits > 0 )
1079             {
1080                 if( subtitle_forced_id == 0 )
1081                 {
1082                     subtitle_forced_id = subtitle->id;
1083                 }
1084             }
1085         }
1086
1087         
1088         if( subtitle_forced_id )
1089         {
1090             /*
1091              * If there are any subtitle streams with forced subtitles
1092              * then select it in preference to the lowest.
1093              */
1094             subtitle_hit = subtitle_forced_id;
1095             hb_log("Found a subtitle candidate id 0x%x (contains forced subs)",
1096                    subtitle_hit);
1097         } else if( subtitle_lowest < subtitle_highest )
1098         {
1099             /*
1100              * OK we have more than one, and the lowest is lower,
1101              * but how much lower to qualify for turning it on by
1102              * default?
1103              *
1104              * Let's say 10% as a default.
1105              */
1106             if( subtitle_lowest < ( subtitle_highest * 0.1 ) )
1107             {
1108                 subtitle_hit = subtitle_lowest_id;
1109                 hb_log( "Found a subtitle candidate id 0x%x",
1110                         subtitle_hit );
1111             } else {
1112                 hb_log( "No candidate subtitle detected during subtitle-scan");
1113             }
1114         }
1115     }
1116
1117     if( job->indepth_scan )
1118     {
1119         for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
1120         {
1121             subtitle =  hb_list_item( title->list_subtitle, i );
1122             if( subtitle->id == subtitle_hit )
1123             {
1124                 subtitle->config = job->select_subtitle_config;
1125                 hb_list_rem( title->list_subtitle, subtitle );
1126                 interjob->select_subtitle = subtitle;
1127                 break;
1128             }
1129         }
1130     }
1131
1132     if( job->filters )
1133     {
1134         for( i = 0; i < hb_list_count( job->filters ); i++ )
1135         {
1136             hb_filter_object_t * filter = hb_list_item( job->filters, i );
1137             hb_filter_close( &filter );
1138         }
1139         hb_list_close( &job->filters );
1140     }
1141
1142     hb_buffer_pool_free();
1143
1144     hb_title_close( &job->title );
1145     free( job );
1146 }
1147
1148 /**
1149  * Performs the work object's specific work function.
1150  * Loops calling work function for associated work object. Sleeps when fifo is full.
1151  * Monitors work done indicator.
1152  * Exits loop when work indiactor is set.
1153  * @param _w Handle to work object.
1154  */
1155 static void work_loop( void * _w )
1156 {
1157     hb_work_object_t * w = _w;
1158     hb_buffer_t      * buf_in, * buf_out;
1159
1160     while( !*w->done && w->status != HB_WORK_DONE )
1161     {
1162         buf_in = hb_fifo_get_wait( w->fifo_in );
1163         if ( buf_in == NULL )
1164             continue;
1165         if ( *w->done )
1166         {
1167             if( buf_in )
1168             {
1169                 hb_buffer_close( &buf_in );
1170             }
1171             break;
1172         }
1173
1174         w->status = w->work( w, &buf_in, &buf_out );
1175
1176         // Propagate any chapter breaks for the worker if and only if the
1177         // output frame has the same time stamp as the input frame (any
1178         // worker that delays frames has to propagate the chapter marks itself
1179         // and workers that move chapter marks to a different time should set
1180         // 'buf_in' to NULL so that this code won't generate spurious duplicates.)
1181         if( buf_in && buf_out && buf_in->new_chap && buf_in->start == buf_out->start)
1182         {
1183             // restore log below to debug chapter mark propagation problems
1184             //hb_log("work %s: Copying Chapter Break @ %"PRId64, w->name, buf_in->start);
1185             buf_out->new_chap = buf_in->new_chap;
1186         }
1187
1188         if( buf_in )
1189         {
1190             hb_buffer_close( &buf_in );
1191         }
1192         if ( buf_out && w->fifo_out == NULL )
1193         {
1194             hb_buffer_close( &buf_out );
1195         }
1196         if( buf_out )
1197         {
1198             while ( !*w->done )
1199             {
1200                 if ( hb_fifo_full_wait( w->fifo_out ) )
1201                 {
1202                     hb_fifo_push( w->fifo_out, buf_out );
1203                     break;
1204                 }
1205             }
1206         }
1207     }
1208     // Consume data in incoming fifo till job complete so that
1209     // residual data does not stall the pipeline
1210     while( !*w->done )
1211     {
1212         buf_in = hb_fifo_get_wait( w->fifo_in );
1213         if ( buf_in != NULL )
1214             hb_buffer_close( &buf_in );
1215     }
1216 }