OSDN Git Service

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