OSDN Git Service

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