OSDN Git Service

No need to check the mixdown settings if pass-through is requested.
[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  * Job initialization rountine.
114  * Initializes fifos.
115  * Creates work objects for synchronizer, video decoder, video renderer, video decoder, audio decoder, audio encoder, reader, muxer.
116  * Launches thread for each work object with work_loop.
117  * Loops while monitoring status of work threads and fifos.
118  * Exits loop when conversion is done and fifos are empty.
119  * Closes threads and frees fifos.
120  * @param job Handle work hb_job_t.
121  * @param cpu_count number of CPUs found in system.
122  */
123 static void do_job( hb_job_t * job, int cpu_count )
124 {
125     hb_title_t    * title;
126     int             i, j;
127     hb_work_object_t * w;
128     hb_work_object_t * final_w = NULL;
129
130     hb_audio_t   * audio;
131     hb_subtitle_t * subtitle;
132     int done;
133     unsigned int subtitle_highest = 0;
134     unsigned int subtitle_highest_id = 0;
135     unsigned int subtitle_lowest = -1;
136     unsigned int subtitle_lowest_id = 0;
137     unsigned int subtitle_forced_id = 0;
138     unsigned int subtitle_hit = 0;
139
140     title = job->title;
141
142     job->list_work = hb_list_init();
143
144     hb_log( "starting job" );
145     hb_log( " + device %s", title->dvd );
146     hb_log( " + title %d, chapter(s) %d to %d", title->index,
147             job->chapter_start, job->chapter_end );
148     if ( job->pixel_ratio == 1 )
149     {
150         /* Correct the geometry of the output movie when using PixelRatio */
151         job->height=title->height-job->crop[0]-job->crop[1];
152         job->width=title->width-job->crop[2]-job->crop[3];
153     }
154     else if ( job->pixel_ratio == 2 )
155     {
156
157         /* While keeping the DVD storage aspect, resize the job width and height
158            so they fit into the user's specified dimensions. */
159         hb_set_anamorphic_size(job, &job->width, &job->height, &job->pixel_aspect_width, &job->pixel_aspect_height);
160     }
161
162     if( job->pixel_ratio && job->vcodec == HB_VCODEC_FFMPEG)
163     {
164         /* Just to make working with ffmpeg even more fun,
165            lavc's MPEG-4 encoder can't handle PAR values >= 255,
166            even though AVRational does. Adjusting downwards
167            distorts the display aspect slightly, but such is life. */
168         while ((job->pixel_aspect_width & ~0xFF) ||
169                (job->pixel_aspect_height & ~0xFF))
170         {
171             job->pixel_aspect_width >>= 1;
172             job->pixel_aspect_height >>= 1;
173         }
174     }
175
176         /* Keep width and height within these boundaries,
177            but ignore for "loose" anamorphic encodes, for
178            which this stuff is covered in the pixel_ratio
179            section right above.*/
180         if (job->maxHeight && (job->height > job->maxHeight) && (job->pixel_ratio != 2))
181         {
182                 job->height = job->maxHeight;
183                 hb_fix_aspect( job, HB_KEEP_HEIGHT );
184                 hb_log("Height out of bounds, scaling down to %i", job->maxHeight);
185                 hb_log("New dimensions %i * %i", job->width, job->height);
186         }
187         if (job->maxWidth && (job->width > job->maxWidth) && (job->pixel_ratio != 2))
188         {
189                 job->width = job->maxWidth;
190                 hb_fix_aspect( job, HB_KEEP_WIDTH );
191                 hb_log("Width out of bounds, scaling down to %i", job->maxWidth);
192                 hb_log("New dimensions %i * %i", job->width, job->height);
193         }
194
195     hb_log( " + %dx%d -> %dx%d, crop %d/%d/%d/%d",
196             title->width, title->height, job->width, job->height,
197             job->crop[0], job->crop[1], job->crop[2], job->crop[3] );
198
199     if ( job->grayscale )
200         hb_log( " + grayscale mode" );
201
202     if ( job->vfr )
203     {
204         job->vrate_base = title->rate_base;
205
206         int detelecine_present = 0;
207         if ( job->filters )
208         {
209             for( i = 0; i < hb_list_count( job->filters ); i++ )
210             {
211                 hb_filter_object_t * filter = hb_list_item( job->filters, i );
212                 if (filter->id == FILTER_DETELECINE)
213                     detelecine_present = 1;
214             }
215         }
216
217         if (!detelecine_present)
218         {
219             /* Allocate the filter. */
220             hb_filter_object_t * filter =  malloc( sizeof( hb_filter_object_t ) );
221
222             /* Copy in the contents of the detelecine struct. */
223             memcpy( filter, &hb_filter_detelecine, sizeof( hb_filter_object_t ) );
224
225             /* Set the name to a copy of the template name so render.c has something to free. */
226             filter->name = strdup(hb_filter_detelecine.name);
227
228             /* Add it to the list. */
229             hb_list_add( job->filters, filter );
230
231             hb_log("work: VFR mode -- adding detelecine filter");
232         }
233     }
234
235     if( hb_list_count( job->filters ) )
236     {
237         hb_log(" + filters");
238         for( i = 0; i < hb_list_count( job->filters ); i++ )
239         {
240             hb_filter_object_t * filter = hb_list_item( job->filters, i );
241             if (filter->settings)
242                 hb_log("   + %s (%s)", filter->name, filter->settings);
243             else
244                 hb_log("   + %s (default settings)", filter->name);
245         }
246     }
247
248     if( job->vfr)
249     {
250         hb_log( " + video frame rate: %.3f fps -> variable fps", (float) job->vrate /
251             (float) job->vrate_base );
252     }
253     else
254     {
255         hb_log( " + video frame rate: %.3f fps", (float) job->vrate / (float) job->vrate_base);
256     }
257
258     if( job->vquality >= 0.0 && job->vquality <= 1.0 )
259     {
260         hb_log( " + video quality %.2f", job->vquality );
261     }
262     else
263     {
264         hb_log( " + video bitrate %d kbps, pass %d", job->vbitrate, job->pass );
265     }
266
267         hb_log (" + PixelRatio: %d, width:%d, height: %d",job->pixel_ratio,job->width, job->height);
268     job->fifo_mpeg2  = hb_fifo_init( 2048 );
269     job->fifo_raw    = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
270     job->fifo_sync   = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
271     job->fifo_render = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
272     job->fifo_mpeg4  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
273
274     /* Synchronization */
275     hb_list_add( job->list_work, ( w = hb_get_work( WORK_SYNC ) ) );
276     w->fifo_in  = NULL;
277     w->fifo_out = NULL;
278
279     /* Video decoder */
280     int vcodec = title->video_codec? title->video_codec : WORK_DECMPEG2;
281     hb_list_add( job->list_work, ( w = hb_get_work( vcodec ) ) );
282     w->codec_param = title->video_codec_param;
283     w->fifo_in  = job->fifo_mpeg2;
284     w->fifo_out = job->fifo_raw;
285
286     /* Video renderer */
287     hb_list_add( job->list_work, ( w = hb_get_work( WORK_RENDER ) ) );
288     w->fifo_in  = job->fifo_sync;
289     w->fifo_out = job->fifo_render;
290     if ( job->indepth_scan )
291     {
292         /*
293          * if we're doing a subtitle scan the last thread in the
294          * processing pipeline is render - remember it so we can
295          * wait for its completion below.
296          */
297         final_w = w;
298     }
299
300     /* Video encoder */
301     switch( job->vcodec )
302     {
303         case HB_VCODEC_FFMPEG:
304             hb_log( " + encoder FFmpeg" );
305             w = hb_get_work( WORK_ENCAVCODEC );
306             break;
307         case HB_VCODEC_XVID:
308             hb_log( " + encoder XviD" );
309             w = hb_get_work( WORK_ENCXVID );
310             break;
311         case HB_VCODEC_X264:
312             hb_log( " + encoder x264" );
313             if( job->x264opts != NULL && *job->x264opts != '\0' )
314                 hb_log( "   + x264 options: %s", job->x264opts);
315             w = hb_get_work( WORK_ENCX264 );
316             break;
317         case HB_VCODEC_THEORA:
318             hb_log( " + encoder Theora" );
319             w = hb_get_work( WORK_ENCTHEORA );
320             break;
321     }
322     w->fifo_in  = job->fifo_render;
323     w->fifo_out = job->fifo_mpeg4;
324     w->config   = &job->config;
325
326     hb_list_add( job->list_work, w );
327     if ( !job->indepth_scan )
328     {
329         /*
330          * if we're not doing a subtitle scan the last thread in the
331          * processing pipeline is the encoder - remember it so we can
332          * wait for its completion below.
333          */
334         final_w = w;
335     }
336
337     if( job->select_subtitle && !job->indepth_scan )
338     {
339         /*
340          * Must be second pass of a two pass with subtitle scan enabled, so
341          * add the subtitle that we found on the first pass for use in this
342          * pass.
343          */
344         if (*(job->select_subtitle))
345         {
346             hb_list_add( title->list_subtitle, *( job->select_subtitle ) );
347         }
348     }
349
350     for( i=0; i < hb_list_count(title->list_subtitle); i++ )
351     {
352         subtitle =  hb_list_item( title->list_subtitle, i );
353
354         if( subtitle )
355         {
356             hb_log( " + subtitle %x, %s", subtitle->id, subtitle->lang );
357
358             subtitle->fifo_in  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
359             subtitle->fifo_raw = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
360
361             /*
362              * Disable forced subtitles if we didn't find any in the scan
363              * so that we display normal subtitles instead.
364              *
365              * select_subtitle implies that we did a scan.
366              */
367             if( !job->indepth_scan && job->subtitle_force &&
368                 job->select_subtitle )
369             {
370                 if( subtitle->forced_hits == 0 )
371                 {
372                     job->subtitle_force = 0;
373                 }
374             }
375
376             if (!job->indepth_scan || job->subtitle_force) {
377                 /*
378                  * Don't add threads for subtitles when we are scanning, unless
379                  * looking for forced subtitles.
380                  */
381                 w = hb_get_work( WORK_DECSUB );
382                 w->fifo_in  = subtitle->fifo_in;
383                 w->fifo_out = subtitle->fifo_raw;
384                 hb_list_add( job->list_work, w );
385             }
386         }
387     }
388
389     /* if we are doing passthru, and the input codec is not the same as the output
390      * codec, then remove this audio from the job */
391     /* otherwise, Bad Things will happen */
392     for( i = 0; i < hb_list_count( title->list_audio ); )
393     {
394         audio = hb_list_item( title->list_audio, i );
395         if( ( ( audio->config.out.codec == HB_ACODEC_AC3 ) && ( audio->config.in.codec != HB_ACODEC_AC3 ) ) ||
396             ( ( audio->config.out.codec == HB_ACODEC_DCA ) && ( audio->config.in.codec != HB_ACODEC_DCA ) ) )
397         {
398             hb_log( "Passthru requested and input codec is not the same as output codec for track %d",
399                     audio->config.out.track );
400             hb_list_rem( title->list_audio, audio );
401             free( audio );
402             continue;
403         }
404         /* Adjust output track number, in case we removed one.
405          * Output tracks sadly still need to be in sequential order.
406          */
407         audio->config.out.track = i++;
408     }
409
410     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
411     {
412         audio = hb_list_item( title->list_audio, i );
413         hb_log( " + audio track %d", audio->config.out.track );
414         hb_log( "   + input track %d", audio->config.in.track );
415         if( (audio->config.out.codec == HB_ACODEC_AC3) || (audio->config.out.codec == HB_ACODEC_DCA) )
416         {
417             hb_log( "   + %s passthrough", (audio->config.out.codec == HB_ACODEC_AC3) ?
418                 "AC3" : "DCA" );
419         }
420         else
421         {
422             hb_log( "   + audio %d kbps, %d Hz", audio->config.out.bitrate, audio->config.out.samplerate );
423             hb_log( "   + encoder %s", ( audio->config.out.codec == HB_ACODEC_FAAC ) ?
424             "faac" : ( ( audio->config.out.codec == HB_ACODEC_LAME ) ? "lame" :
425             "vorbis" ) );
426             if ( audio->config.out.dynamic_range_compression > 1 )
427                 hb_log("   + dynamic range compression: %f", audio->config.out.dynamic_range_compression);
428         }
429
430         hb_log( "     + %x, %s", audio->id, audio->config.lang.description );
431
432         if( audio->config.out.codec != audio->config.in.codec )
433         {
434             /* sense-check the current mixdown options */
435
436             /* log the requested mixdown */
437             for (j = 0; j < hb_audio_mixdowns_count; j++) {
438                 if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
439                     hb_log( "       + Requested mixdown: %s (%s)", hb_audio_mixdowns[j].human_readable_name, hb_audio_mixdowns[j].internal_name );
440                     break;
441                 }
442             }
443
444             /* sense-check the requested mixdown */
445
446             if( audio->config.out.mixdown == 0 &&
447                 audio->config.out.codec != HB_ACODEC_AC3 )
448             {
449                 /*
450                  * Mixdown wasn't specified and this is not pass-through,
451                  * set a default mixdown of stereo.
452                  */
453                 audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
454             }
455
456             // Here we try to sanitize the audio input to output mapping.
457             // Constraints are:
458             //   1. only the AC3 & DCA decoder libraries currently support mixdown
459             //   2. the lame encoder library only supports stereo.
460             // So if the encoder is lame we need the output to be stereo (or multichannel
461             // matrixed into stereo like dpl). If the decoder is not AC3 or DCA the
462             // encoder has to handle the input format since we can't do a mixdown.
463 #define CAN_MIXDOWN(a) ( a->config.in.codec & (HB_ACODEC_AC3|HB_ACODEC_DCA) )
464 #define STEREO_ONLY(a) ( a->config.out.codec & HB_ACODEC_LAME )
465
466             switch (audio->config.in.channel_layout & HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK)
467             {
468                 // stereo input or something not handled below
469                 default:
470                 case HB_INPUT_CH_LAYOUT_STEREO:
471                     // mono gets mixed up to stereo & more than stereo gets mixed down
472                     if ( STEREO_ONLY( audio ) ||
473                          audio->config.out.mixdown > HB_AMIXDOWN_STEREO)
474                     {
475                         audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
476                     }
477                     break;
478
479                 // mono input
480                 case HB_INPUT_CH_LAYOUT_MONO:
481                     if ( STEREO_ONLY( audio ) )
482                     {
483                         if ( !CAN_MIXDOWN( audio ) )
484                         {
485                             // XXX we're hosed - we can't mix up & lame can't handle
486                             // the input format. The user shouldn't be able to make
487                             // this choice. It's too late to do anything about it now
488                             // so complain in the log & let things abort in lame.
489                             hb_log( "ERROR - can't use lame mp3 audio output with "
490                                     "mono audio stream %x - output will be messed up",
491                                     audio->id );
492                         }
493                         audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
494                     }
495                     else
496                     {
497                         // everything else passes through
498                         audio->config.out.mixdown = HB_AMIXDOWN_MONO;
499                     }
500                     break;
501
502                 // dolby (DPL1 aka Dolby Surround = 4.0 matrix-encoded) input
503                 // the A52 flags don't allow for a way to distinguish between DPL1 and
504                 // DPL2 on a DVD so we always assume a DPL1 source for A52_DOLBY.
505                 case HB_INPUT_CH_LAYOUT_DOLBY:
506                     if ( STEREO_ONLY( audio ) || !CAN_MIXDOWN( audio ) ||
507                          audio->config.out.mixdown > HB_AMIXDOWN_DOLBY )
508                     {
509                         audio->config.out.mixdown = HB_AMIXDOWN_DOLBY;
510                     }
511                     break;
512
513                 // 4 channel discrete
514                 case HB_INPUT_CH_LAYOUT_2F2R:
515                 case HB_INPUT_CH_LAYOUT_3F1R:
516                     if ( CAN_MIXDOWN( audio ) )
517                     {
518                         if ( STEREO_ONLY( audio ) ||
519                              audio->config.out.mixdown > HB_AMIXDOWN_DOLBY )
520                         {
521                             audio->config.out.mixdown = HB_AMIXDOWN_DOLBY;
522                         }
523                     }
524                     else
525                     {
526                         // XXX we can't mixdown & don't have any way to specify
527                         // 4 channel discrete output so we're hosed.
528                         hb_log( "ERROR - can't handle 4 channel discrete audio stream "
529                                 "%x - output will be messed up", audio->id );
530                     }
531                     break;
532
533                 // 5 or 6 channel discrete
534                 case HB_INPUT_CH_LAYOUT_3F2R:
535                     if ( CAN_MIXDOWN( audio ) )
536                     {
537                         if ( STEREO_ONLY( audio ) )
538                         {
539                             if ( audio->config.out.mixdown < HB_AMIXDOWN_STEREO )
540                             {
541                                 audio->config.out.mixdown = HB_AMIXDOWN_STEREO;
542                             }
543                             else if ( audio->config.out.mixdown > HB_AMIXDOWN_DOLBYPLII )
544                             {
545                                 audio->config.out.mixdown = HB_AMIXDOWN_DOLBYPLII;
546                             }
547                         }
548                         else if ( ! ( audio->config.in.channel_layout &
549                                         HB_INPUT_CH_LAYOUT_HAS_LFE ) )
550                         {
551                             // we don't do 5 channel discrete so mixdown to DPLII
552                             audio->config.out.mixdown = HB_AMIXDOWN_DOLBYPLII;
553                         }
554                     }
555                     else if ( ! ( audio->config.in.channel_layout &
556                                         HB_INPUT_CH_LAYOUT_HAS_LFE ) )
557                     {
558                         // XXX we can't mixdown & don't have any way to specify
559                         // 5 channel discrete output so we're hosed.
560                         hb_log( "ERROR - can't handle 5 channel discrete audio stream "
561                                 "%x - output will be messed up", audio->id );
562                     }
563                     else
564                     {
565                         // we can't mixdown so force 6 channel discrete
566                         audio->config.out.mixdown = HB_AMIXDOWN_6CH;
567                     }
568                     break;
569             }
570
571             /* log the output mixdown */
572             for (j = 0; j < hb_audio_mixdowns_count; j++) {
573                 if (hb_audio_mixdowns[j].amixdown == audio->config.out.mixdown) {
574                     hb_log( "       + Actual mixdown: %s (%s)", hb_audio_mixdowns[j].human_readable_name, hb_audio_mixdowns[j].internal_name );
575                     break;
576                 }
577             }
578         }
579
580         if (audio->config.out.codec == HB_ACODEC_VORBIS)
581             audio->priv.config.vorbis.language = audio->config.lang.simple;
582
583         /* set up the audio work structures */
584         audio->priv.fifo_in   = hb_fifo_init( 256 );
585         audio->priv.fifo_raw  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
586         audio->priv.fifo_sync = hb_fifo_init( 256 );
587         audio->priv.fifo_out  = hb_fifo_init( FIFO_CPU_MULT * cpu_count );
588
589
590         /*
591          * Audio Decoder Thread
592          */
593         if ( ( w = hb_codec_decoder( audio->config.in.codec ) ) == NULL )
594         {
595             hb_error("Invalid input codec: %d", audio->config.in.codec);
596             *job->die = 1;
597             goto cleanup;
598         }
599         w->fifo_in  = audio->priv.fifo_in;
600         w->fifo_out = audio->priv.fifo_raw;
601         w->config   = &audio->priv.config;
602         w->audio    = audio;
603         w->codec_param = audio->config.in.codec_param;
604
605         hb_list_add( job->list_work, w );
606
607         /*
608          * Audio Encoder Thread
609          */
610         if( audio->config.out.codec != HB_ACODEC_AC3 )
611         {
612             /*
613              * Add the encoder thread if not doing AC-3 pass through
614              */
615             if ( ( w = hb_codec_encoder( audio->config.out.codec ) ) == NULL )
616             {
617                 hb_error("Invalid audio codec: %#x", audio->config.out.codec);
618                 w = NULL;
619                 *job->die = 1;
620                 goto cleanup;
621             }
622             w->fifo_in  = audio->priv.fifo_sync;
623             w->fifo_out = audio->priv.fifo_out;
624             w->config   = &audio->priv.config;
625             w->audio    = audio;
626
627             hb_list_add( job->list_work, w );
628         }
629     }
630
631     /* Init read & write threads */
632     job->reader = hb_reader_init( job );
633
634     hb_log( " + output: %s", job->file );
635     job->muxer = hb_muxer_init( job );
636
637     job->done = 0;
638
639     /* Launch processing threads */
640     for( i = 1; i < hb_list_count( job->list_work ); i++ )
641     {
642         w = hb_list_item( job->list_work, i );
643         w->done = &job->done;
644         w->thread_sleep_interval = 10;
645         w->init( w, job );
646         w->thread = hb_thread_init( w->name, work_loop, w,
647                                     HB_LOW_PRIORITY );
648     }
649
650     done = 0;
651     w = hb_list_item( job->list_work, 0 );
652     w->thread_sleep_interval = 50;
653     w->init( w, job );
654     while( !*job->die )
655     {
656         if( ( w->status = w->work( w, NULL, NULL ) ) == HB_WORK_DONE )
657         {
658             done = 1;
659         }
660         if( done &&
661             final_w->status == HB_WORK_DONE &&
662             !hb_fifo_size( job->fifo_mpeg4 ) )
663         {
664             break;
665         }
666         hb_snooze( w->thread_sleep_interval );
667     }
668     hb_list_rem( job->list_work, w );
669     w->close( w );
670     free( w );
671     job->done = 1;
672
673 cleanup:
674     /* Close work objects */
675     while( ( w = hb_list_item( job->list_work, 0 ) ) )
676     {
677         hb_list_rem( job->list_work, w );
678         if( w->thread != NULL )
679         {
680             hb_thread_close( &w->thread );
681             w->close( w );
682         }
683         free( w );
684     }
685
686     hb_list_close( &job->list_work );
687
688     /* Stop read & write threads */
689     if( job->reader != NULL )
690         hb_thread_close( &job->reader );
691     if( job->muxer != NULL )
692         hb_thread_close( &job->muxer );
693
694     /* Close fifos */
695     hb_fifo_close( &job->fifo_mpeg2 );
696     hb_fifo_close( &job->fifo_raw );
697     hb_fifo_close( &job->fifo_sync );
698     hb_fifo_close( &job->fifo_render );
699     hb_fifo_close( &job->fifo_mpeg4 );
700
701     for (i=0; i < hb_list_count(title->list_subtitle); i++) {
702         subtitle =  hb_list_item( title->list_subtitle, i);
703         if( subtitle )
704         {
705             hb_fifo_close( &subtitle->fifo_in );
706             hb_fifo_close( &subtitle->fifo_raw );
707         }
708     }
709     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
710     {
711         audio = hb_list_item( title->list_audio, i );
712         if( audio->priv.fifo_in != NULL )
713             hb_fifo_close( &audio->priv.fifo_in );
714         if( audio->priv.fifo_raw != NULL )
715             hb_fifo_close( &audio->priv.fifo_raw );
716         if( audio->priv.fifo_sync != NULL )
717             hb_fifo_close( &audio->priv.fifo_sync );
718         if( audio->priv.fifo_out != NULL )
719             hb_fifo_close( &audio->priv.fifo_out );
720     }
721
722     if( job->indepth_scan )
723     {
724         /*
725          * Before closing the title print out our subtitle stats if we need to
726          * Find the highest and lowest.
727          */
728         for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
729         {
730             subtitle =  hb_list_item( title->list_subtitle, i );
731             hb_log( "Subtitle stream 0x%x '%s': %d hits (%d forced)",
732                     subtitle->id, subtitle->lang, subtitle->hits,
733                     subtitle->forced_hits );
734             if( subtitle->hits > subtitle_highest )
735             {
736                 subtitle_highest = subtitle->hits;
737                 subtitle_highest_id = subtitle->id;
738             }
739
740             if( subtitle->hits < subtitle_lowest )
741             {
742                 subtitle_lowest = subtitle->hits;
743                 subtitle_lowest_id = subtitle->id;
744             }
745
746             if( subtitle->forced_hits > 0 )
747             {
748                 if( subtitle_forced_id == 0 )
749                 {
750                     subtitle_forced_id = subtitle->id;
751                 }
752             }
753         }
754
755         if( job->native_language ) {
756             /*
757              * We still have a native_language, so the audio and subtitles are
758              * different, so in this case it is a foreign film and we want to
759              * select the subtitle with the highest hits in our language.
760              */
761             subtitle_hit = subtitle_highest_id;
762             hb_log( "Found a native-language subtitle id 0x%x", subtitle_hit);
763         } else {
764             if( subtitle_forced_id )
765             {
766                 /*
767                  * If there are any subtitle streams with forced subtitles
768                  * then select it in preference to the lowest.
769                  */
770                 subtitle_hit = subtitle_forced_id;
771                 hb_log("Found a subtitle candidate id 0x%x (contains forced subs)",
772                        subtitle_hit);
773             } else if( subtitle_lowest < subtitle_highest )
774             {
775                 /*
776                  * OK we have more than one, and the lowest is lower,
777                  * but how much lower to qualify for turning it on by
778                  * default?
779                  *
780                  * Let's say 10% as a default.
781                  */
782                 if( subtitle_lowest < ( subtitle_highest * 0.1 ) )
783                 {
784                     subtitle_hit = subtitle_lowest_id;
785                     hb_log( "Found a subtitle candidate id 0x%x",
786                             subtitle_hit );
787                 } else {
788                     hb_log( "No candidate subtitle detected during subtitle-scan");
789                 }
790             }
791         }
792     }
793
794     if( job->select_subtitle )
795     {
796         if( job->indepth_scan )
797         {
798             for( i=0; i < hb_list_count( title->list_subtitle ); i++ )
799             {
800                 subtitle =  hb_list_item( title->list_subtitle, i );
801                 if( subtitle->id == subtitle_hit )
802                 {
803                     hb_list_rem( title->list_subtitle, subtitle );
804                     *( job->select_subtitle ) = subtitle;
805                 }
806             }
807         } else {
808             /*
809              * Must be the end of pass 0 or 2 - we don't need this anymore.
810              *
811              * Have to put the subtitle list back together in the title though
812              * or the GUI will have a hissy fit.
813              */
814             free( job->select_subtitle );
815             job->select_subtitle = NULL;
816         }
817     }
818
819     if( job->filters )
820     {
821         for( i = 0; i < hb_list_count( job->filters ); i++ )
822         {
823             hb_filter_object_t * filter = hb_list_item( job->filters, i );
824             hb_filter_close( &filter );
825         }
826         hb_list_close( &job->filters );
827     }
828
829     hb_buffer_pool_free();
830
831     hb_title_close( &job->title );
832     free( job );
833 }
834
835 /**
836  * Performs the work object's specific work function.
837  * Loops calling work function for associated work object. Sleeps when fifo is full.
838  * Monitors work done indicator.
839  * Exits loop when work indiactor is set.
840  * @param _w Handle to work object.
841  */
842 static void work_loop( void * _w )
843 {
844     hb_work_object_t * w = _w;
845     hb_buffer_t      * buf_in, * buf_out;
846
847     while( !*w->done )
848     {
849 #if 0
850         hb_lock( job->pause );
851         hb_unlock( job->pause );
852 #endif
853         if( hb_fifo_is_full( w->fifo_out ) ||
854 //        if( (hb_fifo_percent_full( w->fifo_out ) > 0.8) ||
855             !( buf_in = hb_fifo_get( w->fifo_in ) ) )
856         {
857             hb_snooze( w->thread_sleep_interval );
858 //                      w->thread_sleep_interval += 1;
859             continue;
860         }
861 //              w->thread_sleep_interval = MAX(1, (w->thread_sleep_interval - 1));
862
863         w->status = w->work( w, &buf_in, &buf_out );
864
865         // Propagate any chapter breaks for the worker if and only if the
866         // output frame has the same time stamp as the input frame (any
867         // worker that delays frames has to propagate the chapter marks itself
868         // and workers that move chapter marks to a different time should set
869         // 'buf_in' to NULL so that this code won't generate spurious duplicates.)
870         if( buf_in && buf_out && buf_in->new_chap && buf_in->start == buf_out->start)
871         {
872             // restore log below to debug chapter mark propagation problems
873             //hb_log("work %s: Copying Chapter Break @ %lld", w->name, buf_in->start);
874             buf_out->new_chap = buf_in->new_chap;
875         }
876
877         if( buf_in )
878         {
879             hb_buffer_close( &buf_in );
880         }
881         if( buf_out )
882         {
883             hb_fifo_push( w->fifo_out, buf_out );
884         }
885     }
886 }