Commit | Line | Data |
---|---|---|
fb025625 FB |
1 | #ifndef AVFORMAT_H |
2 | #define AVFORMAT_H | |
de6d9b64 | 3 | |
02d697aa ZK |
4 | #ifdef __cplusplus |
5 | extern "C" { | |
6 | #endif | |
7 | ||
30bc6613 MN |
8 | #define LIBAVFORMAT_VERSION_INT ((49<<16)+(1<<8)+0) |
9 | #define LIBAVFORMAT_VERSION 49.1.0 | |
5aa083ee | 10 | #define LIBAVFORMAT_BUILD LIBAVFORMAT_VERSION_INT |
8026c3b5 | 11 | |
5aa083ee | 12 | #define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION) |
4b1f4f23 | 13 | |
f71869a4 | 14 | #include <time.h> |
67070e4f | 15 | #include <stdio.h> /* FILE */ |
de6d9b64 FB |
16 | #include "avcodec.h" |
17 | ||
de6d9b64 FB |
18 | #include "avio.h" |
19 | ||
20 | /* packet functions */ | |
21 | ||
ee404803 FB |
22 | #ifndef MAXINT64 |
23 | #define MAXINT64 int64_t_C(0x7fffffffffffffff) | |
24 | #endif | |
25 | ||
26 | #ifndef MININT64 | |
27 | #define MININT64 int64_t_C(0x8000000000000000) | |
28 | #endif | |
29 | ||
de6d9b64 | 30 | typedef struct AVPacket { |
2692067a MN |
31 | int64_t pts; ///< presentation time stamp in time_base units |
32 | int64_t dts; ///< decompression time stamp in time_base units | |
0c1a9eda | 33 | uint8_t *data; |
6fa5a56c FB |
34 | int size; |
35 | int stream_index; | |
36 | int flags; | |
2692067a | 37 | int duration; ///< presentation duration in time_base units (0 if not available) |
6fa5a56c FB |
38 | void (*destruct)(struct AVPacket *); |
39 | void *priv; | |
2692067a | 40 | int64_t pos; ///< byte position in stream, -1 if unknown |
de6d9b64 | 41 | } AVPacket; |
6fa5a56c FB |
42 | #define PKT_FLAG_KEY 0x0001 |
43 | ||
63dd1377 | 44 | void av_destruct_packet_nofree(AVPacket *pkt); |
90ad92b3 | 45 | void av_destruct_packet(AVPacket *pkt); |
63dd1377 | 46 | |
da24c5e3 | 47 | /* initialize optional fields of a packet */ |
6fa5a56c FB |
48 | static inline void av_init_packet(AVPacket *pkt) |
49 | { | |
50 | pkt->pts = AV_NOPTS_VALUE; | |
fb2758c8 | 51 | pkt->dts = AV_NOPTS_VALUE; |
2692067a | 52 | pkt->pos = -1; |
fb2758c8 | 53 | pkt->duration = 0; |
6fa5a56c FB |
54 | pkt->flags = 0; |
55 | pkt->stream_index = 0; | |
63dd1377 | 56 | pkt->destruct= av_destruct_packet_nofree; |
6fa5a56c | 57 | } |
de6d9b64 FB |
58 | |
59 | int av_new_packet(AVPacket *pkt, int size); | |
2692067a | 60 | int av_get_packet(ByteIOContext *s, AVPacket *pkt, int size); |
fb2758c8 | 61 | int av_dup_packet(AVPacket *pkt); |
6fa5a56c FB |
62 | |
63 | /** | |
64 | * Free a packet | |
65 | * | |
66 | * @param pkt packet to free | |
67 | */ | |
68 | static inline void av_free_packet(AVPacket *pkt) | |
69 | { | |
342474ab MN |
70 | if (pkt && pkt->destruct) { |
71 | pkt->destruct(pkt); | |
72 | } | |
6fa5a56c | 73 | } |
de6d9b64 FB |
74 | |
75 | /*************************************************/ | |
916c80e9 FB |
76 | /* fractional numbers for exact pts handling */ |
77 | ||
78 | /* the exact value of the fractional number is: 'val + num / den'. num | |
79 | is assumed to be such as 0 <= num < den */ | |
80 | typedef struct AVFrac { | |
0c1a9eda | 81 | int64_t val, num, den; |
916c80e9 FB |
82 | } AVFrac; |
83 | ||
0c1a9eda ZK |
84 | void av_frac_init(AVFrac *f, int64_t val, int64_t num, int64_t den); |
85 | void av_frac_add(AVFrac *f, int64_t incr); | |
86 | void av_frac_set(AVFrac *f, int64_t val); | |
916c80e9 FB |
87 | |
88 | /*************************************************/ | |
b9a281db | 89 | /* input/output formats */ |
de6d9b64 FB |
90 | |
91 | struct AVFormatContext; | |
b9a281db FB |
92 | |
93 | /* this structure contains the data a format has to probe a file */ | |
94 | typedef struct AVProbeData { | |
5c91a675 | 95 | const char *filename; |
b9a281db FB |
96 | unsigned char *buf; |
97 | int buf_size; | |
98 | } AVProbeData; | |
99 | ||
100 | #define AVPROBE_SCORE_MAX 100 | |
de6d9b64 FB |
101 | |
102 | typedef struct AVFormatParameters { | |
c0df9d75 | 103 | AVRational time_base; |
de6d9b64 FB |
104 | int sample_rate; |
105 | int channels; | |
106 | int width; | |
107 | int height; | |
4606ac8d | 108 | enum PixelFormat pix_fmt; |
290c5fa6 | 109 | struct AVImageFormat *image_format; |
7f172339 | 110 | int channel; /* used to select dv channel */ |
6beefa40 | 111 | const char *device; /* video, audio or DV device */ |
e3ee3283 | 112 | const char *standard; /* tv standard, NTSC, PAL, SECAM */ |
da24c5e3 FB |
113 | int mpeg2ts_raw:1; /* force raw MPEG2 transport stream output, if possible */ |
114 | int mpeg2ts_compute_pcr:1; /* compute exact PCR for each transport | |
115 | stream packet (only meaningful if | |
116 | mpeg2ts_raw is TRUE */ | |
fb2758c8 FB |
117 | int initial_pause:1; /* do not begin to play the stream |
118 | immediately (RTSP only) */ | |
5b6d5596 MN |
119 | enum CodecID video_codec_id; |
120 | enum CodecID audio_codec_id; | |
de6d9b64 FB |
121 | } AVFormatParameters; |
122 | ||
b9a281db FB |
123 | #define AVFMT_NOFILE 0x0001 /* no file should be opened */ |
124 | #define AVFMT_NEEDNUMBER 0x0002 /* needs '%d' in filename */ | |
b9a281db | 125 | #define AVFMT_SHOW_IDS 0x0008 /* show format stream IDs numbers */ |
fb025625 FB |
126 | #define AVFMT_RAWPICTURE 0x0020 /* format wants AVPicture structure for |
127 | raw picture data */ | |
c64d476c | 128 | #define AVFMT_GLOBALHEADER 0x0040 /* format wants global header */ |
b9a281db FB |
129 | |
130 | typedef struct AVOutputFormat { | |
de6d9b64 FB |
131 | const char *name; |
132 | const char *long_name; | |
133 | const char *mime_type; | |
134 | const char *extensions; /* comma separated extensions */ | |
b9a281db FB |
135 | /* size of private data so that it can be allocated in the wrapper */ |
136 | int priv_data_size; | |
de6d9b64 FB |
137 | /* output support */ |
138 | enum CodecID audio_codec; /* default audio codec */ | |
139 | enum CodecID video_codec; /* default video codec */ | |
140 | int (*write_header)(struct AVFormatContext *); | |
e928649b | 141 | int (*write_packet)(struct AVFormatContext *, AVPacket *pkt); |
de6d9b64 | 142 | int (*write_trailer)(struct AVFormatContext *); |
c64d476c | 143 | /* can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_GLOBALHEADER */ |
b9a281db | 144 | int flags; |
290c5fa6 FB |
145 | /* currently only used to set pixel format if not YUV420P */ |
146 | int (*set_parameters)(struct AVFormatContext *, AVFormatParameters *); | |
fe2d6fe2 | 147 | int (*interleave_packet)(struct AVFormatContext *, AVPacket *out, AVPacket *in, int flush); |
b9a281db FB |
148 | /* private fields */ |
149 | struct AVOutputFormat *next; | |
150 | } AVOutputFormat; | |
de6d9b64 | 151 | |
b9a281db FB |
152 | typedef struct AVInputFormat { |
153 | const char *name; | |
154 | const char *long_name; | |
155 | /* size of private data so that it can be allocated in the wrapper */ | |
156 | int priv_data_size; | |
157 | /* tell if a given file has a chance of being parsing by this format */ | |
158 | int (*read_probe)(AVProbeData *); | |
159 | /* read the format header and initialize the AVFormatContext | |
de6d9b64 | 160 | structure. Return 0 if OK. 'ap' if non NULL contains |
b9a281db FB |
161 | additionnal paramters. Only used in raw format right |
162 | now. 'av_new_stream' should be called to create new streams. */ | |
de6d9b64 FB |
163 | int (*read_header)(struct AVFormatContext *, |
164 | AVFormatParameters *ap); | |
b9a281db FB |
165 | /* read one packet and put it in 'pkt'. pts and flags are also |
166 | set. 'av_new_stream' can be called only if the flag | |
da24c5e3 | 167 | AVFMTCTX_NOHEADER is used. */ |
de6d9b64 FB |
168 | int (*read_packet)(struct AVFormatContext *, AVPacket *pkt); |
169 | /* close the stream. The AVFormatContext and AVStreams are not | |
170 | freed by this function */ | |
171 | int (*read_close)(struct AVFormatContext *); | |
3ba1438d MN |
172 | /** |
173 | * seek to a given timestamp relative to the frames in | |
174 | * stream component stream_index | |
175 | * @param stream_index must not be -1 | |
176 | * @param flags selects which direction should be preferred if no exact | |
177 | * match is available | |
178 | */ | |
fb2758c8 | 179 | int (*read_seek)(struct AVFormatContext *, |
3ba1438d | 180 | int stream_index, int64_t timestamp, int flags); |
8d14a25c MN |
181 | /** |
182 | * gets the next timestamp in AV_TIME_BASE units. | |
183 | */ | |
184 | int64_t (*read_timestamp)(struct AVFormatContext *s, int stream_index, | |
185 | int64_t *pos, int64_t pos_limit); | |
da24c5e3 | 186 | /* can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER */ |
de6d9b64 | 187 | int flags; |
b9a281db FB |
188 | /* if extensions are defined, then no probe is done. You should |
189 | usually not use extension format guessing because it is not | |
190 | reliable enough */ | |
191 | const char *extensions; | |
192 | /* general purpose read only value that the format can use */ | |
193 | int value; | |
fb2758c8 FB |
194 | |
195 | /* start/resume playing - only meaningful if using a network based format | |
196 | (RTSP) */ | |
197 | int (*read_play)(struct AVFormatContext *); | |
198 | ||
199 | /* pause playing - only meaningful if using a network based format | |
200 | (RTSP) */ | |
201 | int (*read_pause)(struct AVFormatContext *); | |
202 | ||
b9a281db FB |
203 | /* private fields */ |
204 | struct AVInputFormat *next; | |
205 | } AVInputFormat; | |
de6d9b64 | 206 | |
fb2758c8 FB |
207 | typedef struct AVIndexEntry { |
208 | int64_t pos; | |
209 | int64_t timestamp; | |
210 | #define AVINDEX_KEYFRAME 0x0001 | |
b754978a | 211 | /* the following 2 flags indicate that the next/prev keyframe is known, and scaning for it isnt needed */ |
fb2758c8 | 212 | int flags; |
3e9245a9 | 213 | int min_distance; /* min distance between this and the previous keyframe, used to avoid unneeded searching */ |
fb2758c8 FB |
214 | } AVIndexEntry; |
215 | ||
de6d9b64 | 216 | typedef struct AVStream { |
b9a281db FB |
217 | int index; /* stream index in AVFormatContext */ |
218 | int id; /* format specific stream id */ | |
01f4895c | 219 | AVCodecContext *codec; /* codec context */ |
b4b87d48 MN |
220 | /** |
221 | * real base frame rate of the stream. | |
222 | * for example if the timebase is 1/90000 and all frames have either | |
223 | * approximately 3600 or 1800 timer ticks then r_frame_rate will be 50/1 | |
224 | */ | |
225 | AVRational r_frame_rate; | |
de6d9b64 | 226 | void *priv_data; |
b9a281db | 227 | /* internal data used in av_find_stream_info() */ |
fb2758c8 FB |
228 | int64_t codec_info_duration; |
229 | int codec_info_nb_frames; | |
da24c5e3 | 230 | /* encoding: PTS generation when outputing stream */ |
1e51d801 | 231 | AVFrac pts; |
5b28c8c3 MN |
232 | |
233 | /** | |
234 | * this is the fundamental unit of time (in seconds) in terms | |
235 | * of which frame timestamps are represented. for fixed-fps content, | |
236 | * timebase should be 1/framerate and timestamp increments should be | |
237 | * identically 1. | |
238 | */ | |
9ee91c2f MN |
239 | AVRational time_base; |
240 | int pts_wrap_bits; /* number of bits in pts (used for wrapping control) */ | |
a48b7a6b FB |
241 | /* ffmpeg.c private use */ |
242 | int stream_copy; /* if TRUE, just copy stream */ | |
f3356e9c | 243 | enum AVDiscard discard; ///< selects which packets can be discarded at will and dont need to be demuxed |
b4aea108 | 244 | //FIXME move stuff to a flags field? |
1e491e29 MN |
245 | /* quality, as it has been removed from AVCodecContext and put in AVVideoFrame |
246 | * MN:dunno if thats the right place, for it */ | |
247 | float quality; | |
ee404803 FB |
248 | /* decoding: position of the first frame of the component, in |
249 | AV_TIME_BASE fractional seconds. */ | |
250 | int64_t start_time; | |
251 | /* decoding: duration of the stream, in AV_TIME_BASE fractional | |
252 | seconds. */ | |
253 | int64_t duration; | |
fb2758c8 | 254 | |
09730260 FB |
255 | char language[4]; /* ISO 639 3-letter language code (empty string if undefined) */ |
256 | ||
fb2758c8 | 257 | /* av_read_frame() support */ |
7cbaa7ba | 258 | int need_parsing; ///< 1->full parsing needed, 2->only parse headers dont repack |
fb2758c8 | 259 | struct AVCodecParserContext *parser; |
6ec87caa | 260 | |
fb2758c8 FB |
261 | int64_t cur_dts; |
262 | int last_IP_duration; | |
77405fc8 | 263 | int64_t last_IP_pts; |
fb2758c8 FB |
264 | /* av_seek_frame() support */ |
265 | AVIndexEntry *index_entries; /* only used if the format does not | |
266 | support seeking natively */ | |
267 | int nb_index_entries; | |
268 | int index_entries_allocated_size; | |
b4b87d48 MN |
269 | |
270 | int64_t nb_frames; ///< number of frames in this stream if known or 0 | |
de6d9b64 FB |
271 | } AVStream; |
272 | ||
da24c5e3 FB |
273 | #define AVFMTCTX_NOHEADER 0x0001 /* signal that no header is present |
274 | (streams are added dynamically) */ | |
275 | ||
de6d9b64 FB |
276 | #define MAX_STREAMS 20 |
277 | ||
278 | /* format I/O context */ | |
279 | typedef struct AVFormatContext { | |
7fea94ce | 280 | const AVClass *av_class; /* set by av_alloc_format_context */ |
b9a281db FB |
281 | /* can only be iformat or oformat, not both at the same time */ |
282 | struct AVInputFormat *iformat; | |
283 | struct AVOutputFormat *oformat; | |
de6d9b64 FB |
284 | void *priv_data; |
285 | ByteIOContext pb; | |
286 | int nb_streams; | |
287 | AVStream *streams[MAX_STREAMS]; | |
288 | char filename[1024]; /* input or output filename */ | |
289 | /* stream info */ | |
4568325a | 290 | int64_t timestamp; |
de6d9b64 FB |
291 | char title[512]; |
292 | char author[512]; | |
293 | char copyright[512]; | |
294 | char comment[512]; | |
6a58e151 FB |
295 | char album[512]; |
296 | int year; /* ID3 year, 0 if none */ | |
297 | int track; /* track number, 0 if none */ | |
298 | char genre[32]; /* ID3 genre */ | |
299 | ||
da24c5e3 | 300 | int ctx_flags; /* format specific flags, see AVFMTCTX_xx */ |
916c80e9 | 301 | /* private data for pts handling (do not modify directly) */ |
de6d9b64 FB |
302 | /* This buffer is only needed when packets were already buffered but |
303 | not decoded, for example to get the codec parameters in mpeg | |
304 | streams */ | |
ee404803 FB |
305 | struct AVPacketList *packet_buffer; |
306 | ||
307 | /* decoding: position of the first frame of the component, in | |
308 | AV_TIME_BASE fractional seconds. NEVER set this value directly: | |
309 | it is deduced from the AVStream values. */ | |
310 | int64_t start_time; | |
311 | /* decoding: duration of the stream, in AV_TIME_BASE fractional | |
312 | seconds. NEVER set this value directly: it is deduced from the | |
313 | AVStream values. */ | |
314 | int64_t duration; | |
315 | /* decoding: total file size. 0 if unknown */ | |
316 | int64_t file_size; | |
317 | /* decoding: total stream bitrate in bit/s, 0 if not | |
318 | available. Never set it directly if the file_size and the | |
319 | duration are known as ffmpeg can compute it automatically. */ | |
320 | int bit_rate; | |
fb2758c8 FB |
321 | |
322 | /* av_read_frame() support */ | |
323 | AVStream *cur_st; | |
324 | const uint8_t *cur_ptr; | |
325 | int cur_len; | |
326 | AVPacket cur_pkt; | |
327 | ||
fb2758c8 FB |
328 | /* av_seek_frame() support */ |
329 | int64_t data_offset; /* offset of the first packet */ | |
330 | int index_built; | |
2db3c638 MN |
331 | |
332 | int mux_rate; | |
333 | int packet_size; | |
17c88cb0 MN |
334 | int preload; |
335 | int max_delay; | |
8108551a TK |
336 | |
337 | #define AVFMT_NOOUTPUTLOOP -1 | |
338 | #define AVFMT_INFINITEOUTPUTLOOP 0 | |
339 | /* number of times to loop output in formats that support it */ | |
340 | int loop_output; | |
341 | ||
30bc6613 MN |
342 | int flags; |
343 | #define AVFMT_FLAG_GENPTS 0x0001 ///< generate pts if missing even if it requires parsing future frames | |
de6d9b64 FB |
344 | } AVFormatContext; |
345 | ||
346 | typedef struct AVPacketList { | |
347 | AVPacket pkt; | |
348 | struct AVPacketList *next; | |
349 | } AVPacketList; | |
350 | ||
b9a281db FB |
351 | extern AVInputFormat *first_iformat; |
352 | extern AVOutputFormat *first_oformat; | |
de6d9b64 | 353 | |
290c5fa6 FB |
354 | /* still image support */ |
355 | struct AVInputImageContext; | |
356 | typedef struct AVInputImageContext AVInputImageContext; | |
357 | ||
358 | typedef struct AVImageInfo { | |
359 | enum PixelFormat pix_fmt; /* requested pixel format */ | |
360 | int width; /* requested width */ | |
361 | int height; /* requested height */ | |
7e2e1abf | 362 | int interleaved; /* image is interleaved (e.g. interleaved GIF) */ |
290c5fa6 FB |
363 | AVPicture pict; /* returned allocated image */ |
364 | } AVImageInfo; | |
365 | ||
3b1a27e0 | 366 | /* AVImageFormat.flags field constants */ |
7e2e1abf | 367 | #define AVIMAGE_INTERLEAVED 0x0001 /* image format support interleaved output */ |
3b1a27e0 | 368 | |
290c5fa6 FB |
369 | typedef struct AVImageFormat { |
370 | const char *name; | |
371 | const char *extensions; | |
372 | /* tell if a given file has a chance of being parsing by this format */ | |
373 | int (*img_probe)(AVProbeData *); | |
374 | /* read a whole image. 'alloc_cb' is called when the image size is | |
375 | known so that the caller can allocate the image. If 'allo_cb' | |
376 | returns non zero, then the parsing is aborted. Return '0' if | |
377 | OK. */ | |
378 | int (*img_read)(ByteIOContext *, | |
379 | int (*alloc_cb)(void *, AVImageInfo *info), void *); | |
380 | /* write the image */ | |
381 | int supported_pixel_formats; /* mask of supported formats for output */ | |
382 | int (*img_write)(ByteIOContext *, AVImageInfo *); | |
3b1a27e0 | 383 | int flags; |
290c5fa6 FB |
384 | struct AVImageFormat *next; |
385 | } AVImageFormat; | |
386 | ||
387 | void av_register_image_format(AVImageFormat *img_fmt); | |
388 | AVImageFormat *av_probe_image_format(AVProbeData *pd); | |
389 | AVImageFormat *guess_image_format(const char *filename); | |
5b6d5596 | 390 | enum CodecID av_guess_image2_codec(const char *filename); |
290c5fa6 FB |
391 | int av_read_image(ByteIOContext *pb, const char *filename, |
392 | AVImageFormat *fmt, | |
393 | int (*alloc_cb)(void *, AVImageInfo *info), void *opaque); | |
394 | int av_write_image(ByteIOContext *pb, AVImageFormat *fmt, AVImageInfo *img); | |
395 | ||
396 | extern AVImageFormat *first_image_format; | |
397 | ||
398 | extern AVImageFormat pnm_image_format; | |
399 | extern AVImageFormat pbm_image_format; | |
400 | extern AVImageFormat pgm_image_format; | |
401 | extern AVImageFormat ppm_image_format; | |
8975ba81 | 402 | extern AVImageFormat pam_image_format; |
290c5fa6 FB |
403 | extern AVImageFormat pgmyuv_image_format; |
404 | extern AVImageFormat yuv_image_format; | |
3a13f6bd | 405 | #ifdef CONFIG_ZLIB |
0e04e4e9 | 406 | extern AVImageFormat png_image_format; |
3a13f6bd | 407 | #endif |
0250738f | 408 | extern AVImageFormat jpeg_image_format; |
cdc90af0 | 409 | extern AVImageFormat gif_image_format; |
6a91ec51 | 410 | extern AVImageFormat sgi_image_format; |
290c5fa6 | 411 | |
b9a281db FB |
412 | /* XXX: use automatic init with either ELF sections or C file parser */ |
413 | /* modules */ | |
de6d9b64 | 414 | |
b9a281db | 415 | /* mpeg.c */ |
ee404803 | 416 | extern AVInputFormat mpegps_demux; |
b9a281db FB |
417 | int mpegps_init(void); |
418 | ||
419 | /* mpegts.c */ | |
420 | extern AVInputFormat mpegts_demux; | |
421 | int mpegts_init(void); | |
de6d9b64 | 422 | |
b9a281db FB |
423 | /* rm.c */ |
424 | int rm_init(void); | |
425 | ||
426 | /* crc.c */ | |
427 | int crc_init(void); | |
428 | ||
429 | /* img.c */ | |
430 | int img_init(void); | |
431 | ||
03cfe134 MN |
432 | /* img2.c */ |
433 | int img2_init(void); | |
434 | ||
b9a281db FB |
435 | /* asf.c */ |
436 | int asf_init(void); | |
de6d9b64 FB |
437 | |
438 | /* avienc.c */ | |
b9a281db | 439 | int avienc_init(void); |
de6d9b64 | 440 | |
b9a281db FB |
441 | /* avidec.c */ |
442 | int avidec_init(void); | |
6cea494e | 443 | |
b9a281db FB |
444 | /* swf.c */ |
445 | int swf_init(void); | |
446 | ||
447 | /* mov.c */ | |
448 | int mov_init(void); | |
de6d9b64 | 449 | |
1cb5f7fd MN |
450 | /* movenc.c */ |
451 | int movenc_init(void); | |
452 | ||
d4f5d74a GM |
453 | /* flvenc.c */ |
454 | int flvenc_init(void); | |
455 | ||
456 | /* flvdec.c */ | |
457 | int flvdec_init(void); | |
458 | ||
b9a281db FB |
459 | /* jpeg.c */ |
460 | int jpeg_init(void); | |
de6d9b64 | 461 | |
6cea494e | 462 | /* gif.c */ |
b9a281db FB |
463 | int gif_init(void); |
464 | ||
6cea494e | 465 | /* au.c */ |
b9a281db | 466 | int au_init(void); |
6cea494e | 467 | |
bc634f6f ZK |
468 | /* amr.c */ |
469 | int amr_init(void); | |
470 | ||
de6d9b64 | 471 | /* wav.c */ |
c3775e54 | 472 | int ff_wav_init(void); |
de6d9b64 | 473 | |
93a23627 VM |
474 | /* mmf.c */ |
475 | int ff_mmf_init(void); | |
476 | ||
de6d9b64 | 477 | /* raw.c */ |
fb2758c8 | 478 | int pcm_read_seek(AVFormatContext *s, |
7b3c1382 | 479 | int stream_index, int64_t timestamp, int flags); |
b9a281db | 480 | int raw_init(void); |
de6d9b64 | 481 | |
6a58e151 FB |
482 | /* mp3.c */ |
483 | int mp3_init(void); | |
484 | ||
2864dfd5 RFI |
485 | /* yuv4mpeg.c */ |
486 | int yuv4mpeg_init(void); | |
487 | ||
9146ca37 | 488 | /* ogg2.c */ |
81e0d0b4 MH |
489 | int ogg_init(void); |
490 | ||
9146ca37 MR |
491 | /* ogg.c */ |
492 | int libogg_init(void); | |
493 | ||
f20dca40 | 494 | /* dv.c */ |
c3775e54 | 495 | int ff_dv_init(void); |
f20dca40 | 496 | |
de6d9b64 | 497 | /* ffm.c */ |
b9a281db | 498 | int ffm_init(void); |
de6d9b64 | 499 | |
fb025625 FB |
500 | /* rtsp.c */ |
501 | extern AVInputFormat redir_demux; | |
502 | int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f); | |
503 | ||
3c96b4ef MM |
504 | /* 4xm.c */ |
505 | int fourxm_init(void); | |
506 | ||
3f16d933 MM |
507 | /* psxstr.c */ |
508 | int str_init(void); | |
509 | ||
3ef8be2b MM |
510 | /* idroq.c */ |
511 | int roq_init(void); | |
512 | ||
513 | /* ipmovie.c */ | |
514 | int ipmovie_init(void); | |
515 | ||
3aa180b8 AB |
516 | /* nut.c */ |
517 | int nut_init(void); | |
518 | ||
493645eb MM |
519 | /* wc3movie.c */ |
520 | int wc3_init(void); | |
521 | ||
2fdf638b MM |
522 | /* westwood.c */ |
523 | int westwood_init(void); | |
524 | ||
525 | /* segafilm.c */ | |
526 | int film_init(void); | |
527 | ||
4120a53a MM |
528 | /* idcin.c */ |
529 | int idcin_init(void); | |
530 | ||
42cad81a MM |
531 | /* flic.c */ |
532 | int flic_init(void); | |
533 | ||
a7eb3c8d MM |
534 | /* sierravmd.c */ |
535 | int vmd_init(void); | |
536 | ||
08abe0fd MN |
537 | /* matroska.c */ |
538 | int matroska_init(void); | |
539 | ||
d08d7142 MM |
540 | /* sol.c */ |
541 | int sol_init(void); | |
542 | ||
ad81a9fe MM |
543 | /* electronicarts.c */ |
544 | int ea_init(void); | |
545 | ||
27d5f18f FR |
546 | /* nsvdec.c */ |
547 | int nsvdec_init(void); | |
548 | ||
fb025625 FB |
549 | #include "rtp.h" |
550 | ||
551 | #include "rtsp.h" | |
552 | ||
290c5fa6 FB |
553 | /* yuv4mpeg.c */ |
554 | extern AVOutputFormat yuv4mpegpipe_oformat; | |
555 | ||
b9a281db | 556 | /* utils.c */ |
b9a281db FB |
557 | void av_register_input_format(AVInputFormat *format); |
558 | void av_register_output_format(AVOutputFormat *format); | |
36ada60c PG |
559 | AVOutputFormat *guess_stream_format(const char *short_name, |
560 | const char *filename, const char *mime_type); | |
b9a281db FB |
561 | AVOutputFormat *guess_format(const char *short_name, |
562 | const char *filename, const char *mime_type); | |
5b6d5596 MN |
563 | enum CodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name, |
564 | const char *filename, const char *mime_type, enum CodecType type); | |
de6d9b64 | 565 | |
fb2758c8 FB |
566 | void av_hex_dump(FILE *f, uint8_t *buf, int size); |
567 | void av_pkt_dump(FILE *f, AVPacket *pkt, int dump_payload); | |
de6d9b64 | 568 | |
94988531 | 569 | void av_register_all(void); |
de6d9b64 FB |
570 | |
571 | typedef struct FifoBuffer { | |
0c1a9eda ZK |
572 | uint8_t *buffer; |
573 | uint8_t *rptr, *wptr, *end; | |
de6d9b64 FB |
574 | } FifoBuffer; |
575 | ||
576 | int fifo_init(FifoBuffer *f, int size); | |
577 | void fifo_free(FifoBuffer *f); | |
0c1a9eda ZK |
578 | int fifo_size(FifoBuffer *f, uint8_t *rptr); |
579 | int fifo_read(FifoBuffer *f, uint8_t *buf, int buf_size, uint8_t **rptr_ptr); | |
580 | void fifo_write(FifoBuffer *f, uint8_t *buf, int size, uint8_t **wptr_ptr); | |
7000a175 | 581 | int put_fifo(ByteIOContext *pb, FifoBuffer *f, int buf_size, uint8_t **rptr_ptr); |
568e18b1 | 582 | void fifo_realloc(FifoBuffer *f, unsigned int size); |
de6d9b64 | 583 | |
b9a281db FB |
584 | /* media file input */ |
585 | AVInputFormat *av_find_input_format(const char *short_name); | |
94988531 | 586 | AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened); |
da24c5e3 FB |
587 | int av_open_input_stream(AVFormatContext **ic_ptr, |
588 | ByteIOContext *pb, const char *filename, | |
589 | AVInputFormat *fmt, AVFormatParameters *ap); | |
b9a281db FB |
590 | int av_open_input_file(AVFormatContext **ic_ptr, const char *filename, |
591 | AVInputFormat *fmt, | |
592 | int buf_size, | |
593 | AVFormatParameters *ap); | |
bc874dae MB |
594 | /* no av_open for output, so applications will need this: */ |
595 | AVFormatContext *av_alloc_format_context(void); | |
b9a281db FB |
596 | |
597 | #define AVERROR_UNKNOWN (-1) /* unknown error */ | |
598 | #define AVERROR_IO (-2) /* i/o error */ | |
599 | #define AVERROR_NUMEXPECTED (-3) /* number syntax expected in filename */ | |
600 | #define AVERROR_INVALIDDATA (-4) /* invalid data found */ | |
601 | #define AVERROR_NOMEM (-5) /* not enough memory */ | |
602 | #define AVERROR_NOFMT (-6) /* unknown format */ | |
fb2758c8 FB |
603 | #define AVERROR_NOTSUPP (-7) /* operation not supported */ |
604 | ||
b9a281db | 605 | int av_find_stream_info(AVFormatContext *ic); |
de6d9b64 | 606 | int av_read_packet(AVFormatContext *s, AVPacket *pkt); |
fb2758c8 | 607 | int av_read_frame(AVFormatContext *s, AVPacket *pkt); |
3ba1438d | 608 | int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, int flags); |
fb2758c8 FB |
609 | int av_read_play(AVFormatContext *s); |
610 | int av_read_pause(AVFormatContext *s); | |
de6d9b64 | 611 | void av_close_input_file(AVFormatContext *s); |
b9a281db | 612 | AVStream *av_new_stream(AVFormatContext *s, int id); |
9ee91c2f | 613 | void av_set_pts_info(AVStream *s, int pts_wrap_bits, |
916c80e9 | 614 | int pts_num, int pts_den); |
de6d9b64 | 615 | |
3ba1438d MN |
616 | #define AVSEEK_FLAG_BACKWARD 1 ///< seek backward |
617 | #define AVSEEK_FLAG_BYTE 2 ///< seeking based on position in bytes | |
27a5fe5f | 618 | #define AVSEEK_FLAG_ANY 4 ///< seek to any frame, even non keyframes |
3ba1438d | 619 | |
b754978a | 620 | int av_find_default_stream_index(AVFormatContext *s); |
dc56fc38 | 621 | int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags); |
3e9245a9 MN |
622 | int av_add_index_entry(AVStream *st, |
623 | int64_t pos, int64_t timestamp, int distance, int flags); | |
3ba1438d | 624 | int av_seek_frame_binary(AVFormatContext *s, int stream_index, int64_t target_ts, int flags); |
b754978a | 625 | |
b9a281db | 626 | /* media file output */ |
290c5fa6 | 627 | int av_set_parameters(AVFormatContext *s, AVFormatParameters *ap); |
b9a281db | 628 | int av_write_header(AVFormatContext *s); |
e928649b | 629 | int av_write_frame(AVFormatContext *s, AVPacket *pkt); |
3c895fc0 | 630 | int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt); |
e928649b | 631 | |
b9a281db | 632 | int av_write_trailer(AVFormatContext *s); |
de6d9b64 FB |
633 | |
634 | void dump_format(AVFormatContext *ic, | |
635 | int index, | |
636 | const char *url, | |
637 | int is_output); | |
638 | int parse_image_size(int *width_ptr, int *height_ptr, const char *str); | |
445f1b83 | 639 | int parse_frame_rate(int *frame_rate, int *frame_rate_base, const char *arg); |
0c1a9eda | 640 | int64_t parse_date(const char *datestr, int duration); |
de6d9b64 | 641 | |
0c1a9eda | 642 | int64_t av_gettime(void); |
94988531 | 643 | |
de6d9b64 FB |
644 | /* ffm specific for ffserver */ |
645 | #define FFM_PACKET_SIZE 4096 | |
646 | offset_t ffm_read_write_index(int fd); | |
647 | void ffm_write_write_index(int fd, offset_t pos); | |
648 | void ffm_set_write_index(AVFormatContext *s, offset_t pos, offset_t file_size); | |
649 | ||
650 | int find_info_tag(char *arg, int arg_size, const char *tag1, const char *info); | |
651 | ||
813cae4b FB |
652 | int get_frame_filename(char *buf, int buf_size, |
653 | const char *path, int number); | |
b9a281db | 654 | int filename_number_test(const char *filename); |
96baaa6a | 655 | |
b9a281db FB |
656 | /* grab specific */ |
657 | int video_grab_init(void); | |
658 | int audio_init(void); | |
96baaa6a | 659 | |
86fd51fb FB |
660 | /* DV1394 */ |
661 | int dv1394_init(void); | |
f02be79d | 662 | int dc1394_init(void); |
fb025625 FB |
663 | |
664 | #ifdef HAVE_AV_CONFIG_H | |
f71869a4 FB |
665 | |
666 | #include "os_support.h" | |
667 | ||
fb025625 FB |
668 | int strstart(const char *str, const char *val, const char **ptr); |
669 | int stristart(const char *str, const char *val, const char **ptr); | |
670 | void pstrcpy(char *buf, int buf_size, const char *str); | |
671 | char *pstrcat(char *buf, int buf_size, const char *s); | |
fb025625 | 672 | |
39f472c3 FB |
673 | void __dynarray_add(unsigned long **tab_ptr, int *nb_ptr, unsigned long elem); |
674 | ||
e4e70d2e | 675 | #ifdef __GNUC__ |
39f472c3 FB |
676 | #define dynarray_add(tab, nb_ptr, elem)\ |
677 | do {\ | |
678 | typeof(tab) _tab = (tab);\ | |
679 | typeof(elem) _elem = (elem);\ | |
680 | (void)sizeof(**_tab == _elem); /* check that types are compatible */\ | |
681 | __dynarray_add((unsigned long **)_tab, nb_ptr, (unsigned long)_elem);\ | |
682 | } while(0) | |
e4e70d2e FH |
683 | #else |
684 | #define dynarray_add(tab, nb_ptr, elem)\ | |
685 | do {\ | |
686 | __dynarray_add((unsigned long **)(tab), nb_ptr, (unsigned long)(elem));\ | |
687 | } while(0) | |
688 | #endif | |
39f472c3 | 689 | |
f71869a4 | 690 | time_t mktimegm(struct tm *tm); |
0c9fc6e1 | 691 | struct tm *brktimegm(time_t secs, struct tm *tm); |
f71869a4 FB |
692 | const char *small_strptime(const char *p, const char *fmt, |
693 | struct tm *dt); | |
694 | ||
fb025625 FB |
695 | struct in_addr; |
696 | int resolve_host(struct in_addr *sin_addr, const char *hostname); | |
697 | ||
698 | void url_split(char *proto, int proto_size, | |
6ba5cbc6 | 699 | char *authorization, int authorization_size, |
fb025625 FB |
700 | char *hostname, int hostname_size, |
701 | int *port_ptr, | |
702 | char *path, int path_size, | |
703 | const char *url); | |
704 | ||
a941f391 FB |
705 | int match_ext(const char *filename, const char *extensions); |
706 | ||
fb025625 FB |
707 | #endif /* HAVE_AV_CONFIG_H */ |
708 | ||
02d697aa ZK |
709 | #ifdef __cplusplus |
710 | } | |
711 | #endif | |
712 | ||
fb025625 | 713 | #endif /* AVFORMAT_H */ |
f3356e9c | 714 |