OSDN Git Service

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