OSDN Git Service

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