OSDN Git Service

Support for reading VOB subtitle tracks from file inputs initital implementation.
[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 } 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
516     int hits;     /* How many hits/occurrences of this subtitle */
517     int forced_hits; /* How many forced hits in this subtitle */
518
519 #ifdef __LIBHB__
520     /* Internal data */
521     hb_fifo_t * fifo_in;  /* SPU ES */
522     hb_fifo_t * fifo_raw; /* Decoded SPU */
523     hb_fifo_t * fifo_sync;/* Synced */
524     hb_fifo_t * fifo_out; /* Correct Timestamps, ready to be muxed */
525     hb_mux_data_t * mux_data;
526 #endif
527 };
528
529 struct hb_metadata_s 
530 {
531     char  name[255];
532     char  artist[255];
533     char  composer[255];
534     char  release_date[255];
535     char  comment[1024];
536     char  album[255];
537     char  genre[255];
538     uint32_t coverart_size;
539     uint8_t *coverart;
540 };
541
542 struct hb_title_s
543 {
544     enum { HB_DVD_TYPE, HB_STREAM_TYPE } type;
545     char        path[1024];
546     char        name[1024];
547     int         index;
548     int         vts;
549     int         ttn;
550     int         cell_start;
551     int         cell_end;
552     int         block_start;
553     int         block_end;
554     int         block_count;
555     int         angle_count;
556
557     /* Visual-friendly duration */
558     int         hours;
559     int         minutes;
560     int         seconds;
561
562     /* Exact duration (in 1/90000s) */
563     uint64_t    duration;
564
565     double      aspect;             // aspect ratio for the title's video
566     double      container_aspect;   // aspect ratio from container (0 if none)
567     int         width;
568     int         height;
569     int         pixel_aspect_width;
570     int         pixel_aspect_height;
571     int         rate;
572     int         rate_base;
573     int         crop[4];
574     enum { HB_MPEG2_PS_DEMUXER = 0, HB_MPEG2_TS_DEMUXER, HB_NULL_DEMUXER } demuxer;
575     int         detected_interlacing;
576     int         video_id;               /* demuxer stream id for video */
577     int         video_codec;            /* worker object id of video codec */
578     int         video_codec_param;      /* codec specific config */
579     const char  *video_codec_name;
580     int         video_bitrate;
581     const char  *container_name;
582     int         data_rate;
583
584     hb_metadata_t *metadata;
585
586     hb_list_t * list_chapter;
587     hb_list_t * list_audio;
588     hb_list_t * list_subtitle;
589
590     /* Job template for this title */
591     hb_job_t  * job;
592
593     uint32_t    flags;
594                 // set if video stream doesn't have IDR frames
595 #define         HBTF_NO_IDR (1 << 0)
596 };
597
598
599 struct hb_state_s
600 {
601 #define HB_STATE_IDLE     1
602 #define HB_STATE_SCANNING 2
603 #define HB_STATE_SCANDONE 4
604 #define HB_STATE_WORKING  8
605 #define HB_STATE_PAUSED   16
606 #define HB_STATE_WORKDONE 32
607 #define HB_STATE_MUXING   64
608 #define HB_STATE_SEARCHING 128
609     int state;
610
611     union
612     {
613         struct
614         {
615             /* HB_STATE_SCANNING */
616             int title_cur;
617             int title_count;
618         } scanning;
619
620         struct
621         {
622             /* HB_STATE_WORKING */
623             float progress;
624             int   job_cur;
625             int   job_count;
626             float rate_cur;
627             float rate_avg;
628             int   hours;
629             int   minutes;
630             int   seconds;
631             int   sequence_id;
632         } working;
633
634         struct
635         {
636             /* HB_STATE_WORKDONE */
637 #define HB_ERROR_NONE     0
638 #define HB_ERROR_CANCELED 1
639 #define HB_ERROR_UNKNOWN  2
640             int error;
641         } workdone;
642
643         struct
644         {
645             /* HB_STATE_MUXING */
646             float progress;
647         } muxing;
648     } param;
649 };
650
651 typedef struct hb_work_info_s
652 {
653     const char *name;
654     int     profile;
655     int     level;
656     int     bitrate;
657     int     rate;
658     int     rate_base;
659     int     flags;
660     int     version;
661     int     mode;
662     union {
663         struct {    // info only valid for video decoders
664             int     width;
665             int     height;
666             int     pixel_aspect_width;
667             int     pixel_aspect_height;
668             double  aspect;
669         };
670         struct {    // info only valid for audio decoders
671             int     channel_layout;
672         };
673     };
674 } hb_work_info_t;
675
676 struct hb_work_object_s
677 {
678     int                 id;
679     char              * name;
680
681 #ifdef __LIBHB__
682     int              (* init)  ( hb_work_object_t *, hb_job_t * );
683     int              (* work)  ( hb_work_object_t *, hb_buffer_t **,
684                                  hb_buffer_t ** );
685     void             (* close) ( hb_work_object_t * );
686     /* the info entry point is used by scan to get bitstream information
687      * during a decode (i.e., it should only be called after at least one
688      * call to the 'work' entry point). currently it's only called for
689      * video streams & can be null for other work objects. */
690     int              (* info)  ( hb_work_object_t *, hb_work_info_t * );
691     /* the bitstream info entry point is used by scan to get bitstream
692      * information from a buffer. it doesn't have to be called during a
693      * decode (it can be called even if init & work haven't been).
694      * currently it's only called for audio streams & can be null for
695      * other work objects. */
696     int              (* bsinfo)  ( hb_work_object_t *, const hb_buffer_t *, 
697                                    hb_work_info_t * );
698
699     hb_fifo_t         * fifo_in;
700     hb_fifo_t         * fifo_out;
701     hb_esconfig_t     * config;
702
703     /* Pointer hb_audio_t so we have access to the info in the audio worker threads. */
704     hb_audio_t        * audio;
705
706     /* Pointer hb_subtitle_t so we have access to the info in the subtitle worker threads. */
707     hb_subtitle_t     * subtitle;
708
709     hb_work_private_t * private_data;
710
711     hb_thread_t       * thread;
712     volatile int      * done;
713     int                 status;
714     int                 codec_param;
715     hb_title_t        * title;
716
717     hb_work_object_t  * next;
718     int                 thread_sleep_interval;
719 #endif
720 };
721
722 extern hb_work_object_t hb_sync_video;
723 extern hb_work_object_t hb_sync_audio;
724 extern hb_work_object_t hb_decmpeg2;
725 extern hb_work_object_t hb_decvobsub;
726 extern hb_work_object_t hb_encvobsub;
727 extern hb_work_object_t hb_deccc608;
728 extern hb_work_object_t hb_decsrtsub;
729 extern hb_work_object_t hb_decutf8sub;
730 extern hb_work_object_t hb_dectx3gsub;
731 extern hb_work_object_t hb_render;
732 extern hb_work_object_t hb_encavcodec;
733 extern hb_work_object_t hb_encx264;
734 extern hb_work_object_t hb_enctheora;
735 extern hb_work_object_t hb_deca52;
736 extern hb_work_object_t hb_decdca;
737 extern hb_work_object_t hb_decavcodec;
738 extern hb_work_object_t hb_decavcodecv;
739 extern hb_work_object_t hb_decavcodecvi;
740 extern hb_work_object_t hb_decavcodecai;
741 extern hb_work_object_t hb_declpcm;
742 extern hb_work_object_t hb_encfaac;
743 extern hb_work_object_t hb_enclame;
744 extern hb_work_object_t hb_encvorbis;
745 extern hb_work_object_t hb_muxer;
746 extern hb_work_object_t hb_encca_aac;
747
748 #define FILTER_OK      0
749 #define FILTER_DELAY   1
750 #define FILTER_FAILED  2
751 #define FILTER_DROP    3
752
753 struct hb_filter_object_s
754 {
755     int                     id;
756     char                  * name;
757     char                  * settings;
758
759 #ifdef __LIBHB__
760     hb_filter_private_t* (* init)  ( int, int, int, char * );
761
762     int                  (* work)  ( const hb_buffer_t *, hb_buffer_t **,
763                                      int, int, int, hb_filter_private_t * );
764
765     void                 (* close) ( hb_filter_private_t * );
766
767     hb_filter_private_t   * private_data;
768     //hb_buffer_t           * buffer;
769 #endif
770 };
771
772 extern hb_filter_object_t hb_filter_detelecine;
773 extern hb_filter_object_t hb_filter_deinterlace;
774 extern hb_filter_object_t hb_filter_deblock;
775 extern hb_filter_object_t hb_filter_denoise;
776 extern hb_filter_object_t hb_filter_decomb;
777 extern hb_filter_object_t hb_filter_rotate;
778
779 typedef void hb_error_handler_t( const char *errmsg );
780
781 extern void hb_register_error_handler( hb_error_handler_t * handler );
782
783 char * hb_strdup_printf( char * fmt, ... );
784
785 int hb_yuv2rgb(int yuv);
786 int hb_rgb2yuv(int rgb);
787
788 #endif