OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / libhb / common.h
1 /* $Id: common.h,v 1.51 2005/11/04 13:09:40 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 #ifndef HB_COMMON_H
8 #define HB_COMMON_H
9
10 #include <math.h>
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <stdarg.h>
14 #include <string.h>
15 #include <unistd.h>
16 #include <inttypes.h>
17 #include <sys/types.h>
18 #include <sys/stat.h>
19 #include <dirent.h>
20
21 #if defined( SYS_MINGW )
22 #   define fseek fseeko64
23 #   define ftell ftello64
24 #   undef  fseeko
25 #   define fseeko fseeko64
26 #   undef  ftello
27 #   define ftello ftello64
28 #   define flockfile(...)
29 #   define funlockfile(...)
30 #   define getc_unlocked getc
31 #   undef  off_t
32 #   define off_t off64_t
33 #endif
34
35 #ifndef MIN
36 #define MIN( a, b ) ( (a) > (b) ? (b) : (a) )
37 #endif
38 #ifndef MAX
39 #define MAX( a, b ) ( (a) > (b) ? (a) : (b) )
40 #endif
41
42 #define EVEN( a )        ( (a) + ( (a) & 1 ) )
43 #define MULTIPLE_16( a ) ( 16 * ( ( (a) + 8 ) / 16 ) )
44 #define MULTIPLE_MOD( a, b ) ((b==1)?a:( b * ( ( (a) + (b / 2) - 1) / b ) ))
45
46 #define HB_DVD_READ_BUFFER_SIZE 2048
47
48 typedef struct hb_handle_s hb_handle_t;
49 typedef struct hb_list_s hb_list_t;
50 typedef struct hb_rate_s hb_rate_t;
51 typedef struct hb_mixdown_s hb_mixdown_t;
52 typedef struct hb_job_s  hb_job_t;
53 typedef struct hb_title_s hb_title_t;
54 typedef struct hb_chapter_s hb_chapter_t;
55 typedef struct hb_audio_s hb_audio_t;
56 typedef struct hb_audio_config_s hb_audio_config_t;
57 typedef struct hb_subtitle_s hb_subtitle_t;
58 typedef struct hb_subtitle_config_s hb_subtitle_config_t;
59 typedef struct hb_metadata_s hb_metadata_t;
60 typedef struct hb_state_s hb_state_t;
61 typedef union  hb_esconfig_u     hb_esconfig_t;
62 typedef struct hb_work_private_s hb_work_private_t;
63 typedef struct hb_work_object_s  hb_work_object_t;
64 typedef struct hb_filter_private_s hb_filter_private_t;
65 typedef struct hb_filter_object_s  hb_filter_object_t;
66 typedef struct hb_buffer_s hb_buffer_t;
67 typedef struct hb_fifo_s hb_fifo_t;
68 typedef struct hb_lock_s hb_lock_t;
69
70 #include "ports.h"
71 #ifdef __LIBHB__
72 #include "internal.h"
73 #define PRIVATE
74 #else
75 #define PRIVATE const
76 #endif
77
78 hb_list_t * hb_list_init();
79 int         hb_list_count( hb_list_t * );
80 void        hb_list_add( hb_list_t *, void * );
81 void        hb_list_rem( hb_list_t *, void * );
82 void      * hb_list_item( hb_list_t *, int );
83 void        hb_list_close( hb_list_t ** );
84
85 void hb_reduce( int *x, int *y, int num, int den );
86
87 #define HB_KEEP_WIDTH  0
88 #define HB_KEEP_HEIGHT 1
89 void hb_fix_aspect( hb_job_t * job, int keep );
90
91 int hb_calc_bitrate( hb_job_t *, int size );
92
93 hb_audio_t *hb_audio_copy(const hb_audio_t *src);
94 void hb_audio_config_init(hb_audio_config_t * audiocfg);
95 int hb_audio_add(const hb_job_t * job, const hb_audio_config_t * audiocfg);
96 hb_audio_config_t * hb_list_audio_config_item(hb_list_t * list, int i);
97
98 int hb_subtitle_add(const hb_job_t * job, const hb_subtitle_config_t * subtitlecfg, int track);
99
100 struct hb_rate_s
101 {
102     char * string;
103     int    rate;
104 };
105
106 struct hb_mixdown_s
107 {
108     char * human_readable_name;
109     char * internal_name;
110     char * short_name;
111     int    amixdown;
112 };
113
114 struct hb_subtitle_config_s
115 {
116     enum subdest { RENDERSUB, PASSTHRUSUB } dest;
117     int  force;
118     int  default_track;
119 };
120
121 #define HB_VIDEO_RATE_BASE   27000000
122
123 extern hb_rate_t    hb_video_rates[];
124 extern int          hb_video_rates_count;
125 extern hb_rate_t    hb_audio_rates[];
126 extern int          hb_audio_rates_count;
127 extern int          hb_audio_rates_default;
128 extern hb_rate_t    hb_audio_bitrates[];
129 extern int          hb_audio_bitrates_count;
130 extern int          hb_audio_bitrates_default;
131 extern hb_mixdown_t hb_audio_mixdowns[];
132 extern int          hb_audio_mixdowns_count;
133 int hb_mixdown_get_mixdown_from_short_name( const char * short_name );
134 const char * hb_mixdown_get_short_name_from_mixdown( int amixdown );
135
136 /******************************************************************************
137  * hb_job_t: settings to be filled by the UI
138  *****************************************************************************/
139 struct hb_job_s
140 {
141     /* ID assigned by UI so it can groups job passes together */
142     int             sequence_id;
143
144     /* Pointer to the title to be ripped */
145     hb_title_t    * title;
146
147     /* Chapter selection */
148     int             chapter_start;
149     int             chapter_end;
150
151         /* Include chapter marker track in mp4? */
152     int             chapter_markers;
153
154     /* Picture settings:
155          crop:                must be multiples of 2 (top/bottom/left/right)
156          deinterlace:         0 or 1
157          width:               must be a multiple of 16
158          height:              must be a multiple of 16
159          keep_ratio:          used by UIs
160          grayscale:           black and white encoding
161          pixel_ratio:         store pixel aspect ratio in the video
162          pixel_aspect_width:  numerator for pixel aspect ratio
163          pixel_aspect_height: denominator for pixel aspect ratio
164          modulus:             set a number besides 16 for dimensions to be multiples of
165          maxWidth:            keep width below this
166          maxHeight:           keep height below this */
167     int             crop[4];
168     int             deinterlace;
169     hb_list_t     * filters;
170     int             width;
171     int             height;
172     int             keep_ratio;
173     int             grayscale;
174
175     struct
176     {
177         int             mode;
178         int             modulus;
179         int             itu_par;
180         int             par_width;
181         int             par_height;
182         int             dar_width;
183         int             dar_height;
184         int             keep_display_aspect;
185     } anamorphic;
186     
187     int             maxWidth;
188     int             maxHeight;
189
190     /* Video settings:
191          vcodec:            output codec
192          vquality:          output quality (0.0..1.0)
193                             if < 0.0 or > 1.0, bitrate is used instead,
194                             except with x264, to use its real QP/RF scale
195          vbitrate:          output bitrate (kbps)
196          vrate, vrate_base: output framerate is vrate / vrate_base
197          cfr:               0 (vfr), 1 (cfr), 2 (pfr) [see render.c]
198          pass:              0, 1 or 2 (or -1 for scan)
199          h264_level:        vestigial boolean to decide if we're encoding for iPod
200          crf:               boolean for whether to use constant rate factor with x264
201          x264opts:          string of extra x264 options
202          areBframes:        boolean to note if b-frames are included in x264opts */
203 #define HB_VCODEC_MASK   0x0000FF
204 #define HB_VCODEC_FFMPEG 0x000001
205 #define HB_VCODEC_X264   0x000002
206 #define HB_VCODEC_THEORA 0x000004
207
208     int             vcodec;
209     float           vquality;
210     int             vbitrate;
211     int             vrate;
212     int             vrate_base;
213     int             vfr;
214     int             cfr;
215     int             pass;
216     int             h264_13;
217     int             h264_level;
218     int             crf;
219     char            *x264opts;
220     int             areBframes;
221     int             color_matrix;
222
223     /* List of audio settings. */
224     hb_list_t     * list_audio;
225
226     /* Subtitles
227      */
228     hb_list_t     * list_subtitle;
229
230     /* Muxer settings
231          mux:  output file format
232          file: file path */
233 #define HB_MUX_MASK 0xFF0000
234 #define HB_MUX_MP4  0x010000
235 #define HB_MUX_PSP  0x020000
236 #define HB_MUX_AVI  0x040000
237 #define HB_MUX_OGM  0x080000
238 #define HB_MUX_IPOD 0x100000
239 #define HB_MUX_MKV  0x200000
240
241     int             mux;
242     const char          * file;
243
244     /* Allow MP4 files > 4 gigs */
245     int             largeFileSize;
246     int             mp4_optimize;
247     int             ipod_atom;
248
249     int                     indepth_scan;
250     hb_subtitle_config_t    select_subtitle_config;
251
252     int             angle;              // dvd angle to encode
253     int             frame_to_stop;       // declare eof when we hit this frame
254     int64_t         pts_to_stop;        // declare eof when we pass this pts in
255                                         //  the time-linearized input stream
256     int             start_at_preview;   // if non-zero, encoding will start
257                                         //  at the position of preview n
258     int             seek_points;        //  out of N previews
259     uint32_t        frames_to_skip;     // decode but discard this many frames
260                                         //  initially (for frame accurate positioning
261                                         //  to non-I frames).
262
263 #ifdef __LIBHB__
264     /* Internal data */
265     hb_handle_t   * h;
266     hb_lock_t     * pause;
267     volatile int  * die;
268     volatile int    done;
269
270     hb_fifo_t     * fifo_mpeg2;   /* MPEG-2 video ES */
271     hb_fifo_t     * fifo_raw;     /* Raw pictures */
272     hb_fifo_t     * fifo_sync;    /* Raw pictures, framerate corrected */
273     hb_fifo_t     * fifo_render;  /* Raw pictures, scaled */
274     hb_fifo_t     * fifo_mpeg4;   /* MPEG-4 video ES */
275
276     hb_thread_t   * reader;
277     hb_thread_t   * muxer;
278
279     hb_list_t     * list_work;
280
281     hb_esconfig_t config;
282
283     hb_mux_data_t * mux_data;
284 #endif
285 };
286
287 /* Audio starts here */
288 /* Audio Codecs */
289 #define HB_ACODEC_MASK   0x00FF00
290 #define HB_ACODEC_FAAC   0x000100
291 #define HB_ACODEC_LAME   0x000200
292 #define HB_ACODEC_VORBIS 0x000400
293 #define HB_ACODEC_AC3    0x000800
294 #define HB_ACODEC_MPGA   0x001000
295 #define HB_ACODEC_LPCM   0x002000
296 #define HB_ACODEC_DCA    0x004000
297 #define HB_ACODEC_FFMPEG 0x008000
298 #define HB_ACODEC_CA_AAC 0x010000
299
300 /* Audio Mixdown */
301 /* define some masks, used to extract the various information from the HB_AMIXDOWN_XXXX values */
302 #define HB_AMIXDOWN_DCA_FORMAT_MASK             0x00FFF000
303 #define HB_AMIXDOWN_A52_FORMAT_MASK             0x00000FF0
304 #define HB_AMIXDOWN_DISCRETE_CHANNEL_COUNT_MASK 0x0000000F
305 /* define the HB_AMIXDOWN_XXXX values */
306 #define HB_AMIXDOWN_MONO                        0x01000001
307 // DCA_FORMAT of DCA_MONO                  = 0    = 0x000
308 // A52_FORMAT of A52_MONO                  = 1    = 0x01
309 // discrete channel count of 1
310 #define HB_AMIXDOWN_STEREO                      0x02002022
311 // DCA_FORMAT of DCA_STEREO                = 2    = 0x002
312 // A52_FORMAT of A52_STEREO                = 2    = 0x02
313 // discrete channel count of 2
314 #define HB_AMIXDOWN_DOLBY                       0x042070A2
315 // DCA_FORMAT of DCA_3F1R | DCA_OUT_DPLI   = 519  = 0x207
316 // A52_FORMAT of A52_DOLBY                 = 10   = 0x0A
317 // discrete channel count of 2
318 #define HB_AMIXDOWN_DOLBYPLII                   0x084094A2
319 // DCA_FORMAT of DCA_3F2R | DCA_OUT_DPLII  = 1033 = 0x409
320 // A52_FORMAT of A52_DOLBY | A52_USE_DPLII = 74   = 0x4A
321 // discrete channel count of 2
322 #define HB_AMIXDOWN_6CH                         0x10089176
323 // DCA_FORMAT of DCA_3F2R | DCA_LFE        = 137  = 0x089
324 // A52_FORMAT of A52_3F2R | A52_LFE        = 23   = 0x17
325 // discrete channel count of 6
326 /* define some macros to extract the various information from the HB_AMIXDOWN_XXXX values */
327 #define HB_AMIXDOWN_GET_DCA_FORMAT( a ) ( ( a & HB_AMIXDOWN_DCA_FORMAT_MASK ) >> 12 )
328 #define HB_AMIXDOWN_GET_A52_FORMAT( a ) ( ( a & HB_AMIXDOWN_A52_FORMAT_MASK ) >> 4 )
329 #define HB_AMIXDOWN_GET_DISCRETE_CHANNEL_COUNT( a ) ( ( a & HB_AMIXDOWN_DISCRETE_CHANNEL_COUNT_MASK ) )
330
331 /* Input Channel Layout */
332 /* define some masks, used to extract the various information from the HB_AMIXDOWN_XXXX values */
333 #define HB_INPUT_CH_LAYOUT_DISCRETE_FRONT_MASK  0x00F0000
334 #define HB_INPUT_CH_LAYOUT_DISCRETE_REAR_MASK   0x000F000
335 #define HB_INPUT_CH_LAYOUT_DISCRETE_LFE_MASK    0x0000F00
336 #define HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK 0xFFFF0FF
337 #define HB_INPUT_CH_LAYOUT_ENCODED_FRONT_MASK   0x00000F0
338 #define HB_INPUT_CH_LAYOUT_ENCODED_REAR_MASK    0x000000F
339 /* define the input channel layouts used to describe the channel layout of this audio */
340 #define HB_INPUT_CH_LAYOUT_MONO    0x0110010
341 #define HB_INPUT_CH_LAYOUT_STEREO  0x0220020
342 #define HB_INPUT_CH_LAYOUT_DOLBY   0x0320031
343 #define HB_INPUT_CH_LAYOUT_3F      0x0430030
344 #define HB_INPUT_CH_LAYOUT_2F1R    0x0521021
345 #define HB_INPUT_CH_LAYOUT_3F1R    0x0631031
346 #define HB_INPUT_CH_LAYOUT_2F2R    0x0722022
347 #define HB_INPUT_CH_LAYOUT_3F2R    0x0832032
348 #define HB_INPUT_CH_LAYOUT_4F2R    0x0942042
349 #define HB_INPUT_CH_LAYOUT_HAS_LFE 0x0000100
350 /* define some macros to extract the various information from the HB_AMIXDOWN_XXXX values */
351 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_FRONT_COUNT( a ) ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_FRONT_MASK ) >> 16 )
352 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_REAR_COUNT( a )  ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_REAR_MASK ) >> 12 )
353 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_LFE_COUNT( a )   ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_LFE_MASK ) >> 8 )
354 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_COUNT( a ) ( ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_FRONT_MASK ) >> 16 ) + ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_REAR_MASK ) >> 12 ) + ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_LFE_MASK ) >> 8 ) )
355 #define HB_INPUT_CH_LAYOUT_GET_ENCODED_FRONT_COUNT( a )   ( ( a & HB_INPUT_CH_LAYOUT_ENCODED_FRONT_MASK ) >> 4 )
356 #define HB_INPUT_CH_LAYOUT_GET_ENCODED_REAR_COUNT( a )   ( ( a & HB_INPUT_CH_LAYOUT_ENCODED_REAR_MASK ) )
357
358 struct hb_audio_config_s
359 {
360     /* Output */
361     struct
362     {
363             int track;      /* Output track number */
364             uint32_t codec;  /* Output audio codec.
365                                  * HB_ACODEC_AC3 means pass-through, then bitrate and samplerate
366                                  * are ignored.
367                                  */
368             int samplerate; /* Output sample rate (Hz) */
369             int bitrate;    /* Output bitrate (kbps) */
370             int mixdown;    /* The mixdown format to be used for this audio track (see HB_AMIXDOWN_*) */
371             double dynamic_range_compression; /* Amount of DRC that gets applied to this track */
372             char * name;    /* Output track name */
373     } out;
374
375     /* Input */
376     struct
377     {
378         int track;                /* Input track number */
379         PRIVATE uint32_t codec;   /* Input audio codec */
380         PRIVATE uint32_t codec_param; /* per-codec config info */
381         PRIVATE uint32_t version; /* Bitsream version */
382         PRIVATE uint32_t mode;    /* Bitstream mode, codec dependent encoding */
383         PRIVATE int samplerate; /* Input sample rate (Hz) */
384         PRIVATE int bitrate;    /* Input bitrate (kbps) */
385         PRIVATE int channel_layout;
386         /* channel_layout is the channel layout of this audio this is used to
387         * provide a common way of describing the source audio
388         */
389     } in;
390
391     /* Misc. */
392     union
393     {
394         PRIVATE int ac3;    /* flags.ac3 is only set when the source audio format is HB_ACODEC_AC3 */
395         PRIVATE int dca;    /* flags.dca is only set when the source audio format is HB_ACODEC_DCA */
396     } flags;
397 #define AUDIO_F_DOLBY (1 << 31)  /* set if source uses Dolby Surround */
398
399     struct
400     {
401         PRIVATE char description[1024];
402         PRIVATE char simple[1024];
403         PRIVATE char iso639_2[4];
404         PRIVATE uint8_t type; /* normal, visually impared, directors */
405     } lang;
406 };
407
408 #ifdef __LIBHB__
409 struct hb_audio_s
410 {
411     int id;
412
413     hb_audio_config_t config;
414
415     struct {
416         hb_fifo_t * fifo_in;   /* AC3/MPEG/LPCM ES */
417         hb_fifo_t * fifo_raw;  /* Raw audio */
418         hb_fifo_t * fifo_sync; /* Resampled, synced raw audio */
419         hb_fifo_t * fifo_out;  /* MP3/AAC/Vorbis ES */
420
421         hb_esconfig_t config;
422         hb_mux_data_t * mux_data;
423     } priv;
424 };
425 #endif
426
427 struct hb_chapter_s
428 {
429     int      index;
430     int      pgcn;
431     int      pgn;
432     int      cell_start;
433     int      cell_end;
434     int      block_start;
435     int      block_end;
436     int      block_count;
437
438     /* Visual-friendly duration */
439     int      hours;
440     int      minutes;
441     int      seconds;
442
443     /* Exact duration (in 1/90000s) */
444     uint64_t duration;
445
446     /* Optional chapter title */
447     char     title[1024];
448 };
449
450 struct hb_subtitle_s
451 {
452     int  id;
453     int  track;
454
455     hb_subtitle_config_t config;
456
457     enum subtype { PICTURESUB, TEXTSUB } format;
458     enum subsource { VOBSUB, SRTSUB, CC608SUB, CC708SUB } source;
459     char lang[1024];
460     char iso639_2[4];
461     uint8_t type; /* Closed Caption, Childrens, Directors etc */
462
463     int hits;     /* How many hits/occurrences of this subtitle */
464     int forced_hits; /* How many forced hits in this subtitle */
465
466 #ifdef __LIBHB__
467     /* Internal data */
468     hb_fifo_t * fifo_in;  /* SPU ES */
469     hb_fifo_t * fifo_raw; /* Decoded SPU */
470     hb_fifo_t * fifo_sync;/* Synced */
471     hb_fifo_t * fifo_out; /* Correct Timestamps, ready to be muxed */
472     hb_mux_data_t * mux_data;
473 #endif
474 };
475
476 struct hb_metadata_s 
477 {
478     char  name[255];
479     char  artist[255];
480     char  composer[255];
481     char  release_date[255];
482     char  comment[1024];
483     char  album[255];
484     char  genre[255];
485     uint32_t coverart_size;
486     uint8_t *coverart;
487 };
488
489 struct hb_title_s
490 {
491     char        dvd[1024];
492     char        name[1024];
493     int         index;
494     int         vts;
495     int         ttn;
496     int         cell_start;
497     int         cell_end;
498     int         block_start;
499     int         block_end;
500     int         block_count;
501     int         angle_count;
502
503     /* Visual-friendly duration */
504     int         hours;
505     int         minutes;
506     int         seconds;
507
508     /* Exact duration (in 1/90000s) */
509     uint64_t    duration;
510
511     double      aspect;             // aspect ratio for the title's video
512     double      container_aspect;   // aspect ratio from container (0 if none)
513     int         width;
514     int         height;
515     int         pixel_aspect_width;
516     int         pixel_aspect_height;
517     int         rate;
518     int         rate_base;
519     int         crop[4];
520     enum { HB_MPEG2_PS_DEMUXER = 0, HB_MPEG2_TS_DEMUXER, HB_NULL_DEMUXER } demuxer;
521     int         detected_interlacing;
522     int         video_id;               /* demuxer stream id for video */
523     int         video_codec;            /* worker object id of video codec */
524     int         video_codec_param;      /* codec specific config */
525     const char  *video_codec_name;
526     int         video_bitrate;
527     const char  *container_name;
528     int         data_rate;
529
530     uint32_t    palette[16];
531
532     hb_metadata_t *metadata;
533
534     hb_list_t * list_chapter;
535     hb_list_t * list_audio;
536     hb_list_t * list_subtitle;
537
538     /* Job template for this title */
539     hb_job_t  * job;
540
541     uint32_t    flags;
542                 // set if video stream doesn't have IDR frames
543 #define         HBTF_NO_IDR (1 << 0)
544 };
545
546
547 struct hb_state_s
548 {
549 #define HB_STATE_IDLE     1
550 #define HB_STATE_SCANNING 2
551 #define HB_STATE_SCANDONE 4
552 #define HB_STATE_WORKING  8
553 #define HB_STATE_PAUSED   16
554 #define HB_STATE_WORKDONE 32
555 #define HB_STATE_MUXING   64
556     int state;
557
558     union
559     {
560         struct
561         {
562             /* HB_STATE_SCANNING */
563             int title_cur;
564             int title_count;
565         } scanning;
566
567         struct
568         {
569             /* HB_STATE_WORKING */
570             float progress;
571             int   job_cur;
572             int   job_count;
573             float rate_cur;
574             float rate_avg;
575             int   hours;
576             int   minutes;
577             int   seconds;
578             int   sequence_id;
579         } working;
580
581         struct
582         {
583             /* HB_STATE_WORKDONE */
584 #define HB_ERROR_NONE     0
585 #define HB_ERROR_CANCELED 1
586 #define HB_ERROR_UNKNOWN  2
587             int error;
588         } workdone;
589
590         struct
591         {
592             /* HB_STATE_MUXING */
593             float progress;
594         } muxing;
595     } param;
596 };
597
598 typedef struct hb_work_info_s
599 {
600     const char *name;
601     int     profile;
602     int     level;
603     int     bitrate;
604     int     rate;
605     int     rate_base;
606     int     flags;
607     int     version;
608     int     mode;
609     union {
610         struct {    // info only valid for video decoders
611             int     width;
612             int     height;
613             int     pixel_aspect_width;
614             int     pixel_aspect_height;
615             double  aspect;
616         };
617         struct {    // info only valid for audio decoders
618             int     channel_layout;
619         };
620     };
621 } hb_work_info_t;
622
623 struct hb_work_object_s
624 {
625     int                 id;
626     char              * name;
627
628 #ifdef __LIBHB__
629     int              (* init)  ( hb_work_object_t *, hb_job_t * );
630     int              (* work)  ( hb_work_object_t *, hb_buffer_t **,
631                                  hb_buffer_t ** );
632     void             (* close) ( hb_work_object_t * );
633     /* the info entry point is used by scan to get bitstream information
634      * during a decode (i.e., it should only be called after at least one
635      * call to the 'work' entry point). currently it's only called for
636      * video streams & can be null for other work objects. */
637     int              (* info)  ( hb_work_object_t *, hb_work_info_t * );
638     /* the bitstream info entry point is used by scan to get bitstream
639      * information from a buffer. it doesn't have to be called during a
640      * decode (it can be called even if init & work haven't been).
641      * currently it's only called for audio streams & can be null for
642      * other work objects. */
643     int              (* bsinfo)  ( hb_work_object_t *, const hb_buffer_t *, 
644                                    hb_work_info_t * );
645
646     hb_fifo_t         * fifo_in;
647     hb_fifo_t         * fifo_out;
648     hb_esconfig_t     * config;
649
650     /* Pointer hb_audio_t so we have access to the info in the audio worker threads. */
651     hb_audio_t        * audio;
652
653     /* Pointer hb_subtitle_t so we have access to the info in the subtitle worker threads. */
654     hb_subtitle_t     * subtitle;
655
656     hb_work_private_t * private_data;
657
658     hb_thread_t       * thread;
659     volatile int      * done;
660     int                 status;
661     int                 codec_param;
662     hb_title_t        * title;
663
664     hb_work_object_t  * next;
665     int                 thread_sleep_interval;
666 #endif
667 };
668
669 extern hb_work_object_t hb_sync;
670 extern hb_work_object_t hb_decmpeg2;
671 extern hb_work_object_t hb_decvobsub;
672 extern hb_work_object_t hb_encvobsub;
673 extern hb_work_object_t hb_deccc608;
674 extern hb_work_object_t hb_render;
675 extern hb_work_object_t hb_encavcodec;
676 extern hb_work_object_t hb_encx264;
677 extern hb_work_object_t hb_enctheora;
678 extern hb_work_object_t hb_deca52;
679 extern hb_work_object_t hb_decdca;
680 extern hb_work_object_t hb_decavcodec;
681 extern hb_work_object_t hb_decavcodecv;
682 extern hb_work_object_t hb_decavcodecvi;
683 extern hb_work_object_t hb_decavcodecai;
684 extern hb_work_object_t hb_declpcm;
685 extern hb_work_object_t hb_encfaac;
686 extern hb_work_object_t hb_enclame;
687 extern hb_work_object_t hb_encvorbis;
688 extern hb_work_object_t hb_encca_aac;
689
690 #define FILTER_OK      0
691 #define FILTER_DELAY   1
692 #define FILTER_FAILED  2
693 #define FILTER_DROP    3
694
695 struct hb_filter_object_s
696 {
697     int                     id;
698     char                  * name;
699     char                  * settings;
700
701 #ifdef __LIBHB__
702     hb_filter_private_t* (* init)  ( int, int, int, char * );
703
704     int                  (* work)  ( const hb_buffer_t *, hb_buffer_t **,
705                                      int, int, int, hb_filter_private_t * );
706
707     void                 (* close) ( hb_filter_private_t * );
708
709     hb_filter_private_t   * private_data;
710     //hb_buffer_t           * buffer;
711 #endif
712 };
713
714 extern hb_filter_object_t hb_filter_detelecine;
715 extern hb_filter_object_t hb_filter_deinterlace;
716 extern hb_filter_object_t hb_filter_deblock;
717 extern hb_filter_object_t hb_filter_denoise;
718 extern hb_filter_object_t hb_filter_decomb;
719
720 typedef void hb_error_handler_t( const char *errmsg );
721
722 extern void hb_register_error_handler( hb_error_handler_t * handler );
723
724 #endif