Commit | Line | Data |
---|---|---|
fb025625 FB |
1 | #ifndef AVFORMAT_H |
2 | #define AVFORMAT_H | |
de6d9b64 | 3 | |
94988531 FB |
4 | #define LIBAVFORMAT_VERSION_INT 0x000406 |
5 | #define LIBAVFORMAT_VERSION "0.4.6" | |
2a10020b | 6 | #define LIBAVFORMAT_BUILD 4602 |
4b1f4f23 | 7 | |
de6d9b64 FB |
8 | #include "avcodec.h" |
9 | ||
de6d9b64 FB |
10 | #include "avio.h" |
11 | ||
12 | /* packet functions */ | |
13 | ||
fb025625 FB |
14 | #define AV_NOPTS_VALUE 0 |
15 | ||
de6d9b64 FB |
16 | typedef struct AVPacket { |
17 | INT64 pts; | |
18 | UINT8 *data; | |
19 | int size; | |
20 | int stream_index; | |
21 | int flags; | |
6d9872f4 | 22 | int duration; |
de6d9b64 | 23 | #define PKT_FLAG_KEY 0x0001 |
4606ac8d | 24 | #define PKT_FLAG_DROPPED_FRAME 0x0002 |
de6d9b64 FB |
25 | } AVPacket; |
26 | ||
27 | int av_new_packet(AVPacket *pkt, int size); | |
28 | void av_free_packet(AVPacket *pkt); | |
29 | ||
30 | /*************************************************/ | |
b9a281db | 31 | /* input/output formats */ |
de6d9b64 FB |
32 | |
33 | struct AVFormatContext; | |
b9a281db FB |
34 | |
35 | /* this structure contains the data a format has to probe a file */ | |
36 | typedef struct AVProbeData { | |
37 | char *filename; | |
38 | unsigned char *buf; | |
39 | int buf_size; | |
40 | } AVProbeData; | |
41 | ||
42 | #define AVPROBE_SCORE_MAX 100 | |
de6d9b64 FB |
43 | |
44 | typedef struct AVFormatParameters { | |
45 | int frame_rate; | |
46 | int sample_rate; | |
47 | int channels; | |
48 | int width; | |
49 | int height; | |
4606ac8d | 50 | enum PixelFormat pix_fmt; |
de6d9b64 FB |
51 | } AVFormatParameters; |
52 | ||
b9a281db FB |
53 | #define AVFMT_NOFILE 0x0001 /* no file should be opened */ |
54 | #define AVFMT_NEEDNUMBER 0x0002 /* needs '%d' in filename */ | |
55 | #define AVFMT_NOHEADER 0x0004 /* signal that no header is present | |
56 | (streams are added dynamically) */ | |
57 | #define AVFMT_SHOW_IDS 0x0008 /* show format stream IDs numbers */ | |
58 | #define AVFMT_RGB24 0x0010 /* force RGB24 output for ppm (hack | |
59 | - need better api) */ | |
fb025625 FB |
60 | #define AVFMT_RAWPICTURE 0x0020 /* format wants AVPicture structure for |
61 | raw picture data */ | |
b9a281db FB |
62 | |
63 | typedef struct AVOutputFormat { | |
de6d9b64 FB |
64 | const char *name; |
65 | const char *long_name; | |
66 | const char *mime_type; | |
67 | const char *extensions; /* comma separated extensions */ | |
b9a281db FB |
68 | /* size of private data so that it can be allocated in the wrapper */ |
69 | int priv_data_size; | |
de6d9b64 FB |
70 | /* output support */ |
71 | enum CodecID audio_codec; /* default audio codec */ | |
72 | enum CodecID video_codec; /* default video codec */ | |
73 | int (*write_header)(struct AVFormatContext *); | |
74 | int (*write_packet)(struct AVFormatContext *, | |
75 | int stream_index, | |
10bb7023 | 76 | unsigned char *buf, int size, int force_pts); |
de6d9b64 | 77 | int (*write_trailer)(struct AVFormatContext *); |
b9a281db FB |
78 | /* can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER */ |
79 | int flags; | |
80 | /* private fields */ | |
81 | struct AVOutputFormat *next; | |
82 | } AVOutputFormat; | |
de6d9b64 | 83 | |
b9a281db FB |
84 | typedef struct AVInputFormat { |
85 | const char *name; | |
86 | const char *long_name; | |
87 | /* size of private data so that it can be allocated in the wrapper */ | |
88 | int priv_data_size; | |
89 | /* tell if a given file has a chance of being parsing by this format */ | |
90 | int (*read_probe)(AVProbeData *); | |
91 | /* read the format header and initialize the AVFormatContext | |
de6d9b64 | 92 | structure. Return 0 if OK. 'ap' if non NULL contains |
b9a281db FB |
93 | additionnal paramters. Only used in raw format right |
94 | now. 'av_new_stream' should be called to create new streams. */ | |
de6d9b64 FB |
95 | int (*read_header)(struct AVFormatContext *, |
96 | AVFormatParameters *ap); | |
b9a281db FB |
97 | /* read one packet and put it in 'pkt'. pts and flags are also |
98 | set. 'av_new_stream' can be called only if the flag | |
99 | AVFMT_NOHEADER is used. */ | |
de6d9b64 FB |
100 | int (*read_packet)(struct AVFormatContext *, AVPacket *pkt); |
101 | /* close the stream. The AVFormatContext and AVStreams are not | |
102 | freed by this function */ | |
103 | int (*read_close)(struct AVFormatContext *); | |
104 | /* seek at or before a given pts (given in microsecond). The pts | |
105 | origin is defined by the stream */ | |
106 | int (*read_seek)(struct AVFormatContext *, INT64 pts); | |
b9a281db | 107 | /* can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_NOHEADER */ |
de6d9b64 | 108 | int flags; |
b9a281db FB |
109 | /* if extensions are defined, then no probe is done. You should |
110 | usually not use extension format guessing because it is not | |
111 | reliable enough */ | |
112 | const char *extensions; | |
113 | /* general purpose read only value that the format can use */ | |
114 | int value; | |
115 | /* private fields */ | |
116 | struct AVInputFormat *next; | |
117 | } AVInputFormat; | |
de6d9b64 FB |
118 | |
119 | typedef struct AVStream { | |
b9a281db FB |
120 | int index; /* stream index in AVFormatContext */ |
121 | int id; /* format specific stream id */ | |
de6d9b64 | 122 | AVCodecContext codec; /* codec context */ |
76c0441b | 123 | int r_frame_rate; /* real frame rate of the stream */ |
2a10020b ZK |
124 | uint64_t time_length; /* real length of the stream in miliseconds */ |
125 | void* extra_data; /* some extra data - i.e. longer WAVEFORMATEX */ | |
126 | int extra_data_size; /* size of extra data chunk */ | |
de6d9b64 | 127 | void *priv_data; |
b9a281db FB |
128 | /* internal data used in av_find_stream_info() */ |
129 | int codec_info_state; | |
130 | int codec_info_nb_repeat_frames; | |
131 | int codec_info_nb_real_frames; | |
de6d9b64 FB |
132 | } AVStream; |
133 | ||
134 | #define MAX_STREAMS 20 | |
135 | ||
136 | /* format I/O context */ | |
137 | typedef struct AVFormatContext { | |
b9a281db FB |
138 | /* can only be iformat or oformat, not both at the same time */ |
139 | struct AVInputFormat *iformat; | |
140 | struct AVOutputFormat *oformat; | |
de6d9b64 FB |
141 | void *priv_data; |
142 | ByteIOContext pb; | |
143 | int nb_streams; | |
144 | AVStream *streams[MAX_STREAMS]; | |
145 | char filename[1024]; /* input or output filename */ | |
146 | /* stream info */ | |
147 | char title[512]; | |
148 | char author[512]; | |
149 | char copyright[512]; | |
150 | char comment[512]; | |
92b3e125 | 151 | int flags; /* format specific flags */ |
de6d9b64 FB |
152 | /* This buffer is only needed when packets were already buffered but |
153 | not decoded, for example to get the codec parameters in mpeg | |
154 | streams */ | |
155 | struct AVPacketList *packet_buffer; | |
156 | } AVFormatContext; | |
157 | ||
158 | typedef struct AVPacketList { | |
159 | AVPacket pkt; | |
160 | struct AVPacketList *next; | |
161 | } AVPacketList; | |
162 | ||
b9a281db FB |
163 | extern AVInputFormat *first_iformat; |
164 | extern AVOutputFormat *first_oformat; | |
de6d9b64 | 165 | |
b9a281db FB |
166 | /* XXX: use automatic init with either ELF sections or C file parser */ |
167 | /* modules */ | |
de6d9b64 | 168 | |
b9a281db | 169 | /* mpeg.c */ |
92b3e125 | 170 | #define AVF_FLAG_VCD 0x00000001 /* VCD compatible MPEG-PS */ |
b9a281db FB |
171 | int mpegps_init(void); |
172 | ||
173 | /* mpegts.c */ | |
174 | extern AVInputFormat mpegts_demux; | |
175 | int mpegts_init(void); | |
de6d9b64 | 176 | |
b9a281db FB |
177 | /* rm.c */ |
178 | int rm_init(void); | |
179 | ||
180 | /* crc.c */ | |
181 | int crc_init(void); | |
182 | ||
183 | /* img.c */ | |
184 | int img_init(void); | |
185 | ||
186 | /* asf.c */ | |
187 | int asf_init(void); | |
de6d9b64 FB |
188 | |
189 | /* avienc.c */ | |
b9a281db | 190 | int avienc_init(void); |
de6d9b64 | 191 | |
b9a281db FB |
192 | /* avidec.c */ |
193 | int avidec_init(void); | |
6cea494e | 194 | |
b9a281db FB |
195 | /* swf.c */ |
196 | int swf_init(void); | |
197 | ||
198 | /* mov.c */ | |
199 | int mov_init(void); | |
de6d9b64 | 200 | |
b9a281db FB |
201 | /* jpeg.c */ |
202 | int jpeg_init(void); | |
de6d9b64 | 203 | |
6cea494e | 204 | /* gif.c */ |
b9a281db FB |
205 | int gif_init(void); |
206 | ||
6cea494e | 207 | /* au.c */ |
b9a281db | 208 | int au_init(void); |
6cea494e | 209 | |
de6d9b64 | 210 | /* wav.c */ |
b9a281db | 211 | int wav_init(void); |
de6d9b64 FB |
212 | |
213 | /* raw.c */ | |
b9a281db | 214 | int raw_init(void); |
de6d9b64 | 215 | |
81e0d0b4 MH |
216 | /* ogg.c */ |
217 | int ogg_init(void); | |
218 | ||
f20dca40 FB |
219 | /* dv.c */ |
220 | int dv_init(void); | |
221 | ||
de6d9b64 | 222 | /* ffm.c */ |
b9a281db | 223 | int ffm_init(void); |
de6d9b64 | 224 | |
fb025625 FB |
225 | /* rtsp.c */ |
226 | extern AVInputFormat redir_demux; | |
227 | int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f); | |
228 | ||
229 | #include "rtp.h" | |
230 | ||
231 | #include "rtsp.h" | |
232 | ||
b9a281db | 233 | /* utils.c */ |
de6d9b64 FB |
234 | #define MKTAG(a,b,c,d) (a | (b << 8) | (c << 16) | (d << 24)) |
235 | #define MKBETAG(a,b,c,d) (d | (c << 8) | (b << 16) | (a << 24)) | |
236 | ||
b9a281db FB |
237 | void av_register_input_format(AVInputFormat *format); |
238 | void av_register_output_format(AVOutputFormat *format); | |
36ada60c PG |
239 | AVOutputFormat *guess_stream_format(const char *short_name, |
240 | const char *filename, const char *mime_type); | |
b9a281db FB |
241 | AVOutputFormat *guess_format(const char *short_name, |
242 | const char *filename, const char *mime_type); | |
de6d9b64 | 243 | |
b9a281db | 244 | void av_hex_dump(UINT8 *buf, int size); |
de6d9b64 | 245 | |
94988531 | 246 | void av_register_all(void); |
de6d9b64 FB |
247 | |
248 | typedef struct FifoBuffer { | |
249 | UINT8 *buffer; | |
250 | UINT8 *rptr, *wptr, *end; | |
251 | } FifoBuffer; | |
252 | ||
253 | int fifo_init(FifoBuffer *f, int size); | |
254 | void fifo_free(FifoBuffer *f); | |
255 | int fifo_size(FifoBuffer *f, UINT8 *rptr); | |
256 | int fifo_read(FifoBuffer *f, UINT8 *buf, int buf_size, UINT8 **rptr_ptr); | |
257 | void fifo_write(FifoBuffer *f, UINT8 *buf, int size, UINT8 **wptr_ptr); | |
258 | ||
b9a281db FB |
259 | /* media file input */ |
260 | AVInputFormat *av_find_input_format(const char *short_name); | |
94988531 | 261 | AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened); |
b9a281db FB |
262 | int av_open_input_file(AVFormatContext **ic_ptr, const char *filename, |
263 | AVInputFormat *fmt, | |
264 | int buf_size, | |
265 | AVFormatParameters *ap); | |
266 | ||
267 | #define AVERROR_UNKNOWN (-1) /* unknown error */ | |
268 | #define AVERROR_IO (-2) /* i/o error */ | |
269 | #define AVERROR_NUMEXPECTED (-3) /* number syntax expected in filename */ | |
270 | #define AVERROR_INVALIDDATA (-4) /* invalid data found */ | |
271 | #define AVERROR_NOMEM (-5) /* not enough memory */ | |
272 | #define AVERROR_NOFMT (-6) /* unknown format */ | |
273 | ||
274 | int av_find_stream_info(AVFormatContext *ic); | |
de6d9b64 FB |
275 | int av_read_packet(AVFormatContext *s, AVPacket *pkt); |
276 | void av_close_input_file(AVFormatContext *s); | |
b9a281db | 277 | AVStream *av_new_stream(AVFormatContext *s, int id); |
de6d9b64 | 278 | |
b9a281db FB |
279 | /* media file output */ |
280 | int av_write_header(AVFormatContext *s); | |
10bb7023 | 281 | int av_write_packet(AVFormatContext *s, AVPacket *pkt, int force_pts); |
b9a281db | 282 | int av_write_trailer(AVFormatContext *s); |
de6d9b64 FB |
283 | |
284 | void dump_format(AVFormatContext *ic, | |
285 | int index, | |
286 | const char *url, | |
287 | int is_output); | |
288 | int parse_image_size(int *width_ptr, int *height_ptr, const char *str); | |
de6d9b64 FB |
289 | INT64 parse_date(const char *datestr, int duration); |
290 | ||
94988531 FB |
291 | INT64 av_gettime(void); |
292 | ||
de6d9b64 FB |
293 | /* ffm specific for ffserver */ |
294 | #define FFM_PACKET_SIZE 4096 | |
295 | offset_t ffm_read_write_index(int fd); | |
296 | void ffm_write_write_index(int fd, offset_t pos); | |
297 | void ffm_set_write_index(AVFormatContext *s, offset_t pos, offset_t file_size); | |
298 | ||
299 | int find_info_tag(char *arg, int arg_size, const char *tag1, const char *info); | |
300 | ||
813cae4b FB |
301 | int get_frame_filename(char *buf, int buf_size, |
302 | const char *path, int number); | |
b9a281db | 303 | int filename_number_test(const char *filename); |
96baaa6a | 304 | |
b9a281db FB |
305 | /* grab specific */ |
306 | int video_grab_init(void); | |
307 | int audio_init(void); | |
96baaa6a FB |
308 | |
309 | extern const char *v4l_device; | |
310 | extern const char *audio_device; | |
fb025625 FB |
311 | |
312 | #ifdef HAVE_AV_CONFIG_H | |
313 | int strstart(const char *str, const char *val, const char **ptr); | |
314 | int stristart(const char *str, const char *val, const char **ptr); | |
315 | void pstrcpy(char *buf, int buf_size, const char *str); | |
316 | char *pstrcat(char *buf, int buf_size, const char *s); | |
317 | int match_ext(const char *filename, const char *extensions); | |
318 | ||
319 | struct in_addr; | |
320 | int resolve_host(struct in_addr *sin_addr, const char *hostname); | |
321 | ||
322 | void url_split(char *proto, int proto_size, | |
323 | char *hostname, int hostname_size, | |
324 | int *port_ptr, | |
325 | char *path, int path_size, | |
326 | const char *url); | |
327 | ||
328 | #endif /* HAVE_AV_CONFIG_H */ | |
329 | ||
330 | #endif /* AVFORMAT_H */ |