OSDN Git Service

WinGui:
[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     
129     /* SRT subtitle tracks only */
130     char src_filename[128];
131     char src_codeset[40];
132     int64_t offset;
133 };
134
135 #define HB_VIDEO_RATE_BASE   27000000
136
137 extern hb_rate_t    hb_video_rates[];
138 extern int          hb_video_rates_count;
139 extern hb_rate_t    hb_audio_rates[];
140 extern int          hb_audio_rates_count;
141 extern int          hb_audio_rates_default;
142 extern hb_rate_t    hb_audio_bitrates[];
143 extern int          hb_audio_bitrates_count;
144 extern int          hb_audio_bitrates_default;
145 extern hb_mixdown_t hb_audio_mixdowns[];
146 extern int          hb_audio_mixdowns_count;
147 int hb_mixdown_get_mixdown_from_short_name( const char * short_name );
148 const char * hb_mixdown_get_short_name_from_mixdown( int amixdown );
149
150 /******************************************************************************
151  * hb_job_t: settings to be filled by the UI
152  *****************************************************************************/
153 struct hb_job_s
154 {
155     /* ID assigned by UI so it can groups job passes together */
156     int             sequence_id;
157
158     /* Pointer to the title to be ripped */
159     hb_title_t    * title;
160     int             feature; // Detected DVD feature title
161
162     /* Chapter selection */
163     int             chapter_start;
164     int             chapter_end;
165
166         /* Include chapter marker track in mp4? */
167     int             chapter_markers;
168
169     /* Picture settings:
170          crop:                must be multiples of 2 (top/bottom/left/right)
171          deinterlace:         0 or 1
172          width:               must be a multiple of 2
173          height:              must be a multiple of 2
174          keep_ratio:          used by UIs
175          grayscale:           black and white encoding
176          pixel_ratio:         store pixel aspect ratio in the video
177          pixel_aspect_width:  numerator for pixel aspect ratio
178          pixel_aspect_height: denominator for pixel aspect ratio
179          modulus:             set a number for dimensions to be multiples of
180          maxWidth:            keep width below this
181          maxHeight:           keep height below this */
182     int             crop[4];
183     int             deinterlace;
184     hb_list_t     * filters;
185     int             width;
186     int             height;
187     int             keep_ratio;
188     int             grayscale;
189
190     struct
191     {
192         int             mode;
193         int             itu_par;
194         int             par_width;
195         int             par_height;
196         int             dar_width;
197         int             dar_height;
198         int             keep_display_aspect;
199     } anamorphic;
200
201     int             modulus;
202     int             maxWidth;
203     int             maxHeight;
204
205     /* Video settings:
206          vcodec:            output codec
207          vquality:          output quality (0.0..1.0)
208                             if < 0.0 or > 1.0, bitrate is used instead,
209                             except with x264, to use its real QP/RF scale
210          vbitrate:          output bitrate (kbps)
211          vrate, vrate_base: output framerate is vrate / vrate_base
212          cfr:               0 (vfr), 1 (cfr), 2 (pfr) [see render.c]
213          pass:              0, 1 or 2 (or -1 for scan)
214          h264_level:        vestigial boolean to decide if we're encoding for iPod
215          x264opts:          string of extra x264 options
216          areBframes:        boolean to note if b-frames are included in x264opts */
217 #define HB_VCODEC_MASK   0x0000FF
218 #define HB_VCODEC_FFMPEG 0x000001
219 #define HB_VCODEC_X264   0x000002
220 #define HB_VCODEC_THEORA 0x000004
221
222     int             vcodec;
223     float           vquality;
224     int             vbitrate;
225     int             vrate;
226     int             vrate_base;
227     int             vfr;
228     int             cfr;
229     int             pass;
230     int             h264_13;
231     int             h264_level;
232     char            *x264opts;
233     int             areBframes;
234     int             color_matrix;
235
236     /* List of audio settings. */
237     hb_list_t     * list_audio;
238
239     /* Subtitles
240      */
241     hb_list_t     * list_subtitle;
242
243     /* Muxer settings
244          mux:  output file format
245          file: file path */
246 #define HB_MUX_MASK 0xFF0000
247 #define HB_MUX_MP4  0x010000
248 #define HB_MUX_PSP  0x020000
249 #define HB_MUX_AVI  0x040000
250 #define HB_MUX_OGM  0x080000
251 #define HB_MUX_IPOD 0x100000
252 #define HB_MUX_MKV  0x200000
253
254     int             mux;
255     const char          * file;
256
257     /* Allow MP4 files > 4 gigs */
258     int             largeFileSize;
259     int             mp4_optimize;
260     int             ipod_atom;
261
262     int                     indepth_scan;
263     hb_subtitle_config_t    select_subtitle_config;
264
265     int             angle;              // dvd angle to encode
266     int             frame_to_start;     // declare eof when we hit this frame
267     int64_t         pts_to_start;       // drop frames until  we pass this pts 
268                                         //  in the time-linearized input stream
269     int             frame_to_stop;      // declare eof when we hit this frame
270     int64_t         pts_to_stop;        // declare eof when we pass this pts in
271                                         //  the time-linearized input stream
272     int             start_at_preview;   // if non-zero, encoding will start
273                                         //  at the position of preview n
274     int             seek_points;        //  out of N previews
275     uint32_t        frames_to_skip;     // decode but discard this many frames
276                                         //  initially (for frame accurate positioning
277                                         //  to non-I frames).
278
279 #ifdef __LIBHB__
280     /* Internal data */
281     hb_handle_t   * h;
282     hb_lock_t     * pause;
283     volatile int  * die;
284     volatile int    done;
285
286     uint64_t        st_pause_date;
287     uint64_t        st_paused;
288
289     hb_fifo_t     * fifo_mpeg2;   /* MPEG-2 video ES */
290     hb_fifo_t     * fifo_raw;     /* Raw pictures */
291     hb_fifo_t     * fifo_sync;    /* Raw pictures, framerate corrected */
292     hb_fifo_t     * fifo_render;  /* Raw pictures, scaled */
293     hb_fifo_t     * fifo_mpeg4;   /* MPEG-4 video ES */
294
295     hb_thread_t   * reader;
296
297     hb_list_t     * list_work;
298
299     hb_esconfig_t config;
300
301     hb_mux_data_t * mux_data;
302 #endif
303 };
304
305 /* Audio starts here */
306 /* Audio Codecs */
307 #define HB_ACODEC_MASK   0x00FF00
308 #define HB_ACODEC_FAAC   0x000100
309 #define HB_ACODEC_LAME   0x000200
310 #define HB_ACODEC_VORBIS 0x000400
311 #define HB_ACODEC_AC3    0x000800
312 #define HB_ACODEC_MPGA   0x001000
313 #define HB_ACODEC_LPCM   0x002000
314 #define HB_ACODEC_DCA    0x004000
315 #define HB_ACODEC_FFMPEG 0x008000
316 #define HB_ACODEC_CA_AAC 0x010000
317
318 /* Audio Mixdown */
319 /* define some masks, used to extract the various information from the HB_AMIXDOWN_XXXX values */
320 #define HB_AMIXDOWN_DCA_FORMAT_MASK             0x00FFF000
321 #define HB_AMIXDOWN_A52_FORMAT_MASK             0x00000FF0
322 #define HB_AMIXDOWN_DISCRETE_CHANNEL_COUNT_MASK 0x0000000F
323 /* define the HB_AMIXDOWN_XXXX values */
324 #define HB_AMIXDOWN_MONO                        0x01000001
325 // DCA_FORMAT of DCA_MONO                  = 0    = 0x000
326 // A52_FORMAT of A52_MONO                  = 1    = 0x01
327 // discrete channel count of 1
328 #define HB_AMIXDOWN_STEREO                      0x02002022
329 // DCA_FORMAT of DCA_STEREO                = 2    = 0x002
330 // A52_FORMAT of A52_STEREO                = 2    = 0x02
331 // discrete channel count of 2
332 #define HB_AMIXDOWN_DOLBY                       0x042070A2
333 // DCA_FORMAT of DCA_3F1R | DCA_OUT_DPLI   = 519  = 0x207
334 // A52_FORMAT of A52_DOLBY                 = 10   = 0x0A
335 // discrete channel count of 2
336 #define HB_AMIXDOWN_DOLBYPLII                   0x084094A2
337 // DCA_FORMAT of DCA_3F2R | DCA_OUT_DPLII  = 1033 = 0x409
338 // A52_FORMAT of A52_DOLBY | A52_USE_DPLII = 74   = 0x4A
339 // discrete channel count of 2
340 #define HB_AMIXDOWN_6CH                         0x10089176
341 // DCA_FORMAT of DCA_3F2R | DCA_LFE        = 137  = 0x089
342 // A52_FORMAT of A52_3F2R | A52_LFE        = 23   = 0x17
343 // discrete channel count of 6
344 /* define some macros to extract the various information from the HB_AMIXDOWN_XXXX values */
345 #define HB_AMIXDOWN_GET_DCA_FORMAT( a ) ( ( a & HB_AMIXDOWN_DCA_FORMAT_MASK ) >> 12 )
346 #define HB_AMIXDOWN_GET_A52_FORMAT( a ) ( ( a & HB_AMIXDOWN_A52_FORMAT_MASK ) >> 4 )
347 #define HB_AMIXDOWN_GET_DISCRETE_CHANNEL_COUNT( a ) ( ( a & HB_AMIXDOWN_DISCRETE_CHANNEL_COUNT_MASK ) )
348
349 /* Input Channel Layout */
350 /* define some masks, used to extract the various information from the HB_AMIXDOWN_XXXX values */
351 #define HB_INPUT_CH_LAYOUT_DISCRETE_FRONT_MASK  0x00F0000
352 #define HB_INPUT_CH_LAYOUT_DISCRETE_REAR_MASK   0x000F000
353 #define HB_INPUT_CH_LAYOUT_DISCRETE_LFE_MASK    0x0000F00
354 #define HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK 0xFFFF0FF
355 #define HB_INPUT_CH_LAYOUT_ENCODED_FRONT_MASK   0x00000F0
356 #define HB_INPUT_CH_LAYOUT_ENCODED_REAR_MASK    0x000000F
357 /* define the input channel layouts used to describe the channel layout of this audio */
358 #define HB_INPUT_CH_LAYOUT_MONO    0x0110010
359 #define HB_INPUT_CH_LAYOUT_STEREO  0x0220020
360 #define HB_INPUT_CH_LAYOUT_DOLBY   0x0320031
361 #define HB_INPUT_CH_LAYOUT_3F      0x0430030
362 #define HB_INPUT_CH_LAYOUT_2F1R    0x0521021
363 #define HB_INPUT_CH_LAYOUT_3F1R    0x0631031
364 #define HB_INPUT_CH_LAYOUT_2F2R    0x0722022
365 #define HB_INPUT_CH_LAYOUT_3F2R    0x0832032
366 #define HB_INPUT_CH_LAYOUT_4F2R    0x0942042
367 #define HB_INPUT_CH_LAYOUT_3F4R    0x0a34034
368 #define HB_INPUT_CH_LAYOUT_HAS_LFE 0x0000100
369 /* define some macros to extract the various information from the HB_AMIXDOWN_XXXX values */
370 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_FRONT_COUNT( a ) ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_FRONT_MASK ) >> 16 )
371 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_REAR_COUNT( a )  ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_REAR_MASK ) >> 12 )
372 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_LFE_COUNT( a )   ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_LFE_MASK ) >> 8 )
373 #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 ) )
374 #define HB_INPUT_CH_LAYOUT_GET_ENCODED_FRONT_COUNT( a )   ( ( a & HB_INPUT_CH_LAYOUT_ENCODED_FRONT_MASK ) >> 4 )
375 #define HB_INPUT_CH_LAYOUT_GET_ENCODED_REAR_COUNT( a )   ( ( a & HB_INPUT_CH_LAYOUT_ENCODED_REAR_MASK ) )
376
377 struct hb_audio_config_s
378 {
379     /* Output */
380     struct
381     {
382             int track;      /* Output track number */
383             uint32_t codec;  /* Output audio codec.
384                                  * HB_ACODEC_AC3 means pass-through, then bitrate and samplerate
385                                  * are ignored.
386                                  */
387             int samplerate; /* Output sample rate (Hz) */
388             int bitrate;    /* Output bitrate (kbps) */
389             int mixdown;    /* The mixdown format to be used for this audio track (see HB_AMIXDOWN_*) */
390             double dynamic_range_compression; /* Amount of DRC that gets applied to this track */
391             char * name;    /* Output track name */
392     } out;
393
394     /* Input */
395     struct
396     {
397         int track;                /* Input track number */
398         PRIVATE uint32_t codec;   /* Input audio codec */
399         PRIVATE uint32_t codec_param; /* per-codec config info */
400         PRIVATE uint32_t version; /* Bitsream version */
401         PRIVATE uint32_t mode;    /* Bitstream mode, codec dependent encoding */
402         PRIVATE int samplerate; /* Input sample rate (Hz) */
403         PRIVATE int bitrate;    /* Input bitrate (kbps) */
404         PRIVATE int channel_layout;
405         /* channel_layout is the channel layout of this audio this is used to
406         * provide a common way of describing the source audio
407         */
408     } in;
409
410     /* Misc. */
411     union
412     {
413         PRIVATE int ac3;    /* flags.ac3 is only set when the source audio format is HB_ACODEC_AC3 */
414         PRIVATE int dca;    /* flags.dca is only set when the source audio format is HB_ACODEC_DCA */
415     } flags;
416 #define AUDIO_F_DOLBY (1 << 31)  /* set if source uses Dolby Surround */
417
418     struct
419     {
420         PRIVATE char description[1024];
421         PRIVATE char simple[1024];
422         PRIVATE char iso639_2[4];
423         PRIVATE uint8_t type; /* normal, visually impared, directors */
424     } lang;
425 };
426
427 #ifdef __LIBHB__
428 struct hb_audio_s
429 {
430     int id;
431
432     hb_audio_config_t config;
433
434     struct {
435         hb_fifo_t * fifo_in;   /* AC3/MPEG/LPCM ES */
436         hb_fifo_t * fifo_raw;  /* Raw audio */
437         hb_fifo_t * fifo_sync; /* Resampled, synced raw audio */
438         hb_fifo_t * fifo_out;  /* MP3/AAC/Vorbis ES */
439
440         hb_esconfig_t config;
441         hb_mux_data_t * mux_data;
442         hb_fifo_t     * scan_cache;
443     } priv;
444 };
445 #endif
446
447 struct hb_chapter_s
448 {
449     int      index;
450     int      pgcn;
451     int      pgn;
452     int      cell_start;
453     int      cell_end;
454     int      block_start;
455     int      block_end;
456     int      block_count;
457
458     /* Visual-friendly duration */
459     int      hours;
460     int      minutes;
461     int      seconds;
462
463     /* Exact duration (in 1/90000s) */
464     uint64_t duration;
465
466     /* Optional chapter title */
467     char     title[1024];
468 };
469
470 /*
471  * A subtitle track.
472  * 
473  * Required fields when a demuxer creates a subtitle track are:
474  * > id
475  *     - ID of this track
476  *     - must be unique for all tracks within a single job,
477  *       since it is used to look up the appropriate in-FIFO with GetFifoForId()
478  * > format
479  *     - format of the packets the subtitle decoder work-object sends to sub->fifo_raw
480  *     - for passthru subtitles, is also the format of the final packets sent to sub->fifo_out
481  *     - PICTURESUB for banded 8-bit YAUV pixels; see decvobsub.c documentation for more info
482  *     - TEXTSUB for UTF-8 text marked up with <b>, <i>, or <u>
483  *     - read by the muxers, and by the subtitle burn-in logic in the hb_sync_video work-object
484  * > source
485  *     - used to create the appropriate subtitle decoder work-object in do_job()
486  * > config.dest
487  *     - whether to render the subtitle on the video track (RENDERSUB) or 
488  *       to pass it through its own subtitle track in the output container (PASSTHRUSUB)
489  *     - for legacy compatibility, all newly created VOBSUB tracks should default to RENDERSUB
490  *     - since only VOBSUBs are renderable (as of 2010-04-25), all other newly created
491  *       subtitle track types should default to PASSTHRUSUB
492  * > lang
493  *     - user-readable description of the subtitle track
494  *     - may correspond to the language of the track (see the 'iso639_2' field)
495  *     - may correspond to the type of track (see the 'type' field; ex: "Closed Captions")
496  * > iso639_2
497  *     - language code for the subtitle, or "und" if unknown
498  */
499 struct hb_subtitle_s
500 {
501     int  id;
502     int  track;
503
504     hb_subtitle_config_t config;
505
506     enum subtype { PICTURESUB, TEXTSUB } format;
507     enum subsource { VOBSUB, SRTSUB, CC608SUB, /*unused*/CC708SUB, UTF8SUB, TX3GSUB, SSASUB } source;
508     char lang[1024];
509     char iso639_2[4];
510     uint8_t type; /* Closed Caption, Childrens, Directors etc */
511     
512     // Color lookup table for VOB subtitle tracks. Each entry is in YCbCr format.
513     // Must be filled out by the demuxer for VOB subtitle tracks.
514     uint32_t    palette[16];
515     int         width;
516     int         height;
517
518     int hits;     /* How many hits/occurrences of this subtitle */
519     int forced_hits; /* How many forced hits in this subtitle */
520
521 #ifdef __LIBHB__
522     /* Internal data */
523     hb_fifo_t * fifo_in;  /* SPU ES */
524     hb_fifo_t * fifo_raw; /* Decoded SPU */
525     hb_fifo_t * fifo_sync;/* Synced */
526     hb_fifo_t * fifo_out; /* Correct Timestamps, ready to be muxed */
527     hb_mux_data_t * mux_data;
528 #endif
529 };
530
531 struct hb_metadata_s 
532 {
533     char  name[255];
534     char  artist[255];
535     char  composer[255];
536     char  release_date[255];
537     char  comment[1024];
538     char  album[255];
539     char  genre[255];
540     uint32_t coverart_size;
541     uint8_t *coverart;
542 };
543
544 struct hb_title_s
545 {
546     enum { HB_DVD_TYPE, HB_STREAM_TYPE } type;
547     char        path[1024];
548     char        name[1024];
549     int         index;
550     int         vts;
551     int         ttn;
552     int         cell_start;
553     int         cell_end;
554     int         block_start;
555     int         block_end;
556     int         block_count;
557     int         angle_count;
558
559     /* Visual-friendly duration */
560     int         hours;
561     int         minutes;
562     int         seconds;
563
564     /* Exact duration (in 1/90000s) */
565     uint64_t    duration;
566
567     double      aspect;             // aspect ratio for the title's video
568     double      container_aspect;   // aspect ratio from container (0 if none)
569     int         width;
570     int         height;
571     int         pixel_aspect_width;
572     int         pixel_aspect_height;
573     int         rate;
574     int         rate_base;
575     int         crop[4];
576     enum { HB_MPEG2_PS_DEMUXER = 0, HB_MPEG2_TS_DEMUXER, HB_NULL_DEMUXER } demuxer;
577     int         detected_interlacing;
578     int         video_id;               /* demuxer stream id for video */
579     int         video_codec;            /* worker object id of video codec */
580     int         video_codec_param;      /* codec specific config */
581     const char  *video_codec_name;
582     int         video_bitrate;
583     const char  *container_name;
584     int         data_rate;
585
586     hb_metadata_t *metadata;
587
588     hb_list_t * list_chapter;
589     hb_list_t * list_audio;
590     hb_list_t * list_subtitle;
591
592     /* Job template for this title */
593     hb_job_t  * job;
594
595     uint32_t    flags;
596                 // set if video stream doesn't have IDR frames
597 #define         HBTF_NO_IDR (1 << 0)
598 };
599
600
601 struct hb_state_s
602 {
603 #define HB_STATE_IDLE     1
604 #define HB_STATE_SCANNING 2
605 #define HB_STATE_SCANDONE 4
606 #define HB_STATE_WORKING  8
607 #define HB_STATE_PAUSED   16
608 #define HB_STATE_WORKDONE 32
609 #define HB_STATE_MUXING   64
610 #define HB_STATE_SEARCHING 128
611     int state;
612
613     union
614     {
615         struct
616         {
617             /* HB_STATE_SCANNING */
618             int title_cur;
619             int title_count;
620         } scanning;
621
622         struct
623         {
624             /* HB_STATE_WORKING */
625             float progress;
626             int   job_cur;
627             int   job_count;
628             float rate_cur;
629             float rate_avg;
630             int   hours;
631             int   minutes;
632             int   seconds;
633             int   sequence_id;
634         } working;
635
636         struct
637         {
638             /* HB_STATE_WORKDONE */
639 #define HB_ERROR_NONE     0
640 #define HB_ERROR_CANCELED 1
641 #define HB_ERROR_UNKNOWN  2
642             int error;
643         } workdone;
644
645         struct
646         {
647             /* HB_STATE_MUXING */
648             float progress;
649         } muxing;
650     } param;
651 };
652
653 typedef struct hb_work_info_s
654 {
655     const char *name;
656     int     profile;
657     int     level;
658     int     bitrate;
659     int     rate;
660     int     rate_base;
661     int     flags;
662     int     version;
663     int     mode;
664     union {
665         struct {    // info only valid for video decoders
666             int     width;
667             int     height;
668             int     pixel_aspect_width;
669             int     pixel_aspect_height;
670             double  aspect;
671         };
672         struct {    // info only valid for audio decoders
673             int     channel_layout;
674         };
675     };
676 } hb_work_info_t;
677
678 struct hb_work_object_s
679 {
680     int                 id;
681     char              * name;
682
683 #ifdef __LIBHB__
684     int              (* init)  ( hb_work_object_t *, hb_job_t * );
685     int              (* work)  ( hb_work_object_t *, hb_buffer_t **,
686                                  hb_buffer_t ** );
687     void             (* close) ( hb_work_object_t * );
688     /* the info entry point is used by scan to get bitstream information
689      * during a decode (i.e., it should only be called after at least one
690      * call to the 'work' entry point). currently it's only called for
691      * video streams & can be null for other work objects. */
692     int              (* info)  ( hb_work_object_t *, hb_work_info_t * );
693     /* the bitstream info entry point is used by scan to get bitstream
694      * information from a buffer. it doesn't have to be called during a
695      * decode (it can be called even if init & work haven't been).
696      * currently it's only called for audio streams & can be null for
697      * other work objects. */
698     int              (* bsinfo)  ( hb_work_object_t *, const hb_buffer_t *, 
699                                    hb_work_info_t * );
700
701     hb_fifo_t         * fifo_in;
702     hb_fifo_t         * fifo_out;
703     hb_esconfig_t     * config;
704
705     /* Pointer hb_audio_t so we have access to the info in the audio worker threads. */
706     hb_audio_t        * audio;
707
708     /* Pointer hb_subtitle_t so we have access to the info in the subtitle worker threads. */
709     hb_subtitle_t     * subtitle;
710
711     hb_work_private_t * private_data;
712
713     hb_thread_t       * thread;
714     volatile int      * done;
715     int                 status;
716     int                 codec_param;
717     hb_title_t        * title;
718
719     hb_work_object_t  * next;
720     int                 thread_sleep_interval;
721 #endif
722 };
723
724 extern hb_work_object_t hb_sync_video;
725 extern hb_work_object_t hb_sync_audio;
726 extern hb_work_object_t hb_decmpeg2;
727 extern hb_work_object_t hb_decvobsub;
728 extern hb_work_object_t hb_encvobsub;
729 extern hb_work_object_t hb_deccc608;
730 extern hb_work_object_t hb_decsrtsub;
731 extern hb_work_object_t hb_decutf8sub;
732 extern hb_work_object_t hb_dectx3gsub;
733 extern hb_work_object_t hb_decssasub;
734 extern hb_work_object_t hb_render;
735 extern hb_work_object_t hb_encavcodec;
736 extern hb_work_object_t hb_encx264;
737 extern hb_work_object_t hb_enctheora;
738 extern hb_work_object_t hb_deca52;
739 extern hb_work_object_t hb_decdca;
740 extern hb_work_object_t hb_decavcodec;
741 extern hb_work_object_t hb_decavcodecv;
742 extern hb_work_object_t hb_decavcodecvi;
743 extern hb_work_object_t hb_decavcodecai;
744 extern hb_work_object_t hb_declpcm;
745 extern hb_work_object_t hb_encfaac;
746 extern hb_work_object_t hb_enclame;
747 extern hb_work_object_t hb_encvorbis;
748 extern hb_work_object_t hb_muxer;
749 extern hb_work_object_t hb_encca_aac;
750
751 #define FILTER_OK      0
752 #define FILTER_DELAY   1
753 #define FILTER_FAILED  2
754 #define FILTER_DROP    3
755
756 struct hb_filter_object_s
757 {
758     int                     id;
759     char                  * name;
760     char                  * settings;
761
762 #ifdef __LIBHB__
763     hb_filter_private_t* (* init)  ( int, int, int, char * );
764
765     int                  (* work)  ( const hb_buffer_t *, hb_buffer_t **,
766                                      int, int, int, hb_filter_private_t * );
767
768     void                 (* close) ( hb_filter_private_t * );
769
770     hb_filter_private_t   * private_data;
771     //hb_buffer_t           * buffer;
772 #endif
773 };
774
775 #define HB_FILTER_DETELECINE    1
776 #define HB_FILTER_DEINTERLACE   2
777 #define HB_FILTER_DEBLOCK       3
778 #define HB_FILTER_DENOISE       4
779 #define HB_FILTER_DECOMB        5
780 #define HB_FILTER_ROTATE        6
781
782 extern hb_filter_object_t hb_filter_detelecine;
783 extern hb_filter_object_t hb_filter_deinterlace;
784 extern hb_filter_object_t hb_filter_deblock;
785 extern hb_filter_object_t hb_filter_denoise;
786 extern hb_filter_object_t hb_filter_decomb;
787 extern hb_filter_object_t hb_filter_rotate;
788
789 typedef void hb_error_handler_t( const char *errmsg );
790
791 extern void hb_register_error_handler( hb_error_handler_t * handler );
792
793 char * hb_strdup_printf( char * fmt, ... );
794
795 int hb_yuv2rgb(int yuv);
796 int hb_rgb2yuv(int rgb);
797
798 #endif