OSDN Git Service

jbrjake's loose pixel ratio patch.
[handbrake-jp/handbrake-jp-git.git] / libhb / hb.c
1 #include "hb.h"
2
3 #include "ffmpeg/avcodec.h"
4 #include "ffmpeg/swscale.h"
5
6 struct hb_handle_s
7 {
8     /* The "Check for update" thread */
9     int            build;
10     char           version[16];
11     hb_thread_t  * update_thread;
12
13     /* This thread's only purpose is to check other threads'
14        states */
15     volatile int   die;
16     hb_thread_t  * main_thread;
17     int            pid;
18
19     /* DVD/file scan thread */
20     hb_list_t    * list_title;
21     hb_thread_t  * scan_thread;
22
23     /* The thread which processes the jobs. Others threads are launched
24        from this one (see work.c) */
25     hb_list_t    * jobs;
26     hb_job_t     * current_job;
27     int            job_count;
28     int            job_count_permanent;
29     volatile int   work_die;
30     int            work_error;
31     hb_thread_t  * work_thread;
32
33     int            cpu_count;
34
35     hb_lock_t    * state_lock;
36     hb_state_t     state;
37     
38     int            paused;
39     hb_lock_t    * pause_lock;
40     /* For MacGui active queue
41        increments each time the scan thread completes*/
42     int            scanCount;
43     
44 };
45
46 hb_work_object_t * hb_objects = NULL;
47
48 static void thread_func( void * );
49
50 /**
51  * Registers work objects, by adding the work object to a liked list.
52  * @param w Handle to hb_work_object_t to register.
53  */
54 void hb_register( hb_work_object_t * w )
55 {
56     w->next    = hb_objects;
57     hb_objects = w;
58 }
59
60 /**
61  * libhb initialization routine.
62  * @param verbose HB_DEBUG_NONE or HB_DEBUG_ALL.
63  * @param update_check signals libhb to check for updated version from HandBrake website.
64  * @return Handle to hb_handle_t for use on all subsequent calls to libhb.
65  */
66 hb_handle_t * hb_init_real( int verbose, int update_check )
67 {
68     hb_handle_t * h = calloc( sizeof( hb_handle_t ), 1 );
69     uint64_t      date;
70
71     /* See hb_log() in common.c */
72     if( verbose > HB_DEBUG_NONE )
73     {
74         putenv( "HB_DEBUG=1" );
75                 av_log_set_level(AV_LOG_DEBUG);
76     }
77
78     /* Check for an update on the website if asked to */
79     h->build = -1;
80
81     if( update_check )
82     {
83         hb_log( "hb_init: checking for updates" );
84         date             = hb_get_date();
85         h->update_thread = hb_update_init( &h->build, h->version );
86
87         for( ;; )
88         {
89             if( hb_thread_has_exited( h->update_thread ) )
90             {
91                 /* Immediate success or failure */
92                 hb_thread_close( &h->update_thread );
93                 break;
94             }
95             if( hb_get_date() > date + 1000 )
96             {
97                 /* Still nothing after one second. Connection problem,
98                    let the thread die */
99                 hb_log( "hb_init: connection problem, not waiting for "
100                         "update_thread" );
101                 break;
102             }
103             hb_snooze( 500 );
104         }
105     }
106
107     /*
108      * Initialise buffer pool
109      */
110     hb_buffer_pool_init();
111
112     /* CPU count detection */
113     hb_log( "hb_init: checking cpu count" );
114     h->cpu_count = hb_get_cpu_count();
115
116     h->list_title = hb_list_init();
117     h->jobs       = hb_list_init();
118
119     h->state_lock  = hb_lock_init();
120     h->state.state = HB_STATE_IDLE;
121
122     h->pause_lock = hb_lock_init();
123
124     /* libavcodec */
125     avcodec_init();
126     avcodec_register_all();
127     av_register_codec_parser( &mpegaudio_parser);
128     
129     /* Start library thread */
130     hb_log( "hb_init: starting libhb thread" );
131     h->die         = 0;
132     h->main_thread = hb_thread_init( "libhb", thread_func, h,
133                                      HB_NORMAL_PRIORITY );
134
135     return h;
136         
137         /* Set the scan count to start at 0 */
138         //scan_count = 0;
139 }
140
141 /**
142  * libhb initialization routine.
143  * This version is to use when calling the dylib, the macro hb_init isn't available from a dylib call!
144  * @param verbose HB_DEBUG_NONE or HB_DEBUG_ALL.
145  * @param update_check signals libhb to check for updated version from HandBrake website.
146  * @return Handle to hb_handle_t for use on all subsequent calls to libhb.
147  */
148 hb_handle_t * hb_init_dl( int verbose, int update_check )
149 {
150     hb_handle_t * h = calloc( sizeof( hb_handle_t ), 1 );
151     uint64_t      date;
152
153     /* See hb_log() in common.c */
154     if( verbose > HB_DEBUG_NONE )
155     {
156         putenv( "HB_DEBUG=1" );
157                 av_log_set_level(AV_LOG_DEBUG);
158     }
159
160     /* Check for an update on the website if asked to */
161     h->build = -1;
162
163     if( update_check )
164     {
165         hb_log( "hb_init: checking for updates" );
166         date             = hb_get_date();
167         h->update_thread = hb_update_init( &h->build, h->version );
168
169         for( ;; )
170         {
171             if( hb_thread_has_exited( h->update_thread ) )
172             {
173                 /* Immediate success or failure */
174                 hb_thread_close( &h->update_thread );
175                 break;
176             }
177             if( hb_get_date() > date + 1000 )
178             {
179                 /* Still nothing after one second. Connection problem,
180                    let the thread die */
181                 hb_log( "hb_init: connection problem, not waiting for "
182                         "update_thread" );
183                 break;
184             }
185             hb_snooze( 500 );
186         }
187     }
188
189     /* CPU count detection */
190     hb_log( "hb_init: checking cpu count" );
191     h->cpu_count = hb_get_cpu_count();
192
193     h->list_title = hb_list_init();
194     h->jobs       = hb_list_init();
195     h->current_job = NULL;
196
197     h->state_lock  = hb_lock_init();
198     h->state.state = HB_STATE_IDLE;
199
200     h->pause_lock = hb_lock_init();
201
202     /* libavcodec */
203     avcodec_init();
204     avcodec_register_all();
205
206     /* Start library thread */
207     hb_log( "hb_init: starting libhb thread" );
208     h->die         = 0;
209     h->main_thread = hb_thread_init( "libhb", thread_func, h,
210                                      HB_NORMAL_PRIORITY );
211
212     hb_register( &hb_sync ); 
213         hb_register( &hb_decmpeg2 ); 
214         hb_register( &hb_decsub ); 
215         hb_register( &hb_render ); 
216         hb_register( &hb_encavcodec ); 
217         hb_register( &hb_encxvid ); 
218         hb_register( &hb_encx264 ); 
219         hb_register( &hb_deca52 ); 
220         hb_register( &hb_decdca ); 
221         hb_register( &hb_decavcodec ); 
222         hb_register( &hb_declpcm ); 
223         hb_register( &hb_encfaac ); 
224         hb_register( &hb_enclame ); 
225         hb_register( &hb_encvorbis ); 
226         
227         return h;
228 }
229
230
231 /**
232  * Returns current version of libhb.
233  * @param h Handle to hb_handle_t.
234  * @return character array of version number.
235  */
236 char * hb_get_version( hb_handle_t * h )
237 {
238     return HB_VERSION;
239 }
240
241 /**
242  * Returns current build of libhb.
243  * @param h Handle to hb_handle_t.
244  * @return character array of build number.
245  */
246 int hb_get_build( hb_handle_t * h )
247 {
248     return HB_BUILD;
249 }
250
251 /**
252  * Checks for needed update.
253  * @param h Handle to hb_handle_t.
254  * @param version Pointer to handle where version will be copied.
255  * @return update indicator.
256  */
257 int hb_check_update( hb_handle_t * h, char ** version )
258 {
259     *version = ( h->build < 0 ) ? NULL : h->version;
260     return h->build;
261 }
262
263 /**
264  * Sets the cpu count to the desired value.
265  * @param h Handle to hb_handle_t
266  * @param cpu_count Number of CPUs to use.
267  */
268 void hb_set_cpu_count( hb_handle_t * h, int cpu_count )
269 {
270     cpu_count    = MAX( 1, cpu_count );
271     cpu_count    = MIN( cpu_count, 8 );
272     h->cpu_count = cpu_count;
273 }
274
275 /**
276  * Initializes a scan of the by calling hb_scan_init
277  * @param h Handle to hb_handle_t
278  * @param path location of VIDEO_TS folder.
279  * @param title_index Desired title to scan.  0 for all titles.
280  */
281 void hb_scan( hb_handle_t * h, const char * path, int title_index )
282 {
283     hb_title_t * title;
284
285     /* Clean up from previous scan */
286     while( ( title = hb_list_item( h->list_title, 0 ) ) )
287     {
288         hb_list_rem( h->list_title, title );
289         hb_title_close( &title );
290     }
291     
292     hb_log( "hb_scan: path=%s, title_index=%d", path, title_index );
293     h->scan_thread = hb_scan_init( h, path, title_index, h->list_title );
294 }
295
296 /**
297  * Returns the list of titles found.
298  * @param h Handle to hb_handle_t
299  * @return Handle to hb_list_t of the title list.
300  */
301 hb_list_t * hb_get_titles( hb_handle_t * h )
302 {
303     return h->list_title;
304 }
305
306 /**
307  * Create preview image of desired title a index of picture.
308  * @param h Handle to hb_handle_t.
309  * @param title Handle to hb_title_t of desired title.
310  * @param picture Index in title.
311  * @param buffer Handle to buufer were inage will be drawn.
312  */
313 void hb_get_preview( hb_handle_t * h, hb_title_t * title, int picture,
314                      uint8_t * buffer )
315 {
316     hb_job_t           * job = title->job;
317     char                 filename[1024];
318     FILE               * file;
319     uint8_t            * buf1, * buf2, * buf3, * buf4, * pen;
320     uint32_t           * p32;
321     AVPicture            pic_in, pic_preview, pic_deint, pic_crop, pic_scale;
322     struct SwsContext  * context;
323     int                  i;
324
325     buf1 = malloc( title->width * title->height * 3 / 2 );
326     buf2 = malloc( title->width * title->height * 3 / 2 );
327     buf3 = malloc( title->width * title->height * 3 / 2 );
328     buf4 = malloc( title->width * title->height * 4 );
329     avpicture_fill( &pic_in, buf1, PIX_FMT_YUV420P,
330                     title->width, title->height );
331     avpicture_fill( &pic_deint, buf2, PIX_FMT_YUV420P,
332                     title->width, title->height );
333     avpicture_fill( &pic_scale, buf3, PIX_FMT_YUV420P,
334                     job->width, job->height );
335     avpicture_fill( &pic_preview, buf4, PIX_FMT_RGBA32,
336                     job->width, job->height );
337
338     // Allocate the AVPicture frames and fill in
339
340     memset( filename, 0, 1024 );
341
342     hb_get_tempory_filename( h, filename, "%x%d",
343                              (intptr_t) title, picture );
344
345     file = fopen( filename, "r" );
346     if( !file )
347     {
348         hb_log( "hb_get_preview: fopen failed" );
349         return;
350     }
351
352     fread( buf1, title->width * title->height * 3 / 2, 1, file );
353     fclose( file );
354
355     if( job->deinterlace )
356     {
357         // Deinterlace and crop
358         avpicture_deinterlace( &pic_deint, &pic_in, PIX_FMT_YUV420P, title->width, title->height );
359         av_picture_crop( &pic_crop, &pic_deint, PIX_FMT_YUV420P, job->crop[0], job->crop[2] );
360     }
361     else
362     {
363         // Crop
364         av_picture_crop( &pic_crop, &pic_in, PIX_FMT_YUV420P, job->crop[0], job->crop[2] );
365     }
366
367     // Get scaling context
368     context = sws_getContext(title->width  - (job->crop[2] + job->crop[3]),
369                              title->height - (job->crop[0] + job->crop[1]),
370                              PIX_FMT_YUV420P,
371                              job->width, job->height, PIX_FMT_YUV420P,
372                              (uint16_t)(SWS_LANCZOS|SWS_ACCURATE_RND), NULL, NULL, NULL);
373
374     // Scale
375     sws_scale(context,
376               pic_crop.data, pic_crop.linesize,
377               0, title->height - (job->crop[0] + job->crop[1]),
378               pic_scale.data, pic_scale.linesize);
379
380     // Free context
381     sws_freeContext( context );
382
383     // Get preview context
384     context = sws_getContext(job->width, job->height, PIX_FMT_YUV420P,
385                              job->width, job->height, PIX_FMT_RGBA32,
386                              (uint16_t)(SWS_LANCZOS|SWS_ACCURATE_RND), NULL, NULL, NULL);
387
388     // Create preview
389     sws_scale(context,
390               pic_scale.data, pic_scale.linesize,
391               0, job->height,
392               pic_preview.data, pic_preview.linesize);
393
394     // Free context
395     sws_freeContext( context );
396
397     /* Gray background */
398     p32 = (uint32_t *) buffer;
399     for( i = 0; i < ( title->width + 2 ) * ( title->height + 2 ); i++ )
400     {
401         p32[i] = 0xFF808080;
402     }
403
404     /* Draw the picture, centered, and draw the cropping zone */
405     pen = buffer + ( title->height - job->height ) *
406         ( title->width + 2 ) * 2 + ( title->width - job->width ) * 2;
407     memset( pen, 0xFF, 4 * ( job->width + 2 ) );
408     pen += 4 * ( title->width + 2 );
409     for( i = 0; i < job->height; i++ )
410     {
411         uint8_t * nextLine;
412         nextLine = pen + 4 * ( title->width + 2 );
413         memset( pen, 0xFF, 4 );
414         pen += 4;
415         memcpy( pen, buf4 + 4 * job->width * i, 4 * job->width );
416         pen += 4 * job->width;
417         memset( pen, 0xFF, 4 );
418         pen = nextLine;
419     }
420     memset( pen, 0xFF, 4 * ( job->width + 2 ) );
421
422     // Clean up
423     avpicture_free( &pic_preview );
424     avpicture_free( &pic_scale );
425     avpicture_free( &pic_deint );
426     avpicture_free( &pic_in );
427 }
428
429 /**
430  * Calculates job width, height, and cropping parameters.
431  * @param job Handle to hb_job_t.
432  * @param aspect Desired aspect ratio. Value of -1 uses title aspect.
433  * @param pixels Maximum desired pixel count.
434  * @param par If true, skip the cropping and keep-aspect-ratio stuff.
435  */
436 void hb_set_size( hb_job_t * job, int aspect, int pixels, int par )
437 {
438     hb_title_t * title = job->title;
439
440     int croppedWidth  = title->width - title->crop[2] - title->crop[3];
441     int croppedHeight = title->height - title->crop[0] - title->crop[1];
442    
443     int croppedAspect;
444     if (par)
445     {
446         /* That means we're setting size for video with non-square pixels */
447         croppedAspect = croppedWidth * HB_ASPECT_BASE / croppedHeight;
448         aspect = croppedAspect;
449     }
450     else
451     {
452         /* We're free to change cropping and maintain display aspect ratio */
453         croppedAspect = title->aspect * title->height * croppedWidth /
454             croppedHeight / title->width;
455            
456         int addCrop;
457
458         if( aspect <= 0 )
459         {
460             /* Keep the best possible aspect ratio */
461             aspect = croppedAspect;
462         }
463
464         /* Crop if necessary to obtain the desired ratio */
465         memcpy( job->crop, title->crop, 4 * sizeof( int ) );
466         if( aspect < croppedAspect )
467         {
468             /* Need to crop on the left and right */
469             addCrop = croppedWidth - aspect * croppedHeight * title->width /
470                         title->aspect / title->height;
471             if( addCrop & 3 )
472             {
473                 addCrop = ( addCrop + 1 ) / 2;
474                 job->crop[2] += addCrop;
475                 job->crop[3] += addCrop;
476             }
477             else if( addCrop & 2 )
478             {
479                 addCrop /= 2;
480                 job->crop[2] += addCrop - 1;
481                 job->crop[3] += addCrop + 1;
482             }
483             else
484             {
485                 addCrop /= 2;
486                 job->crop[2] += addCrop;
487                 job->crop[3] += addCrop;
488             }
489         }
490         else if( aspect > croppedAspect )
491         {
492             /* Need to crop on the top and bottom */
493             addCrop = croppedHeight - croppedWidth * title->aspect *
494                 title->height / aspect / title->width;
495             if( addCrop & 3 )
496             {
497                 addCrop = ( addCrop + 1 ) / 2;
498                 job->crop[0] += addCrop;
499                 job->crop[1] += addCrop;
500             }
501             else if( addCrop & 2 )
502             {
503                 addCrop /= 2;
504                 job->crop[0] += addCrop - 1;
505                 job->crop[1] += addCrop + 1;
506             }
507             else
508             {
509                 addCrop /= 2;
510                 job->crop[0] += addCrop;
511                 job->crop[1] += addCrop;
512             }
513         }
514
515     }
516    
517     int i, w, h;
518     /* Compute a resolution from the number of pixels and aspect */
519     for( i = 0;; i++ )
520     {
521         w = 16 * i;
522         h = MULTIPLE_16( w * HB_ASPECT_BASE / aspect );
523         if( w * h > pixels )
524         {
525             break;
526         }
527     }
528     i--;
529     job->width  = 16 * i;
530     job->height = MULTIPLE_16( 16 * i * HB_ASPECT_BASE / aspect );
531 }
532
533 /**
534  * Returns the number of jobs in the queue.
535  * @param h Handle to hb_handle_t.
536  * @return Number of jobs.
537  */
538 int hb_count( hb_handle_t * h )
539 {
540     return hb_list_count( h->jobs );
541 }
542
543 /**
544  * Returns handle to job at index i within the job list.
545  * @param h Handle to hb_handle_t.
546  * @param i Index of job.
547  * @returns Handle to hb_job_t of desired job.
548  */
549 hb_job_t * hb_job( hb_handle_t * h, int i )
550 {
551     return hb_list_item( h->jobs, i );
552 }
553
554 hb_job_t * hb_current_job( hb_handle_t * h )
555 {
556     return( h->current_job );
557 }
558
559 /**
560  * Adds a job to the job list.
561  * @param h Handle to hb_handle_t.
562  * @param job Handle to hb_job_t.
563  */
564 void hb_add( hb_handle_t * h, hb_job_t * job )
565 {
566     hb_job_t      * job_copy;
567     hb_title_t    * title,    * title_copy;
568     hb_chapter_t  * chapter,  * chapter_copy;
569     hb_audio_t    * audio,    * audio_copy;
570     hb_subtitle_t * subtitle, * subtitle_copy;
571     int             i;
572     char            audio_lang[4];
573
574     /* Copy the title */
575     title      = job->title;
576     title_copy = malloc( sizeof( hb_title_t ) );
577     memcpy( title_copy, title, sizeof( hb_title_t ) );
578
579     title_copy->list_chapter = hb_list_init();
580     for( i = 0; i < hb_list_count( title->list_chapter ); i++ )
581     {
582         chapter      = hb_list_item( title->list_chapter, i );
583         chapter_copy = malloc( sizeof( hb_chapter_t ) );
584         memcpy( chapter_copy, chapter, sizeof( hb_chapter_t ) );
585         hb_list_add( title_copy->list_chapter, chapter_copy );
586     }
587
588     /* Copy the audio track(s) we want */
589     title_copy->list_audio = hb_list_init();
590
591     /* Do nothing about audio during first pass */
592     if( job->pass == 0 || job->pass == 2 )
593     {
594         for( i = 0; i < 8; i++ )
595         {
596             if( job->audios[i] < 0 )
597             {
598                 break;
599             }
600             if( ( audio = hb_list_item( title->list_audio, job->audios[i] ) ) )
601             {
602                 audio_copy = malloc( sizeof( hb_audio_t ) );
603                 memcpy( audio_copy, audio, sizeof( hb_audio_t ) );
604                 hb_list_add( title_copy->list_audio, audio_copy );
605             }
606         }
607     }
608
609     title_copy->list_subtitle = hb_list_init();
610
611     /*
612      * The following code is confusing, there are three ways in which
613      * we select subtitles and it depends on whether this is single or
614      * two pass mode.
615      *
616      * subtitle_scan may be enabled, in which case the first pass
617      * scans all subtitles of that language. The second pass does not
618      * select any because they are set at the end of the first pass.
619      *
620      * native_language may have a preferred language, in which case we
621      * may be switching the language we want for the subtitles in the
622      * first pass of a single pass, or the second pass of a two pass.
623      *
624      * We may have manually selected a subtitle, in which case that is
625      * selected in the first pass of a single pass, or the second of a
626      * two pass.
627      */
628     memset( audio_lang, 0, sizeof( audio_lang ) );
629
630     if ( job->indepth_scan || job->native_language ) {
631       
632         /*
633          * Find the first audio language that is being encoded
634          */
635         for( i = 0; i < 8; i++ )
636         {
637             if( job->audios[i] < 0 )
638             {
639                 break;
640             }
641             if( ( audio = hb_list_item( title->list_audio, job->audios[i] ) ) )
642             {
643                 strncpy(audio_lang, audio->iso639_2, sizeof(audio_lang));
644                 break;
645             }
646         }
647
648         /*
649          * In all cases switch the language if we need to to our native
650          * language.
651          */
652         if( job->native_language ) 
653         {
654             if( strncasecmp( job->native_language, audio_lang, 
655                              sizeof( audio_lang ) ) != 0 )
656             {             
657                 
658                 if( job->pass != 2 )
659                 {
660                     hb_log( "Enabled subtitles in native language '%s', audio is in '%s'",
661                             job->native_language, audio_lang);
662                 }
663                 /*
664                  * The main audio track is not in our native language, so switch
665                  * the subtitles to use our native language instead.
666                  */
667                 strncpy( audio_lang, job->native_language, sizeof( audio_lang ) );
668             } else {
669                 /*
670                  * native language is irrelevent, free it.
671                  */
672                 free( job->native_language );
673                 job->native_language = NULL;
674             }
675         }
676     }
677
678     /*
679      * If doing a subtitle scan then add all the matching subtitles for this
680      * language.
681      */
682     if ( job->indepth_scan ) 
683     {
684         for( i=0; i < hb_list_count( title->list_subtitle ); i++ ) 
685         {
686             subtitle = hb_list_item( title->list_subtitle, i );
687             if( strcmp( subtitle->iso639_2, audio_lang ) == 0 ) 
688             {
689                 /*
690                  * Matched subtitle language with audio language, so
691                  * add this to our list to scan.
692                  *
693                  * We will update the subtitle list on the second pass
694                  * later after the first pass has completed.
695                  */
696                 subtitle_copy = malloc( sizeof( hb_subtitle_t ) );
697                 memcpy( subtitle_copy, subtitle, sizeof( hb_subtitle_t ) );
698                 hb_list_add( title_copy->list_subtitle, subtitle_copy );
699                 if ( job->native_language ) {
700                     /*
701                      * With native language just select the
702                      * first match in our langiage, not all of
703                      * them. Subsequent ones are likely to be commentary
704                      */
705                     break;
706                 }
707             }
708         }
709     } else {
710         /*
711          * Not doing a subtitle scan in this pass, but maybe we are in the
712          * first pass?
713          */
714         if( job->select_subtitle )
715         {
716             /*
717              * Don't add subtitles here, we'll add them via select_subtitle
718              * at the end of the subtitle_scan.
719              */
720         } else {
721             /*
722              * Definitely not doing a subtitle scan.
723              */
724             if( job->pass != 1 && job->native_language ) 
725             {
726                 /*
727                  * We are not doing a subtitle scan but do want the
728                  * native langauge subtitle selected, so select it 
729                  * for pass 0 or pass 2 of a two pass.
730                  */
731                 for( i=0; i < hb_list_count( title->list_subtitle ); i++ ) 
732                 {
733                     subtitle = hb_list_item( title->list_subtitle, i );
734                     if( strcmp( subtitle->iso639_2, audio_lang ) == 0 ) 
735                     {
736                         /*
737                          * Matched subtitle language with audio language, so
738                          * add this to our list to scan.
739                          */
740                         subtitle_copy = malloc( sizeof( hb_subtitle_t ) );
741                         memcpy( subtitle_copy, subtitle, sizeof( hb_subtitle_t ) );
742                         hb_list_add( title_copy->list_subtitle, subtitle_copy );
743                         break;
744                     }
745                 }
746             } else {
747                 /*
748                  * Manually selected subtitle, in which case only
749                  * bother adding them for pass 0 or pass 2 of a two
750                  * pass.
751                  */
752                 if( job->pass != 1 ) 
753                 {
754                     if( ( subtitle = hb_list_item( title->list_subtitle, job->subtitle ) ) )
755                     {
756                         subtitle_copy = malloc( sizeof( hb_subtitle_t ) );
757                         memcpy( subtitle_copy, subtitle, sizeof( hb_subtitle_t ) );
758                         hb_list_add( title_copy->list_subtitle, subtitle_copy );
759                     }
760                 }
761             }
762         }
763     }
764
765     /* Copy the job */
766     job_copy        = calloc( sizeof( hb_job_t ), 1 );
767     memcpy( job_copy, job, sizeof( hb_job_t ) );
768     title_copy->job = job_copy;
769     job_copy->title = title_copy;
770     job_copy->file  = strdup( job->file );
771     job_copy->h     = h;
772     job_copy->pause = h->pause_lock;
773
774     /* Copy the job filter list */
775     if( job->filters )
776     {
777         int i;
778         int filter_count = hb_list_count( job->filters );
779         job_copy->filters = hb_list_init();        
780         for( i = 0; i < filter_count; i++ )
781         {
782             hb_filter_object_t * filter = hb_list_item( job->filters, i );
783             hb_list_add( job_copy->filters, filter );
784         }        
785     }
786     
787     /* Add the job to the list */
788     hb_list_add( h->jobs, job_copy );
789     h->job_count = hb_count(h);
790     h->job_count_permanent++;
791 }
792
793 /**
794  * Removes a job from the job list.
795  * @param h Handle to hb_handle_t.
796  * @param job Handle to hb_job_t.
797  */
798 void hb_rem( hb_handle_t * h, hb_job_t * job )
799 {
800     hb_list_rem( h->jobs, job );
801     
802     h->job_count = hb_count(h);
803     if (h->job_count_permanent)
804         h->job_count_permanent--;
805
806     /* XXX free everything XXX */
807 }
808
809 /**
810  * Starts the conversion process.
811  * Sets state to HB_STATE_WORKING.
812  * calls hb_work_init, to launch work thread. Stores handle to work thread.
813  * @param h Handle to hb_handle_t.
814  */
815 void hb_start( hb_handle_t * h )
816 {
817     /* XXX Hack */
818     h->job_count = hb_list_count( h->jobs );
819     h->job_count_permanent = h->job_count;
820
821     hb_lock( h->state_lock );
822     h->state.state = HB_STATE_WORKING;
823 #define p h->state.param.working
824     p.progress  = 0.0;
825     p.job_cur   = 1;
826     p.job_count = h->job_count;
827     p.rate_cur  = 0.0;
828     p.rate_avg  = 0.0;
829     p.hours     = -1;
830     p.minutes   = -1;
831     p.seconds   = -1;
832 #undef p
833     hb_unlock( h->state_lock );
834
835     h->paused = 0;
836
837     h->work_die    = 0;
838     h->work_thread = hb_work_init( h->jobs, h->cpu_count,
839                                    &h->work_die, &h->work_error, &h->current_job );
840 }
841
842 /**
843  * Pauses the conversion process.
844  * @param h Handle to hb_handle_t.
845  */
846 void hb_pause( hb_handle_t * h )
847 {
848     if( !h->paused )
849     {
850         hb_lock( h->pause_lock );
851         h->paused = 1;
852
853         hb_lock( h->state_lock );
854         h->state.state = HB_STATE_PAUSED;
855         hb_unlock( h->state_lock );
856     }
857 }
858
859 /**
860  * Resumes the conversion process.
861  * @param h Handle to hb_handle_t.
862  */
863 void hb_resume( hb_handle_t * h )
864 {
865     if( h->paused )
866     {
867         hb_unlock( h->pause_lock );
868         h->paused = 0;
869     }
870 }
871
872 /**
873  * Stops the conversion process.
874  * @param h Handle to hb_handle_t.
875  */
876 void hb_stop( hb_handle_t * h )
877 {
878     h->work_die = 1;
879
880     h->job_count = hb_count(h);
881     h->job_count_permanent = 0;
882
883     hb_resume( h );
884 }
885
886 /**
887  * Returns the state of the conversion process.
888  * @param h Handle to hb_handle_t.
889  * @param s Handle to hb_state_t which to copy the state data.
890  */
891 void hb_get_state( hb_handle_t * h, hb_state_t * s )
892 {
893     hb_lock( h->state_lock );
894
895     memcpy( s, &h->state, sizeof( hb_state_t ) );
896     if ( h->state.state == HB_STATE_SCANDONE || h->state.state == HB_STATE_WORKDONE )
897         h->state.state = HB_STATE_IDLE;
898
899     hb_unlock( h->state_lock );
900 }
901
902 void hb_get_state2( hb_handle_t * h, hb_state_t * s )
903 {
904     hb_lock( h->state_lock );
905
906     memcpy( s, &h->state, sizeof( hb_state_t ) );
907
908     hb_unlock( h->state_lock );
909 }
910
911 /**
912  * Called in MacGui in UpdateUI to check
913  *  for a new scan being completed to set a new source
914  */
915 int hb_get_scancount( hb_handle_t * h)
916  {
917      return h->scanCount;
918  }
919
920 /**
921  * Closes access to libhb by freeing the hb_handle_t handle ontained in hb_init_real.
922  * @param _h Pointer to handle to hb_handle_t.
923  */
924 void hb_close( hb_handle_t ** _h )
925 {
926     hb_handle_t * h = *_h;
927     hb_title_t * title;
928
929     h->die = 1;
930     hb_thread_close( &h->main_thread );
931
932     while( ( title = hb_list_item( h->list_title, 0 ) ) )
933     {
934         hb_list_rem( h->list_title, title );
935         if( title->job && title->job->filters )
936         {
937             hb_list_close( &title->job->filters );
938         }
939         free( title->job );
940         hb_title_close( &title );
941     }
942     hb_list_close( &h->list_title );
943
944     hb_list_close( &h->jobs );
945     hb_lock_close( &h->state_lock );
946     hb_lock_close( &h->pause_lock );
947     free( h );
948     *_h = NULL;
949
950 }
951
952 /**
953  * Monitors the state of the update, scan, and work threads.
954  * Sets scan done state when scan thread exits.
955  * Sets work done state when work thread exits.
956  * @param _h Handle to hb_handle_t
957  */
958 static void thread_func( void * _h )
959 {
960     hb_handle_t * h = (hb_handle_t *) _h;
961     char dirname[1024];
962     DIR * dir;
963     struct dirent * entry;
964
965     h->pid = getpid();
966
967     /* Create folder for temporary files */
968     memset( dirname, 0, 1024 );
969     hb_get_tempory_directory( h, dirname );
970
971     hb_mkdir( dirname );
972
973     while( !h->die )
974     {
975         /* In case the check_update thread hangs, it'll die sooner or
976            later. Then, we join it here */
977         if( h->update_thread &&
978             hb_thread_has_exited( h->update_thread ) )
979         {
980             hb_thread_close( &h->update_thread );
981         }
982
983         /* Check if the scan thread is done */
984         if( h->scan_thread &&
985             hb_thread_has_exited( h->scan_thread ) )
986         {
987             hb_thread_close( &h->scan_thread );
988
989             hb_log( "libhb: scan thread found %d valid title(s)",
990                     hb_list_count( h->list_title ) );
991             hb_lock( h->state_lock );
992             h->state.state = HB_STATE_SCANDONE; //originally state.state
993                         hb_unlock( h->state_lock );
994                         /*we increment this sessions scan count by one for the MacGui
995                         to trigger a new source being set */
996             h->scanCount++;
997         }
998
999         /* Check if the work thread is done */
1000         if( h->work_thread &&
1001             hb_thread_has_exited( h->work_thread ) )
1002         {
1003             hb_thread_close( &h->work_thread );
1004
1005             hb_log( "libhb: work result = %d",
1006                     h->work_error );
1007             hb_lock( h->state_lock );
1008             h->state.state                = HB_STATE_WORKDONE;
1009             h->state.param.workdone.error = h->work_error;
1010             
1011             h->job_count = hb_count(h);
1012             if (h->job_count < 1)
1013                 h->job_count_permanent = 0;
1014             hb_unlock( h->state_lock );
1015         }
1016
1017         hb_snooze( 50 );
1018     }
1019
1020     if( h->work_thread )
1021     {
1022         hb_stop( h );
1023         hb_thread_close( &h->work_thread );
1024     }
1025
1026     /* Remove temp folder */
1027     dir = opendir( dirname );
1028     while( ( entry = readdir( dir ) ) )
1029     {
1030         char filename[1024];
1031         if( entry->d_name[0] == '.' )
1032         {
1033             continue;
1034         }
1035         memset( filename, 0, 1024 );
1036         snprintf( filename, 1023, "%s/%s", dirname, entry->d_name );
1037         unlink( filename );
1038     }
1039     closedir( dir );
1040     rmdir( dirname );
1041 }
1042
1043 /**
1044  * Returns the PID.
1045  * @param h Handle to hb_handle_t
1046  */
1047 int hb_get_pid( hb_handle_t * h )
1048 {
1049     return h->pid;
1050 }
1051
1052 /**
1053  * Sets the current state.
1054  * @param h Handle to hb_handle_t
1055  * @param s Handle to new hb_state_t
1056  */
1057 void hb_set_state( hb_handle_t * h, hb_state_t * s )
1058 {
1059     hb_lock( h->pause_lock );
1060     hb_lock( h->state_lock );
1061     memcpy( &h->state, s, sizeof( hb_state_t ) );
1062     if( h->state.state == HB_STATE_WORKING )
1063     {
1064         /* XXX Hack */
1065         if (h->job_count < 1)
1066             h->job_count_permanent = 1;
1067         
1068         h->state.param.working.job_cur =
1069             h->job_count_permanent - hb_list_count( h->jobs );
1070         h->state.param.working.job_count = h->job_count_permanent;
1071     }
1072     hb_unlock( h->state_lock );
1073     hb_unlock( h->pause_lock );
1074 }