Moves the filters' logging info to work.c, adds parameter info. I also changed the...
[HandBrake.git] / libhb / common.h
blobde56a5c63079d20a5165e420fc434b48a73a1d67
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. */
7 #ifndef HB_COMMON_H
8 #define HB_COMMON_H
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>
21 #ifndef MIN
22 #define MIN( a, b ) ( (a) > (b) ? (b) : (a) )
23 #endif
24 #ifndef MAX
25 #define MAX( a, b ) ( (a) > (b) ? (a) : (b) )
26 #endif
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;
52 #include "ports.h"
53 #ifdef __LIBHB__
54 #include "internal.h"
55 #endif
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 );
72 struct hb_rate_s
74 char * string;
75 int rate;
78 struct hb_mixdown_s
80 char * human_readable_name;
81 char * internal_name;
82 char * short_name;
83 int amixdown;
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 *****************************************************************************/
105 struct hb_job_s
107 /* Pointer to the title to be ripped */
108 hb_title_t * title;
110 /* Chapter selection */
111 int chapter_start;
112 int chapter_end;
114 /* Include chapter marker track in mp4? */
115 int chapter_markers;
117 /* Picture settings:
118 crop: must be multiples of 2 (top/bottom/left/right)
119 deinterlace: 0 or 1
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 */
129 int crop[4];
130 int deinterlace;
131 hb_list_t * filters;
132 int width;
133 int height;
134 int keep_ratio;
135 int grayscale;
136 int pixel_ratio;
137 int pixel_aspect_width;
138 int pixel_aspect_height;
139 int maxWidth;
140 int maxHeight;
143 /* Video settings:
144 vcodec: output codec
145 vquality: output quality (0.0..1.0)
146 if < 0.0 or > 1.0, bitrate is used instead
147 vbitrate: output bitrate (kbps)
148 pass: 0, 1 or 2
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
159 int vcodec;
160 float vquality;
161 int vbitrate;
162 int vrate;
163 int vrate_base;
164 int pass;
165 int h264_13;
166 int h264_level;
167 int crf;
168 char *x264opts;
169 int areBframes;
171 /* Audio tracks:
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 ) )
213 int audios[8];
214 int audio_mixdowns[8];
216 /* Audio settings:
217 acodec: output codec
218 abitrate: output bitrate (kbps)
219 arate: output samplerate (Hz)
220 HB_ACODEC_AC3 means pass-through, then abitrate and arate are
221 ignored */
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
230 int acodec;
231 int abitrate;
232 int arate;
234 /* Subtitle settings:
235 subtitle: index in hb_title_t's subtitles list, starting
236 from 0. -1 means no subtitle */
237 int subtitle;
238 int subtitleSmartAdjust;
240 /* Muxer settings
241 mux: output file format
242 file: file path */
243 #define HB_MUX_MASK 0xFF0000
244 #define HB_MUX_MP4 0x010000
245 #define HB_MUX_PSP 0x020000
246 #define HB_MUX_AVI 0x040000
247 #define HB_MUX_OGM 0x080000
248 #define HB_MUX_IPOD 0x100000
249 #define HB_MUX_MKV 0x200000
251 int mux;
252 const char * file;
254 /* Allow MP4 files > 4 gigs */
255 int largeFileSize;
258 int subtitle_scan;
259 hb_subtitle_t ** select_subtitle;
260 char * native_language;
262 #ifdef __LIBHB__
263 /* Internal data */
264 hb_handle_t * h;
265 hb_lock_t * pause;
266 volatile int * die;
267 volatile int done;
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;
276 hb_thread_t * muxer;
278 hb_list_t * list_work;
280 hb_esconfig_t config;
282 hb_mux_data_t * mux_data;
283 #endif
286 struct hb_audio_s
288 int id;
289 char lang[1024];
290 char lang_simple[1024];
291 char iso639_2[4];
292 int codec;
293 int rate;
294 int bitrate;
296 /* ac3flags is only set when the source audio format is HB_ACODEC_AC3 */
297 int ac3flags;
299 /* dcaflags is only set when the source audio format is HB_ACODEC_DCA */
300 int dcaflags;
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;
334 #ifdef __LIBHB__
335 /* Internal data */
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 */
345 int amixdown;
347 /* Source PID is only valid for MPEG Transport Streams */
348 int source_pid;
349 #endif
352 struct hb_chapter_s
354 int index;
355 int cell_start;
356 int cell_end;
357 int block_start;
358 int block_end;
359 int block_count;
361 /* Visual-friendly duration */
362 int hours;
363 int minutes;
364 int seconds;
366 /* Exact duration (in 1/90000s) */
367 uint64_t duration;
369 /* Optional chapter title */
370 char title[1024];
373 struct hb_subtitle_s
375 int id;
376 char lang[1024];
377 char iso639_2[4];
379 int hits; /* How many hits/occurrences of this subtitle */
381 #ifdef __LIBHB__
382 /* Internal data */
383 hb_fifo_t * fifo_in; /* SPU ES */
384 hb_fifo_t * fifo_raw; /* Decodec SPU */
385 #endif
388 struct hb_title_s
390 char dvd[1024];
391 char name[1024];
392 int index;
393 int vts;
394 int ttn;
395 int cell_start;
396 int cell_end;
397 int block_start;
398 int block_end;
399 int block_count;
401 /* Visual-friendly duration */
402 int hours;
403 int minutes;
404 int seconds;
406 /* Exact duration (in 1/90000s) */
407 uint64_t duration;
409 int width;
410 int height;
411 int aspect;
412 int rate;
413 int rate_base;
414 int crop[4];
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 */
423 hb_job_t * job;
427 struct hb_state_s
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
436 int state;
438 union
440 struct
442 /* HB_STATE_SCANNING */
443 int title_cur;
444 int title_count;
445 } scanning;
447 struct
449 /* HB_STATE_WORKING */
450 float progress;
451 int job_cur;
452 int job_count;
453 float rate_cur;
454 float rate_avg;
455 int hours;
456 int minutes;
457 int seconds;
458 } working;
460 struct
462 /* HB_STATE_WORKDONE */
463 #define HB_ERROR_NONE 0
464 #define HB_ERROR_CANCELED 1
465 #define HB_ERROR_UNKNOWN 2
466 int error;
467 } workdone;
469 struct
471 /* HB_STATE_MUXING */
472 float progress;
473 } muxing;
474 } param;
477 struct hb_work_object_s
479 int id;
480 char * name;
482 #ifdef __LIBHB__
483 int (* init) ( hb_work_object_t *, hb_job_t * );
484 int (* work) ( hb_work_object_t *, hb_buffer_t **,
485 hb_buffer_t ** );
486 void (* close) ( hb_work_object_t * );
488 hb_fifo_t * fifo_in;
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 */
493 int amixdown;
494 /* source_acodec is the source audio codec if the work object is an audio track */
495 int source_acodec;
497 hb_work_private_t * private_data;
499 hb_thread_t * thread;
500 volatile int * done;
502 hb_work_object_t * next;
503 int thread_sleep_interval;
504 #endif
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;
522 #define FILTER_OK 0
523 #define FILTER_DELAY 1
524 #define FILTER_FAILED 2
525 #define FILTER_DROP 3
527 struct hb_filter_object_s
529 int id;
530 char * name;
531 char * settings;
533 #ifdef __LIBHB__
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;
543 #endif
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;
551 #endif