OSDN Git Service

git-svn-id: svn://localhost/HandBrake/trunk@1471 b64f7644-9d1e-0410-96f1-a4d463321fa5
[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, ... );
11 void hb_error( char * fmt, ...);
12
13 int  hb_list_bytes( hb_list_t * );
14 void hb_list_seebytes( hb_list_t * l, uint8_t * dst, int size );
15 void hb_list_getbytes( hb_list_t * l, uint8_t * dst, int size,
16                        uint64_t * pts, uint64_t * pos );
17 void hb_list_empty( hb_list_t ** );
18
19 hb_title_t * hb_title_init( char * dvd, int index );
20 void         hb_title_close( hb_title_t ** );
21
22 void         hb_filter_close( hb_filter_object_t ** );
23
24 /***********************************************************************
25  * hb.c
26  **********************************************************************/
27 int  hb_get_pid( hb_handle_t * );
28 void hb_set_state( hb_handle_t *, hb_state_t * );
29
30 /***********************************************************************
31  * fifo.c
32  **********************************************************************/
33 struct hb_buffer_s
34 {
35     int           size;
36     int           alloc;
37     uint8_t *     data;
38     int           cur;
39
40     int64_t       sequence;
41
42     int           id;
43     int64_t       start;
44     int64_t       stop;
45     int           new_chap;
46
47 #define HB_FRAME_IDR    0x01
48 #define HB_FRAME_I      0x02
49 #define HB_FRAME_AUDIO  0x04
50 #define HB_FRAME_P      0x10
51 #define HB_FRAME_B      0x20
52 #define HB_FRAME_BREF   0x40
53 #define HB_FRAME_KEY    0x0F
54 #define HB_FRAME_REF    0xF0
55     uint8_t       frametype;
56     uint16_t       flags;
57
58     /* Holds the output PTS from x264, for use by b-frame offsets in muxmp4.c */
59     int64_t     renderOffset;
60
61     int           x;
62     int           y;
63     int           width;
64     int           height;
65
66     hb_buffer_t * sub;
67
68     hb_buffer_t * next;
69 };
70
71 void hb_buffer_pool_init( void );
72 void hb_buffer_pool_free( void );
73
74 hb_buffer_t * hb_buffer_init( int size );
75 void          hb_buffer_realloc( hb_buffer_t *, int size );
76 void          hb_buffer_close( hb_buffer_t ** );
77 void          hb_buffer_copy_settings( hb_buffer_t * dst,
78                                        const hb_buffer_t * src );
79
80 hb_fifo_t   * hb_fifo_init();
81 int           hb_fifo_size( hb_fifo_t * );
82 int           hb_fifo_is_full( hb_fifo_t * );
83 float         hb_fifo_percent_full( hb_fifo_t * f );
84 hb_buffer_t * hb_fifo_get( hb_fifo_t * );
85 hb_buffer_t * hb_fifo_see( hb_fifo_t * );
86 hb_buffer_t * hb_fifo_see2( hb_fifo_t * );
87 void          hb_fifo_push( hb_fifo_t *, hb_buffer_t * );
88 void          hb_fifo_close( hb_fifo_t ** );
89
90 /***********************************************************************
91  * Threads: update.c, scan.c, work.c, reader.c, muxcommon.c
92  **********************************************************************/
93 hb_thread_t * hb_update_init( int * build, char * version );
94 hb_thread_t * hb_scan_init( hb_handle_t *, const char * path,
95                             int title_index, hb_list_t * list_title );
96 hb_thread_t * hb_work_init( hb_list_t * jobs, int cpu_count,
97                             volatile int * die, int * error, hb_job_t ** job );
98 hb_thread_t  * hb_reader_init( hb_job_t * );
99 hb_thread_t  * hb_muxer_init( hb_job_t * );
100
101 /***********************************************************************
102  * libmpeg2 wrapper
103  ***********************************************************************
104  * It is exported here because it is used at several places
105  **********************************************************************/
106 typedef struct   hb_libmpeg2_s hb_libmpeg2_t;
107
108 hb_libmpeg2_t  * hb_libmpeg2_init();
109 int              hb_libmpeg2_decode( hb_libmpeg2_t *,
110                                       hb_buffer_t * es_buf,
111                                       hb_list_t * raw_list );
112 void             hb_libmpeg2_info( hb_libmpeg2_t * m, int * width,
113                                     int * height, int * rate, int * aspect_ratio );
114 void             hb_libmpeg2_close( hb_libmpeg2_t ** );
115 int              hb_libmpeg2_clear_aspect_ratio( hb_libmpeg2_t * );
116
117 /***********************************************************************
118  * mpegdemux.c
119  **********************************************************************/
120 typedef struct {
121     int64_t last_scr;       /* unadjusted SCR from most recent pack */
122     int64_t scr_offset;     /* discontinuity correction adjustment */
123     int     scr_changes;    /* number of SCR discontinuities */
124 } hb_psdemux_t;
125
126 int hb_demux_ps( hb_buffer_t * ps_buf, hb_list_t * es_list, hb_psdemux_t * );
127
128 /***********************************************************************
129  * dvd.c
130  **********************************************************************/
131 typedef struct hb_dvd_s hb_dvd_t;
132 typedef struct hb_stream_s hb_stream_t;
133
134 hb_dvd_t *   hb_dvd_init( char * path );
135 int          hb_dvd_title_count( hb_dvd_t * );
136 hb_title_t * hb_dvd_title_scan( hb_dvd_t *, int title );
137 int          hb_dvd_start( hb_dvd_t *, int title, int chapter );
138 void         hb_dvd_stop( hb_dvd_t * );
139 int          hb_dvd_seek( hb_dvd_t *, float );
140 int          hb_dvd_read( hb_dvd_t *, hb_buffer_t * );
141 int          hb_dvd_chapter( hb_dvd_t * );
142 int          hb_dvd_is_break( hb_dvd_t * d );
143 void         hb_dvd_close( hb_dvd_t ** );
144
145 hb_stream_t * hb_stream_open( char * path, int opentype );
146 void             hb_stream_close( hb_stream_t ** );
147 hb_title_t * hb_stream_title_scan( hb_stream_t *);
148 int          hb_stream_read( hb_stream_t *, hb_buffer_t *);
149 int          hb_stream_seek( hb_stream_t *, float );
150
151 /***********************************************************************
152  * Work objects
153  **********************************************************************/
154 #define HB_CONFIG_MAX_SIZE 8192
155 union hb_esconfig_u
156 {
157
158     struct
159     {
160         uint8_t bytes[HB_CONFIG_MAX_SIZE];
161         int     length;
162     } mpeg4;
163
164         struct
165         {
166             uint8_t  sps[HB_CONFIG_MAX_SIZE];
167             int       sps_length;
168             uint8_t  pps[HB_CONFIG_MAX_SIZE];
169             int       pps_length;
170         } h264;
171
172     struct
173     {
174         uint8_t headers[3][HB_CONFIG_MAX_SIZE];
175     } theora;
176
177     struct
178     {
179         uint8_t bytes[HB_CONFIG_MAX_SIZE];
180         int     length;
181     } aac;
182
183     struct
184     {
185         uint8_t headers[3][HB_CONFIG_MAX_SIZE];
186         char *language;
187     } vorbis;
188
189     struct
190     {
191         /* ac3flags stores the flags from the AC3 source, as found in scan.c */
192         int  ac3flags;
193     } a52;
194
195     struct
196     {
197         /* dcaflags stores the flags from the DCA source, as found in scan.c */
198         int  dcaflags;
199     } dca;
200
201 };
202
203 enum
204 {
205     WORK_SYNC = 1,
206     WORK_DECMPEG2,
207     WORK_DECSUB,
208     WORK_RENDER,
209     WORK_ENCAVCODEC,
210     WORK_ENCXVID,
211     WORK_ENCX264,
212     WORK_ENCTHEORA,
213     WORK_DECA52,
214     WORK_DECDCA,
215     WORK_DECAVCODEC,
216     WORK_DECLPCM,
217     WORK_ENCFAAC,
218     WORK_ENCLAME,
219     WORK_ENCVORBIS
220 };
221
222 enum
223 {
224     FILTER_DEINTERLACE = 1,
225     FILTER_DEBLOCK,
226     FILTER_DENOISE,
227     FILTER_DETELECINE,
228     FILTER_DECOMB
229 };
230
231 extern hb_work_object_t * hb_objects;
232
233 #define HB_WORK_IDLE     0
234 #define HB_WORK_OK       1
235 #define HB_WORK_ERROR    2
236 #define HB_WORK_DONE     3
237
238 /***********************************************************************
239  * Muxers
240  **********************************************************************/
241 typedef struct hb_mux_object_s hb_mux_object_t;
242 typedef struct hb_mux_data_s   hb_mux_data_t;
243
244 #define HB_MUX_COMMON \
245     int (*init)      ( hb_mux_object_t * ); \
246     int (*mux)       ( hb_mux_object_t *, hb_mux_data_t *, \
247                        hb_buffer_t * ); \
248     int (*end)       ( hb_mux_object_t * );
249
250 #define DECLARE_MUX( a ) \
251     hb_mux_object_t  * hb_mux_##a##_init( hb_job_t * );
252
253 DECLARE_MUX( mp4 );
254 DECLARE_MUX( avi );
255 DECLARE_MUX( ogm );
256 DECLARE_MUX( mkv );
257