OSDN Git Service

Revert "fix to compile without subwcrev.exe"
[handbrake-jp/handbrake-jp-git.git] / libhb / internal.h
1 /* $Id: internal.h,v 1.41 2005/11/25 15:05:25 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 /***********************************************************************
8  * common.c
9  **********************************************************************/
10 void hb_log( char * log, ... ) HB_WPRINTF(1,2);
11 extern int global_verbosity_level; // Global variable for hb_deep_log
12 typedef enum hb_debug_level_s
13 {
14     HB_SUPPORT_LOG      = 1, // helpful in tech support
15     HB_HOUSEKEEPING_LOG = 2, // stuff we hate scrolling through  
16     HB_GRANULAR_LOG     = 3  // sample-by-sample
17 } hb_debug_level_t;
18 void hb_deep_log( hb_debug_level_t level, char * log, ... ) HB_WPRINTF(2,3);
19 void hb_error( char * fmt, ...) HB_WPRINTF(1,2);
20
21 int  hb_list_bytes( hb_list_t * );
22 void hb_list_seebytes( hb_list_t * l, uint8_t * dst, int size );
23 void hb_list_getbytes( hb_list_t * l, uint8_t * dst, int size,
24                        uint64_t * pts, uint64_t * pos );
25 void hb_list_empty( hb_list_t ** );
26
27 hb_title_t * hb_title_init( char * dvd, int index );
28 void         hb_title_close( hb_title_t ** );
29
30 void         hb_filter_close( hb_filter_object_t ** );
31
32 /***********************************************************************
33  * hb.c
34  **********************************************************************/
35 int  hb_get_pid( hb_handle_t * );
36 void hb_set_state( hb_handle_t *, hb_state_t * );
37
38 /***********************************************************************
39  * fifo.c
40  **********************************************************************/
41 /*
42  * Holds a packet of data that is moving through the transcoding process.
43  * 
44  * May have metadata associated with it via extra fields
45  * that are conditionally used depending on the type of packet.
46  */
47 struct hb_buffer_s
48 {
49     int           size;     // size of this packet
50     int           alloc;    // used internally by the packet allocator (hb_buffer_init)
51     uint8_t *     data;     // packet data
52     int           cur;      // used internally by packet lists (hb_list_t)
53
54     /*
55      * Corresponds to the order that this packet was read from the demuxer.
56      * 
57      * It is important that video decoder work-objects pass this value through
58      * from their input packets to the output packets they generate. Otherwise
59      * RENDERSUB subtitles (especially VOB subtitles) will break.
60      * 
61      * Subtitle decoder work-objects that output a renderable subtitle
62      * format (ex: PICTURESUB) must also be careful to pass the sequence number
63      * through for the same reason.
64      */
65     int64_t       sequence;
66
67     enum { AUDIO_BUF, VIDEO_BUF, SUBTITLE_BUF, OTHER_BUF } type;
68
69     int           id;           // ID of the track that the packet comes from
70     int64_t       start;        // Video and subtitle packets: start time of frame/subtitle
71     int64_t       stop;         // Video and subtitle packets: stop time of frame/subtitle
72     int           new_chap;     // Video packets: if non-zero, is the index of the chapter whose boundary was crossed
73
74 #define HB_FRAME_IDR    0x01
75 #define HB_FRAME_I      0x02
76 #define HB_FRAME_AUDIO  0x04
77 #define HB_FRAME_P      0x10
78 #define HB_FRAME_B      0x20
79 #define HB_FRAME_BREF   0x40
80 #define HB_FRAME_KEY    0x0F
81 #define HB_FRAME_REF    0xF0
82     uint8_t       frametype;
83     uint16_t       flags;
84
85     /* Holds the output PTS from x264, for use by b-frame offsets in muxmp4.c */
86     int64_t     renderOffset;
87
88     // PICTURESUB subtitle packets:
89     //   Location and size of the subpicture.
90     int           x;
91     int           y;
92     int           width;
93     int           height;
94     hb_buffer_t * next_subpicture;
95
96     // Video packets (after processing by the hb_sync_video work-object):
97     //   A (copy of a) PICTURESUB subtitle packet that needs to be burned into this video packet by the hb_render work-object.
98     //   Subtitles that are simply passed thru are NOT attached to the associated video packets.
99     hb_buffer_t * sub;
100
101     // Packets in a list:
102     //   the next packet in the list
103     hb_buffer_t * next;
104 };
105
106 void hb_buffer_pool_init( void );
107 void hb_buffer_pool_free( void );
108
109 hb_buffer_t * hb_buffer_init( int size );
110 void          hb_buffer_realloc( hb_buffer_t *, int size );
111 void          hb_buffer_close( hb_buffer_t ** );
112 void          hb_buffer_copy_settings( hb_buffer_t * dst,
113                                        const hb_buffer_t * src );
114
115 hb_fifo_t   * hb_fifo_init( int capacity, int thresh );
116 int           hb_fifo_size( hb_fifo_t * );
117 int           hb_fifo_size_bytes( hb_fifo_t * );
118 int           hb_fifo_is_full( hb_fifo_t * );
119 float         hb_fifo_percent_full( hb_fifo_t * f );
120 hb_buffer_t * hb_fifo_get( hb_fifo_t * );
121 hb_buffer_t * hb_fifo_get_wait( hb_fifo_t * );
122 hb_buffer_t * hb_fifo_see( hb_fifo_t * );
123 hb_buffer_t * hb_fifo_see_wait( hb_fifo_t * );
124 hb_buffer_t * hb_fifo_see2( hb_fifo_t * );
125 void          hb_fifo_push( hb_fifo_t *, hb_buffer_t * );
126 void          hb_fifo_push_wait( hb_fifo_t *, hb_buffer_t * );
127 int           hb_fifo_full_wait( hb_fifo_t * f );
128 void          hb_fifo_push_head( hb_fifo_t *, hb_buffer_t * );
129 void          hb_fifo_close( hb_fifo_t ** );
130 void          hb_fifo_flush( hb_fifo_t * f );
131
132 // this routine gets a buffer for an uncompressed YUV420 video frame
133 // with dimensions width x height.
134 static inline hb_buffer_t * hb_video_buffer_init( int width, int height )
135 {
136     // Y requires w x h bytes. U & V each require (w+1)/2 x
137     // (h+1)/2 bytes (the "+1" is to round up). We shift rather
138     // than divide by 2 since the compiler can't know these ints
139     // are positive so it generates very expensive integer divides
140     // if we do "/2". The code here matches the calculation for
141     // PIX_FMT_YUV420P in ffmpeg's avpicture_fill() which is required
142     // for most of HB's filters to work right.
143     return hb_buffer_init( width * height + ( ( width+1 ) >> 1 ) *
144                            ( ( height+1 ) >> 1 ) * 2 );
145 }
146
147 // this routine 'moves' data from src to dst by interchanging 'data',
148 // 'size' & 'alloc' between them and copying the rest of the fields
149 // from src to dst.
150 static inline void hb_buffer_swap_copy( hb_buffer_t *src, hb_buffer_t *dst )
151 {
152     uint8_t *data  = dst->data;
153     int      size  = dst->size;
154     int      alloc = dst->alloc;
155
156     *dst = *src;
157
158     src->data  = data;
159     src->size  = size;
160     src->alloc = alloc;
161 }
162
163 /***********************************************************************
164  * Threads: update.c, scan.c, work.c, reader.c, muxcommon.c
165  **********************************************************************/
166 hb_thread_t * hb_update_init( int * build, char * version );
167 hb_thread_t * hb_scan_init( hb_handle_t *, volatile int * die, 
168                             const char * path, int title_index, 
169                             hb_list_t * list_title, int preview_count, 
170                             int store_previews, uint64_t min_duration );
171 hb_thread_t * hb_work_init( hb_list_t * jobs, int cpu_count,
172                             volatile int * die, int * error, hb_job_t ** job );
173 hb_thread_t  * hb_reader_init( hb_job_t * );
174 hb_work_object_t * hb_muxer_init( hb_job_t * );
175 hb_work_object_t * hb_get_work( int );
176 hb_work_object_t * hb_codec_decoder( int );
177 hb_work_object_t * hb_codec_encoder( int );
178
179 /***********************************************************************
180  * sync.c
181  **********************************************************************/
182 hb_work_object_t * hb_sync_init( hb_job_t * job );
183
184 /***********************************************************************
185  * mpegdemux.c
186  **********************************************************************/
187 typedef struct {
188     int64_t last_scr;       /* unadjusted SCR from most recent pack */
189     int64_t last_pts;       /* last pts we saw */
190     int     scr_changes;    /* number of SCR discontinuities */
191     int     dts_drops;      /* number of drops because DTS too far from SCR */
192 } hb_psdemux_t;
193
194 typedef int (*hb_muxer_t)(hb_buffer_t *, hb_list_t *, hb_psdemux_t*);
195
196 int hb_demux_ps( hb_buffer_t * ps_buf, hb_list_t * es_list, hb_psdemux_t * );
197 int hb_demux_ss( hb_buffer_t * ps_buf, hb_list_t * es_list, hb_psdemux_t * );
198 int hb_demux_null( hb_buffer_t * ps_buf, hb_list_t * es_list, hb_psdemux_t * );
199
200 extern const hb_muxer_t hb_demux[];
201
202 /***********************************************************************
203  * decmetadata.c
204  **********************************************************************/
205 extern void decmetadata( hb_title_t *title );
206
207 /***********************************************************************
208  * batch.c
209  **********************************************************************/
210 typedef struct hb_batch_s hb_batch_t;
211
212 hb_batch_t  * hb_batch_init( char * path );
213 void          hb_batch_close( hb_batch_t ** _d );
214 int           hb_batch_title_count( hb_batch_t * d );
215 hb_title_t  * hb_batch_title_scan( hb_batch_t * d, int t );
216
217 /***********************************************************************
218  * dvd.c
219  **********************************************************************/
220 typedef struct hb_bd_s hb_bd_t;
221 typedef union  hb_dvd_s hb_dvd_t;
222 typedef struct hb_stream_s hb_stream_t;
223
224 hb_dvd_t *   hb_dvd_init( char * path );
225 int          hb_dvd_title_count( hb_dvd_t * );
226 hb_title_t * hb_dvd_title_scan( hb_dvd_t *, int title, uint64_t min_duration );
227 int          hb_dvd_start( hb_dvd_t *, hb_title_t *title, int chapter );
228 void         hb_dvd_stop( hb_dvd_t * );
229 int          hb_dvd_seek( hb_dvd_t *, float );
230 int          hb_dvd_read( hb_dvd_t *, hb_buffer_t * );
231 int          hb_dvd_chapter( hb_dvd_t * );
232 int          hb_dvd_is_break( hb_dvd_t * d );
233 void         hb_dvd_close( hb_dvd_t ** );
234 int          hb_dvd_angle_count( hb_dvd_t * d );
235 void         hb_dvd_set_angle( hb_dvd_t * d, int angle );
236 int          hb_dvd_main_feature( hb_dvd_t * d, hb_list_t * list_title );
237
238 hb_bd_t     * hb_bd_init( char * path );
239 int           hb_bd_title_count( hb_bd_t * d );
240 hb_title_t  * hb_bd_title_scan( hb_bd_t * d, int t, uint64_t min_duration );
241 int           hb_bd_start( hb_bd_t * d, hb_title_t *title );
242 void          hb_bd_stop( hb_bd_t * d );
243 int           hb_bd_seek( hb_bd_t * d, float f );
244 int           hb_bd_seek_pts( hb_bd_t * d, uint64_t pts );
245 int           hb_bd_seek_chapter( hb_bd_t * d, int chapter );
246 int           hb_bd_read( hb_bd_t * d, hb_buffer_t * b );
247 int           hb_bd_chapter( hb_bd_t * d );
248 void          hb_bd_close( hb_bd_t ** _d );
249 void          hb_bd_set_angle( hb_bd_t * d, int angle );
250 int           hb_bd_main_feature( hb_bd_t * d, hb_list_t * list_title );
251
252 hb_stream_t * hb_bd_stream_open( hb_title_t *title );
253 hb_stream_t * hb_stream_open( char * path, hb_title_t *title );
254 void             hb_stream_close( hb_stream_t ** );
255 hb_title_t * hb_stream_title_scan( hb_stream_t *);
256 int          hb_stream_read( hb_stream_t *, hb_buffer_t *);
257 int          hb_stream_seek( hb_stream_t *, float );
258 int          hb_stream_seek_ts( hb_stream_t * stream, int64_t ts );
259 int          hb_stream_seek_chapter( hb_stream_t *, int );
260 int          hb_stream_chapter( hb_stream_t * );
261
262 int          hb_ts_decode_pkt( hb_stream_t *stream, const uint8_t * pkt, hb_buffer_t *obuf );
263
264
265 void       * hb_ffmpeg_context( int codec_param );
266 void       * hb_ffmpeg_avstream( int codec_param );
267
268 #define STR4_TO_UINT32(p) \
269     ((((const uint8_t*)(p))[0] << 24) | \
270      (((const uint8_t*)(p))[1] << 16) | \
271      (((const uint8_t*)(p))[2] <<  8) | \
272       ((const uint8_t*)(p))[3])
273
274 /***********************************************************************
275  * Work objects
276  **********************************************************************/
277 #define HB_CONFIG_MAX_SIZE 8192
278 union hb_esconfig_u
279 {
280
281     struct
282     {
283         uint8_t bytes[HB_CONFIG_MAX_SIZE];
284         int     length;
285     } mpeg4;
286
287         struct
288         {
289             uint8_t  sps[HB_CONFIG_MAX_SIZE];
290             int       sps_length;
291             uint8_t  pps[HB_CONFIG_MAX_SIZE];
292             int       pps_length;
293         uint32_t init_delay;
294         } h264;
295
296     struct
297     {
298         uint8_t headers[3][HB_CONFIG_MAX_SIZE];
299     } theora;
300
301     struct
302     {
303         uint8_t bytes[HB_CONFIG_MAX_SIZE];
304         int     length;
305     } aac;
306
307     struct
308     {
309         uint8_t headers[3][HB_CONFIG_MAX_SIZE];
310         char *language;
311     } vorbis;
312
313     struct
314     {
315         /* ac3flags stores the flags from the AC3 source, as found in scan.c */
316         int     ac3flags;
317         // next two items are used by the bsinfo routine to accumulate small
318         // frames until we have enough to validate the crc.
319         int     len;        // space currently used in 'buf'
320         uint8_t buf[HB_CONFIG_MAX_SIZE-sizeof(int)];
321     } a52;
322
323     struct
324     {
325         /* dcaflags stores the flags from the DCA source, as found in scan.c */
326         int  dcaflags;
327     } dca;
328
329 };
330
331 enum
332 {
333     WORK_SYNC_VIDEO = 1,
334     WORK_SYNC_AUDIO,
335     WORK_DECMPEG2,
336     WORK_DECCC608,
337     WORK_DECVOBSUB,
338     WORK_DECSRTSUB,
339     WORK_DECUTF8SUB,
340     WORK_DECTX3GSUB,
341     WORK_DECSSASUB,
342     WORK_ENCVOBSUB,
343     WORK_RENDER,
344     WORK_ENCAVCODEC,
345     WORK_ENCX264,
346     WORK_ENCTHEORA,
347     WORK_DECA52,
348     WORK_DECDCA,
349     WORK_DECAVCODEC,
350     WORK_DECAVCODECV,
351     WORK_DECAVCODECVI,
352     WORK_DECAVCODECAI,
353     WORK_DECLPCM,
354     WORK_ENCFAAC,
355     WORK_ENCLAME,
356     WORK_ENCVORBIS,
357     WORK_ENC_CA_AAC,
358     WORK_ENCAC3,
359     WORK_MUX
360 };
361
362 enum
363 {
364     FILTER_DEINTERLACE = 1,
365     FILTER_DEBLOCK,
366     FILTER_DENOISE,
367     FILTER_DETELECINE,
368     FILTER_DECOMB,
369     FILTER_ROTATE
370 };
371
372 // Picture flags used by filters
373 #ifndef PIC_FLAG_REPEAT_FIRST_FIELD
374 #define PIC_FLAG_REPEAT_FIRST_FIELD 256
375 #endif
376 #ifndef PIC_FLAG_TOP_FIELD_FIRST
377 #define PIC_FLAG_TOP_FIELD_FIRST 8
378 #endif
379 #ifndef PIC_FLAG_PROGRESSIVE_FRAME
380 #define PIC_FLAG_PROGRESSIVE_FRAME 16
381 #endif
382
383 extern hb_work_object_t * hb_objects;
384
385 #define HB_WORK_IDLE     0
386 #define HB_WORK_OK       1
387 #define HB_WORK_ERROR    2
388 #define HB_WORK_DONE     3
389
390 /***********************************************************************
391  * Muxers
392  **********************************************************************/
393 typedef struct hb_mux_object_s hb_mux_object_t;
394 typedef struct hb_mux_data_s   hb_mux_data_t;
395
396 #define HB_MUX_COMMON \
397     int (*init)      ( hb_mux_object_t * ); \
398     int (*mux)       ( hb_mux_object_t *, hb_mux_data_t *, \
399                        hb_buffer_t * ); \
400     int (*end)       ( hb_mux_object_t * );
401
402 #define DECLARE_MUX( a ) \
403     hb_mux_object_t  * hb_mux_##a##_init( hb_job_t * );
404
405 DECLARE_MUX( mp4 );
406 DECLARE_MUX( avi );
407 DECLARE_MUX( ogm );
408 DECLARE_MUX( mkv );
409