1 /* $Id: common.h,v 1.51 2005/11/04 13:09:40 titer Exp $
3 This file is part of the HandBrake source code.
4 Homepage: <http://handbrake.m0k.org/>.
5 It may be used under the terms of the GNU General Public License. */
17 #include <sys/types.h>
22 #define MIN( a, b ) ( (a) > (b) ? (b) : (a) )
25 #define MAX( a, b ) ( (a) > (b) ? (a) : (b) )
28 #define EVEN( a ) ( (a) + ( (a) & 1 ) )
29 #define MULTIPLE_16( a ) ( 16 * ( ( (a) + 8 ) / 16 ) )
31 #define HB_DVD_READ_BUFFER_SIZE 2048
33 typedef struct hb_handle_s hb_handle_t
;
34 typedef struct hb_list_s hb_list_t
;
35 typedef struct hb_rate_s hb_rate_t
;
36 typedef struct hb_mixdown_s hb_mixdown_t
;
37 typedef struct hb_job_s hb_job_t
;
38 typedef struct hb_title_s hb_title_t
;
39 typedef struct hb_chapter_s hb_chapter_t
;
40 typedef struct hb_audio_s hb_audio_t
;
41 typedef struct hb_subtitle_s hb_subtitle_t
;
42 typedef struct hb_state_s hb_state_t
;
43 typedef union hb_esconfig_u hb_esconfig_t
;
44 typedef struct hb_work_private_s hb_work_private_t
;
45 typedef struct hb_work_object_s hb_work_object_t
;
46 typedef struct hb_filter_private_s hb_filter_private_t
;
47 typedef struct hb_filter_object_s hb_filter_object_t
;
48 typedef struct hb_buffer_s hb_buffer_t
;
49 typedef struct hb_fifo_s hb_fifo_t
;
50 typedef struct hb_lock_s hb_lock_t
;
57 hb_list_t
* hb_list_init();
58 int hb_list_count( hb_list_t
* );
59 void hb_list_add( hb_list_t
*, void * );
60 void hb_list_rem( hb_list_t
*, void * );
61 void * hb_list_item( hb_list_t
*, int );
62 void hb_list_close( hb_list_t
** );
64 void hb_reduce( int *x
, int *y
, int num
, int den
);
66 #define HB_KEEP_WIDTH 0
67 #define HB_KEEP_HEIGHT 1
68 void hb_fix_aspect( hb_job_t
* job
, int keep
);
70 int hb_calc_bitrate( hb_job_t
*, int size
);
80 char * human_readable_name
;
86 #define HB_ASPECT_BASE 9
87 #define HB_VIDEO_RATE_BASE 27000000
89 extern hb_rate_t hb_video_rates
[];
90 extern int hb_video_rates_count
;
91 extern hb_rate_t hb_audio_rates
[];
92 extern int hb_audio_rates_count
;
93 extern int hb_audio_rates_default
;
94 extern hb_rate_t hb_audio_bitrates
[];
95 extern int hb_audio_bitrates_count
;
96 extern int hb_audio_bitrates_default
;
97 extern hb_mixdown_t hb_audio_mixdowns
[];
98 extern int hb_audio_mixdowns_count
;
99 int hb_mixdown_get_mixdown_from_short_name( const char * short_name
);
100 const char * hb_mixdown_get_short_name_from_mixdown( int amixdown
);
102 /******************************************************************************
103 * hb_job_t: settings to be filled by the UI
104 *****************************************************************************/
107 /* Pointer to the title to be ripped */
110 /* Chapter selection */
114 /* Include chapter marker track in mp4? */
118 crop: must be multiples of 2 (top/bottom/left/right)
120 width: must be a multiple of 16
121 height: must be a multiple of 16
122 keep_ratio: used by UIs
123 pixel_ratio: store pixel aspect ratio in the video
124 pixel_aspect_width: numerator for pixel aspect ratio
125 pixel_aspect_height: denominator for pixel aspect ratio
126 maxWidth: keep width below this
127 maxHeight: keep height below this */
137 int pixel_aspect_width
;
138 int pixel_aspect_height
;
145 vquality: output quality (0.0..1.0)
146 if < 0.0 or > 1.0, bitrate is used instead
147 vbitrate: output bitrate (kbps)
149 vrate, vrate_base: output framerate is vrate / vrate_base
150 h264_level: boolean for whether or not we're encoding for iPod
151 crf: boolean for whether to use constant rate factor with x264
152 x264opts: string of extra x264 options
153 areBframes: boolean to note if b-frames are included in x264opts */
154 #define HB_VCODEC_MASK 0x0000FF
155 #define HB_VCODEC_FFMPEG 0x000001
156 #define HB_VCODEC_XVID 0x000002
157 #define HB_VCODEC_X264 0x000004
172 audios: Indexes in hb_title_t's audios list, starting from 0.
173 -1 indicates the end of the list
174 audio_mixdowns: The mixdown to be used for each audio track in audios[] */
176 /* define some masks, used to extract the various information from the HB_AMIXDOWN_XXXX values */
177 #define HB_AMIXDOWN_DCA_FORMAT_MASK 0x00FFF000
178 #define HB_AMIXDOWN_A52_FORMAT_MASK 0x00000FF0
179 #define HB_AMIXDOWN_DISCRETE_CHANNEL_COUNT_MASK 0x0000000F
181 /* define the HB_AMIXDOWN_XXXX values */
183 #define HB_AMIXDOWN_MONO 0x01000001
184 // DCA_FORMAT of DCA_MONO = 0 = 0x000
185 // A52_FORMAT of A52_MONO = 1 = 0x01
186 // discrete channel count of 1
188 #define HB_AMIXDOWN_STEREO 0x02002022
189 // DCA_FORMAT of DCA_STEREO = 2 = 0x002
190 // A52_FORMAT of A52_STEREO = 2 = 0x02
191 // discrete channel count of 2
193 #define HB_AMIXDOWN_DOLBY 0x042070A2
194 // DCA_FORMAT of DCA_3F1R | DCA_OUT_DPLI = 519 = 0x207
195 // A52_FORMAT of A52_DOLBY = 10 = 0x0A
196 // discrete channel count of 2
198 #define HB_AMIXDOWN_DOLBYPLII 0x084094A2
199 // DCA_FORMAT of DCA_3F2R | DCA_OUT_DPLII = 1033 = 0x409
200 // A52_FORMAT of A52_DOLBY | A52_USE_DPLII = 74 = 0x4A
201 // discrete channel count of 2
203 #define HB_AMIXDOWN_6CH 0x10089176
204 // DCA_FORMAT of DCA_3F2R | DCA_LFE = 137 = 0x089
205 // A52_FORMAT of A52_3F2R | A52_LFE = 23 = 0x17
206 // discrete channel count of 6
208 /* define some macros to extract the various information from the HB_AMIXDOWN_XXXX values */
209 #define HB_AMIXDOWN_GET_DCA_FORMAT( a ) ( ( a & HB_AMIXDOWN_DCA_FORMAT_MASK ) >> 12 )
210 #define HB_AMIXDOWN_GET_A52_FORMAT( a ) ( ( a & HB_AMIXDOWN_A52_FORMAT_MASK ) >> 4 )
211 #define HB_AMIXDOWN_GET_DISCRETE_CHANNEL_COUNT( a ) ( ( a & HB_AMIXDOWN_DISCRETE_CHANNEL_COUNT_MASK ) )
214 int audio_mixdowns
[8];
218 abitrate: output bitrate (kbps)
219 arate: output samplerate (Hz)
220 HB_ACODEC_AC3 means pass-through, then abitrate and arate are
222 #define HB_ACODEC_MASK 0x00FF00
223 #define HB_ACODEC_FAAC 0x000100
224 #define HB_ACODEC_LAME 0x000200
225 #define HB_ACODEC_VORBIS 0x000400
226 #define HB_ACODEC_AC3 0x000800
227 #define HB_ACODEC_MPGA 0x001000
228 #define HB_ACODEC_LPCM 0x002000
229 #define HB_ACODEC_DCA 0x004000
234 /* Subtitle settings:
235 subtitle: index in hb_title_t's subtitles list, starting
236 from 0. -1 means no subtitle */
238 int subtitleSmartAdjust
;
241 mux: output file format
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
254 /* Allow MP4 files > 4 gigs */
259 hb_subtitle_t
** select_subtitle
;
260 char * native_language
;
269 hb_fifo_t
* fifo_mpeg2
; /* MPEG-2 video ES */
270 hb_fifo_t
* fifo_raw
; /* Raw pictures */
271 hb_fifo_t
* fifo_sync
; /* Raw pictures, framerate corrected */
272 hb_fifo_t
* fifo_render
; /* Raw pictures, scaled */
273 hb_fifo_t
* fifo_mpeg4
; /* MPEG-4 video ES */
275 hb_thread_t
* reader
;
278 hb_list_t
* list_work
;
280 hb_esconfig_t config
;
282 hb_mux_data_t
* mux_data
;
290 char lang_simple
[1024];
296 /* ac3flags is only set when the source audio format is HB_ACODEC_AC3 */
299 /* dcaflags is only set when the source audio format is HB_ACODEC_DCA */
302 /* define some masks, used to extract the various information from the HB_AMIXDOWN_XXXX values */
303 #define HB_INPUT_CH_LAYOUT_DISCRETE_FRONT_MASK 0x00F0000
304 #define HB_INPUT_CH_LAYOUT_DISCRETE_REAR_MASK 0x000F000
305 #define HB_INPUT_CH_LAYOUT_DISCRETE_LFE_MASK 0x0000F00
306 #define HB_INPUT_CH_LAYOUT_DISCRETE_NO_LFE_MASK 0xFFFF0FF
307 #define HB_INPUT_CH_LAYOUT_ENCODED_FRONT_MASK 0x00000F0
308 #define HB_INPUT_CH_LAYOUT_ENCODED_REAR_MASK 0x000000F
310 /* define the input channel layouts used to describe the channel layout of this audio */
311 #define HB_INPUT_CH_LAYOUT_MONO 0x0110010
312 #define HB_INPUT_CH_LAYOUT_STEREO 0x0220020
313 #define HB_INPUT_CH_LAYOUT_DOLBY 0x0320031
314 #define HB_INPUT_CH_LAYOUT_3F 0x0430030
315 #define HB_INPUT_CH_LAYOUT_2F1R 0x0521021
316 #define HB_INPUT_CH_LAYOUT_3F1R 0x0631031
317 #define HB_INPUT_CH_LAYOUT_2F2R 0x0722022
318 #define HB_INPUT_CH_LAYOUT_3F2R 0x0832032
319 #define HB_INPUT_CH_LAYOUT_4F2R 0x0942042
320 #define HB_INPUT_CH_LAYOUT_HAS_LFE 0x0000100
322 /* define some macros to extract the various information from the HB_AMIXDOWN_XXXX values */
323 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_FRONT_COUNT( a ) ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_FRONT_MASK ) >> 16 )
324 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_REAR_COUNT( a ) ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_REAR_MASK ) >> 12 )
325 #define HB_INPUT_CH_LAYOUT_GET_DISCRETE_LFE_COUNT( a ) ( ( a & HB_INPUT_CH_LAYOUT_DISCRETE_LFE_MASK ) >> 8 )
326 #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 ) )
327 #define HB_INPUT_CH_LAYOUT_GET_ENCODED_FRONT_COUNT( a ) ( ( a & HB_INPUT_CH_LAYOUT_ENCODED_FRONT_MASK ) >> 4 )
328 #define HB_INPUT_CH_LAYOUT_GET_ENCODED_REAR_COUNT( a ) ( ( a & HB_INPUT_CH_LAYOUT_ENCODED_REAR_MASK ) )
330 /* input_channel_layout is the channel layout of this audio */
331 /* this is used to provide a common way of describing the source audio */
332 int input_channel_layout
;
336 hb_fifo_t
* fifo_in
; /* AC3/MPEG/LPCM ES */
337 hb_fifo_t
* fifo_raw
; /* Raw audio */
338 hb_fifo_t
* fifo_sync
; /* Resampled, synced raw audio */
339 hb_fifo_t
* fifo_out
; /* MP3/AAC/Vorbis ES */
341 hb_esconfig_t config
;
342 hb_mux_data_t
* mux_data
;
344 /* amixdown is the mixdown format to be used for this audio track */
347 /* Source PID is only valid for MPEG Transport Streams */
361 /* Visual-friendly duration */
366 /* Exact duration (in 1/90000s) */
369 /* Optional chapter title */
379 int hits
; /* How many hits/occurrences of this subtitle */
383 hb_fifo_t
* fifo_in
; /* SPU ES */
384 hb_fifo_t
* fifo_raw
; /* Decodec SPU */
401 /* Visual-friendly duration */
406 /* Exact duration (in 1/90000s) */
416 uint32_t palette
[16];
418 hb_list_t
* list_chapter
;
419 hb_list_t
* list_audio
;
420 hb_list_t
* list_subtitle
;
422 /* Job template for this title */
429 #define HB_STATE_IDLE 1
430 #define HB_STATE_SCANNING 2
431 #define HB_STATE_SCANDONE 4
432 #define HB_STATE_WORKING 8
433 #define HB_STATE_PAUSED 16
434 #define HB_STATE_WORKDONE 32
435 #define HB_STATE_MUXING 64
442 /* HB_STATE_SCANNING */
449 /* HB_STATE_WORKING */
462 /* HB_STATE_WORKDONE */
463 #define HB_ERROR_NONE 0
464 #define HB_ERROR_CANCELED 1
465 #define HB_ERROR_UNKNOWN 2
471 /* HB_STATE_MUXING */
477 struct hb_work_object_s
483 int (* init
) ( hb_work_object_t
*, hb_job_t
* );
484 int (* work
) ( hb_work_object_t
*, hb_buffer_t
**,
486 void (* close
) ( hb_work_object_t
* );
489 hb_fifo_t
* fifo_out
;
490 hb_esconfig_t
* config
;
492 /* amixdown is the mixdown format to be used if the work object is an audio track */
494 /* source_acodec is the source audio codec if the work object is an audio track */
497 hb_work_private_t
* private_data
;
499 hb_thread_t
* thread
;
502 hb_work_object_t
* next
;
503 int thread_sleep_interval
;
507 extern hb_work_object_t hb_sync
;
508 extern hb_work_object_t hb_decmpeg2
;
509 extern hb_work_object_t hb_decsub
;
510 extern hb_work_object_t hb_render
;
511 extern hb_work_object_t hb_encavcodec
;
512 extern hb_work_object_t hb_encxvid
;
513 extern hb_work_object_t hb_encx264
;
514 extern hb_work_object_t hb_deca52
;
515 extern hb_work_object_t hb_decdca
;
516 extern hb_work_object_t hb_decavcodec
;
517 extern hb_work_object_t hb_declpcm
;
518 extern hb_work_object_t hb_encfaac
;
519 extern hb_work_object_t hb_enclame
;
520 extern hb_work_object_t hb_encvorbis
;
523 #define FILTER_DELAY 1
524 #define FILTER_FAILED 2
525 #define FILTER_DROP 3
527 struct hb_filter_object_s
534 hb_filter_private_t
* (* init
) ( int, int, int, char * );
536 int (* work
) ( const hb_buffer_t
*, hb_buffer_t
**,
537 int, int, int, hb_filter_private_t
* );
539 void (* close
) ( hb_filter_private_t
* );
541 hb_filter_private_t
* private_data
;
542 //hb_buffer_t * buffer;
546 extern hb_filter_object_t hb_filter_detelecine
;
547 extern hb_filter_object_t hb_filter_deinterlace
;
548 extern hb_filter_object_t hb_filter_deblock
;
549 extern hb_filter_object_t hb_filter_denoise
;