OSDN Git Service

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