OSDN Git Service

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