OSDN Git Service

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