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