OSDN Git Service

gitattirubes test 2
[handbrake-jp/handbrake-jp.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     uint64_t        st_pause_date;
281     uint64_t        st_paused;
282
283     hb_fifo_t     * fifo_mpeg2;   /* MPEG-2 video ES */
284     hb_fifo_t     * fifo_raw;     /* Raw pictures */
285     hb_fifo_t     * fifo_sync;    /* Raw pictures, framerate corrected */
286     hb_fifo_t     * fifo_render;  /* Raw pictures, scaled */
287     hb_fifo_t     * fifo_mpeg4;   /* MPEG-4 video ES */
288
289     hb_thread_t   * reader;
290     hb_thread_t   * muxer;
291
292     hb_list_t     * list_work;
293
294     hb_esconfig_t config;
295
296     hb_mux_data_t * mux_data;
297 #endif
298 };
299
300 /* Audio starts here */
301 /* Audio Codecs */
302 #define HB_ACODEC_MASK   0x00FF00
303 #define HB_ACODEC_FAAC   0x000100
304 #define HB_ACODEC_LAME   0x000200
305 #define HB_ACODEC_VORBIS 0x000400
306 #define HB_ACODEC_AC3    0x000800
307 #define HB_ACODEC_MPGA   0x001000
308 #define HB_ACODEC_LPCM   0x002000
309 #define HB_ACODEC_DCA    0x004000
310 #define HB_ACODEC_FFMPEG 0x008000
311 #define HB_ACODEC_CA_AAC 0x010000
312
313 /* Audio Mixdown */
314 /* define some masks, used to extract the various information from the HB_AMIXDOWN_XXXX values */
315 #define HB_AMIXDOWN_DCA_FORMAT_MASK             0x00FFF000
316 #define HB_AMIXDOWN_A52_FORMAT_MASK             0x00000FF0
317 #define HB_AMIXDOWN_DISCRETE_CHANNEL_COUNT_MASK 0x0000000F
318 /* define the HB_AMIXDOWN_XXXX values */
319 #define HB_AMIXDOWN_MONO                        0x01000001
320 // DCA_FORMAT of DCA_MONO                  = 0    = 0x000
321 // A52_FORMAT of A52_MONO                  = 1    = 0x01
322 // discrete channel count of 1
323 #define HB_AMIXDOWN_STEREO                      0x02002022
324 // DCA_FORMAT of DCA_STEREO                = 2    = 0x002
325 // A52_FORMAT of A52_STEREO                = 2    = 0x02
326 // discrete channel count of 2
327 #define HB_AMIXDOWN_DOLBY                       0x042070A2
328 // DCA_FORMAT of DCA_3F1R | DCA_OUT_DPLI   = 519  = 0x207
329 // A52_FORMAT of A52_DOLBY                 = 10   = 0x0A
330 // discrete channel count of 2
331 #define HB_AMIXDOWN_DOLBYPLII                   0x084094A2
332 // DCA_FORMAT of DCA_3F2R | DCA_OUT_DPLII  = 1033 = 0x409
333 // A52_FORMAT of A52_DOLBY | A52_USE_DPLII = 74   = 0x4A
334 // discrete channel count of 2
335 #define HB_AMIXDOWN_6CH                         0x10089176
336 // DCA_FORMAT of DCA_3F2R | DCA_LFE        = 137  = 0x089
337 // A52_FORMAT of A52_3F2R | A52_LFE        = 23   = 0x17
338 // discrete channel count of 6
339 /* define some macros to extract the various information from the HB_AMIXDOWN_XXXX values */
340 #define HB_AMIXDOWN_GET_DCA_FORMAT( a ) ( ( a & HB_AMIXDOWN_DCA_FORMAT_MASK ) >> 12 )
341 #define HB_AMIXDOWN_GET_A52_FORMAT( a ) ( ( a & HB_AMIXDOWN_A52_FORMAT_MASK ) >> 4 )
342 #define HB_AMIXDOWN_GET_DISCRETE_CHANNEL_COUNT( a ) ( ( a & HB_AMIXDOWN_DISCRETE_CHANNEL_COUNT_MASK ) )
343
344 /* Input Channel Layout */
345 /* define some masks, used to extract the various information from the HB_AMIXDOWN_XXXX values */
346 #define HB_INPUT_CH_LAYOUT_DISCRETE_FRONT_MASK  0x00F0000
347 #define HB_INPUT_CH_LAYOUT_DISCRETE_REAR_MASK   0x000F000
348 #define HB_INPUT_CH_LAYOUT_DISCRETE_LFE_MASK    0x0000F00
349 #define HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK 0xFFFF0FF
350 #define HB_INPUT_CH_LAYOUT_ENCODED_FRONT_MASK   0x00000F0
351 #define HB_INPUT_CH_LAYOUT_ENCODED_REAR_MASK    0x000000F
352 /* define the input channel layouts used to describe the channel layout of this audio */
353 #define HB_INPUT_CH_LAYOUT_MONO    0x0110010
354 #define HB_INPUT_CH_LAYOUT_STEREO  0x0220020
355 #define HB_INPUT_CH_LAYOUT_DOLBY   0x0320031
356 #define HB_INPUT_CH_LAYOUT_3F      0x0430030
357 #define HB_INPUT_CH_LAYOUT_2F1R    0x0521021
358 #define HB_INPUT_CH_LAYOUT_3F1R    0x0631031
359 #define HB_INPUT_CH_LAYOUT_2F2R    0x0722022
360 #define HB_INPUT_CH_LAYOUT_3F2R    0x0832032
361 #define HB_INPUT_CH_LAYOUT_4F2R    0x0942042
362 #define HB_INPUT_CH_LAYOUT_HAS_LFE 0x0000100
363 /* define some macros to extract the various information from the HB_AMIXDOWN_XXXX values */
364 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_FRONT_COUNT( a ) ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_FRONT_MASK ) >> 16 )
365 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_REAR_COUNT( a )  ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_REAR_MASK ) >> 12 )
366 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_LFE_COUNT( a )   ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_LFE_MASK ) >> 8 )
367 #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 ) )
368 #define HB_INPUT_CH_LAYOUT_GET_ENCODED_FRONT_COUNT( a )   ( ( a & HB_INPUT_CH_LAYOUT_ENCODED_FRONT_MASK ) >> 4 )
369 #define HB_INPUT_CH_LAYOUT_GET_ENCODED_REAR_COUNT( a )   ( ( a & HB_INPUT_CH_LAYOUT_ENCODED_REAR_MASK ) )
370
371 struct hb_audio_config_s
372 {
373     /* Output */
374     struct
375     {
376             int track;      /* Output track number */
377             uint32_t codec;  /* Output audio codec.
378                                  * HB_ACODEC_AC3 means pass-through, then bitrate and samplerate
379                                  * are ignored.
380                                  */
381             int samplerate; /* Output sample rate (Hz) */
382             int bitrate;    /* Output bitrate (kbps) */
383             int mixdown;    /* The mixdown format to be used for this audio track (see HB_AMIXDOWN_*) */
384             double dynamic_range_compression; /* Amount of DRC that gets applied to this track */
385             char * name;    /* Output track name */
386     } out;
387
388     /* Input */
389     struct
390     {
391         int track;                /* Input track number */
392         PRIVATE uint32_t codec;   /* Input audio codec */
393         PRIVATE uint32_t codec_param; /* per-codec config info */
394         PRIVATE uint32_t version; /* Bitsream version */
395         PRIVATE uint32_t mode;    /* Bitstream mode, codec dependent encoding */
396         PRIVATE int samplerate; /* Input sample rate (Hz) */
397         PRIVATE int bitrate;    /* Input bitrate (kbps) */
398         PRIVATE int channel_layout;
399         /* channel_layout is the channel layout of this audio this is used to
400         * provide a common way of describing the source audio
401         */
402     } in;
403
404     /* Misc. */
405     union
406     {
407         PRIVATE int ac3;    /* flags.ac3 is only set when the source audio format is HB_ACODEC_AC3 */
408         PRIVATE int dca;    /* flags.dca is only set when the source audio format is HB_ACODEC_DCA */
409     } flags;
410 #define AUDIO_F_DOLBY (1 << 31)  /* set if source uses Dolby Surround */
411
412     struct
413     {
414         PRIVATE char description[1024];
415         PRIVATE char simple[1024];
416         PRIVATE char iso639_2[4];
417         PRIVATE uint8_t type; /* normal, visually impared, directors */
418     } lang;
419 };
420
421 #ifdef __LIBHB__
422 struct hb_audio_s
423 {
424     int id;
425
426     hb_audio_config_t config;
427
428     struct {
429         hb_fifo_t * fifo_in;   /* AC3/MPEG/LPCM ES */
430         hb_fifo_t * fifo_raw;  /* Raw audio */
431         hb_fifo_t * fifo_sync; /* Resampled, synced raw audio */
432         hb_fifo_t * fifo_out;  /* MP3/AAC/Vorbis ES */
433
434         hb_esconfig_t config;
435         hb_mux_data_t * mux_data;
436     } priv;
437 };
438 #endif
439
440 struct hb_chapter_s
441 {
442     int      index;
443     int      pgcn;
444     int      pgn;
445     int      cell_start;
446     int      cell_end;
447     int      block_start;
448     int      block_end;
449     int      block_count;
450
451     /* Visual-friendly duration */
452     int      hours;
453     int      minutes;
454     int      seconds;
455
456     /* Exact duration (in 1/90000s) */
457     uint64_t duration;
458
459     /* Optional chapter title */
460     char     title[1024];
461 };
462
463 struct hb_subtitle_s
464 {
465     int  id;
466     int  track;
467
468     hb_subtitle_config_t config;
469
470     enum subtype { PICTURESUB, TEXTSUB } format;
471     enum subsource { VOBSUB, SRTSUB, CC608SUB, CC708SUB } source;
472     char lang[1024];
473     char iso639_2[4];
474     uint8_t type; /* Closed Caption, Childrens, Directors etc */
475
476     int hits;     /* How many hits/occurrences of this subtitle */
477     int forced_hits; /* How many forced hits in this subtitle */
478
479 #ifdef __LIBHB__
480     /* Internal data */
481     hb_fifo_t * fifo_in;  /* SPU ES */
482     hb_fifo_t * fifo_raw; /* Decoded SPU */
483     hb_fifo_t * fifo_sync;/* Synced */
484     hb_fifo_t * fifo_out; /* Correct Timestamps, ready to be muxed */
485     hb_mux_data_t * mux_data;
486 #endif
487 };
488
489 struct hb_metadata_s 
490 {
491     char  name[255];
492     char  artist[255];
493     char  composer[255];
494     char  release_date[255];
495     char  comment[1024];
496     char  album[255];
497     char  genre[255];
498     uint32_t coverart_size;
499     uint8_t *coverart;
500 };
501
502 struct hb_title_s
503 {
504     char        dvd[1024];
505     char        name[1024];
506     int         index;
507     int         vts;
508     int         ttn;
509     int         cell_start;
510     int         cell_end;
511     int         block_start;
512     int         block_end;
513     int         block_count;
514     int         angle_count;
515
516     /* Visual-friendly duration */
517     int         hours;
518     int         minutes;
519     int         seconds;
520
521     /* Exact duration (in 1/90000s) */
522     uint64_t    duration;
523
524     double      aspect;             // aspect ratio for the title's video
525     double      container_aspect;   // aspect ratio from container (0 if none)
526     int         width;
527     int         height;
528     int         pixel_aspect_width;
529     int         pixel_aspect_height;
530     int         rate;
531     int         rate_base;
532     int         crop[4];
533     enum { HB_MPEG2_PS_DEMUXER = 0, HB_MPEG2_TS_DEMUXER, HB_NULL_DEMUXER } demuxer;
534     int         detected_interlacing;
535     int         video_id;               /* demuxer stream id for video */
536     int         video_codec;            /* worker object id of video codec */
537     int         video_codec_param;      /* codec specific config */
538     const char  *video_codec_name;
539     int         video_bitrate;
540     const char  *container_name;
541     int         data_rate;
542
543     uint32_t    palette[16];
544
545     hb_metadata_t *metadata;
546
547     hb_list_t * list_chapter;
548     hb_list_t * list_audio;
549     hb_list_t * list_subtitle;
550
551     /* Job template for this title */
552     hb_job_t  * job;
553
554     uint32_t    flags;
555                 // set if video stream doesn't have IDR frames
556 #define         HBTF_NO_IDR (1 << 0)
557 };
558
559
560 struct hb_state_s
561 {
562 #define HB_STATE_IDLE     1
563 #define HB_STATE_SCANNING 2
564 #define HB_STATE_SCANDONE 4
565 #define HB_STATE_WORKING  8
566 #define HB_STATE_PAUSED   16
567 #define HB_STATE_WORKDONE 32
568 #define HB_STATE_MUXING   64
569     int state;
570
571     union
572     {
573         struct
574         {
575             /* HB_STATE_SCANNING */
576             int title_cur;
577             int title_count;
578         } scanning;
579
580         struct
581         {
582             /* HB_STATE_WORKING */
583             float progress;
584             int   job_cur;
585             int   job_count;
586             float rate_cur;
587             float rate_avg;
588             int   hours;
589             int   minutes;
590             int   seconds;
591             int   sequence_id;
592         } working;
593
594         struct
595         {
596             /* HB_STATE_WORKDONE */
597 #define HB_ERROR_NONE     0
598 #define HB_ERROR_CANCELED 1
599 #define HB_ERROR_UNKNOWN  2
600             int error;
601         } workdone;
602
603         struct
604         {
605             /* HB_STATE_MUXING */
606             float progress;
607         } muxing;
608     } param;
609 };
610
611 typedef struct hb_work_info_s
612 {
613     const char *name;
614     int     profile;
615     int     level;
616     int     bitrate;
617     int     rate;
618     int     rate_base;
619     int     flags;
620     int     version;
621     int     mode;
622     union {
623         struct {    // info only valid for video decoders
624             int     width;
625             int     height;
626             int     pixel_aspect_width;
627             int     pixel_aspect_height;
628             double  aspect;
629         };
630         struct {    // info only valid for audio decoders
631             int     channel_layout;
632         };
633     };
634 } hb_work_info_t;
635
636 struct hb_work_object_s
637 {
638     int                 id;
639     char              * name;
640
641 #ifdef __LIBHB__
642     int              (* init)  ( hb_work_object_t *, hb_job_t * );
643     int              (* work)  ( hb_work_object_t *, hb_buffer_t **,
644                                  hb_buffer_t ** );
645     void             (* close) ( hb_work_object_t * );
646     /* the info entry point is used by scan to get bitstream information
647      * during a decode (i.e., it should only be called after at least one
648      * call to the 'work' entry point). currently it's only called for
649      * video streams & can be null for other work objects. */
650     int              (* info)  ( hb_work_object_t *, hb_work_info_t * );
651     /* the bitstream info entry point is used by scan to get bitstream
652      * information from a buffer. it doesn't have to be called during a
653      * decode (it can be called even if init & work haven't been).
654      * currently it's only called for audio streams & can be null for
655      * other work objects. */
656     int              (* bsinfo)  ( hb_work_object_t *, const hb_buffer_t *, 
657                                    hb_work_info_t * );
658
659     hb_fifo_t         * fifo_in;
660     hb_fifo_t         * fifo_out;
661     hb_esconfig_t     * config;
662
663     /* Pointer hb_audio_t so we have access to the info in the audio worker threads. */
664     hb_audio_t        * audio;
665
666     /* Pointer hb_subtitle_t so we have access to the info in the subtitle worker threads. */
667     hb_subtitle_t     * subtitle;
668
669     hb_work_private_t * private_data;
670
671     hb_thread_t       * thread;
672     volatile int      * done;
673     int                 status;
674     int                 codec_param;
675     hb_title_t        * title;
676
677     hb_work_object_t  * next;
678     int                 thread_sleep_interval;
679 #endif
680 };
681
682 extern hb_work_object_t hb_sync;
683 extern hb_work_object_t hb_decmpeg2;
684 extern hb_work_object_t hb_decvobsub;
685 extern hb_work_object_t hb_encvobsub;
686 extern hb_work_object_t hb_deccc608;
687 extern hb_work_object_t hb_decsrtsub;
688 extern hb_work_object_t hb_render;
689 extern hb_work_object_t hb_encavcodec;
690 extern hb_work_object_t hb_encx264;
691 extern hb_work_object_t hb_enctheora;
692 extern hb_work_object_t hb_deca52;
693 extern hb_work_object_t hb_decdca;
694 extern hb_work_object_t hb_decavcodec;
695 extern hb_work_object_t hb_decavcodecv;
696 extern hb_work_object_t hb_decavcodecvi;
697 extern hb_work_object_t hb_decavcodecai;
698 extern hb_work_object_t hb_declpcm;
699 extern hb_work_object_t hb_encfaac;
700 extern hb_work_object_t hb_enclame;
701 extern hb_work_object_t hb_encvorbis;
702 extern hb_work_object_t hb_encca_aac;
703
704 #define FILTER_OK      0
705 #define FILTER_DELAY   1
706 #define FILTER_FAILED  2
707 #define FILTER_DROP    3
708
709 struct hb_filter_object_s
710 {
711     int                     id;
712     char                  * name;
713     char                  * settings;
714
715 #ifdef __LIBHB__
716     hb_filter_private_t* (* init)  ( int, int, int, char * );
717
718     int                  (* work)  ( const hb_buffer_t *, hb_buffer_t **,
719                                      int, int, int, hb_filter_private_t * );
720
721     void                 (* close) ( hb_filter_private_t * );
722
723     hb_filter_private_t   * private_data;
724     //hb_buffer_t           * buffer;
725 #endif
726 };
727
728 extern hb_filter_object_t hb_filter_detelecine;
729 extern hb_filter_object_t hb_filter_deinterlace;
730 extern hb_filter_object_t hb_filter_deblock;
731 extern hb_filter_object_t hb_filter_denoise;
732 extern hb_filter_object_t hb_filter_decomb;
733
734 typedef void hb_error_handler_t( const char *errmsg );
735
736 extern void hb_register_error_handler( hb_error_handler_t * handler );
737
738 #endif