OSDN Git Service

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