OSDN Git Service

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