OSDN Git Service

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