]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/avformat.h
Rename register_protocol() to av_register_protocol() and deprecate
[frescor/ffmpeg.git] / libavformat / avformat.h
1 /*
2  * copyright (c) 2001 Fabrice Bellard
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #ifndef AVFORMAT_AVFORMAT_H
22 #define AVFORMAT_AVFORMAT_H
23
24 #define LIBAVFORMAT_VERSION_MAJOR 52
25 #define LIBAVFORMAT_VERSION_MINOR 29
26 #define LIBAVFORMAT_VERSION_MICRO  0
27
28 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
29                                                LIBAVFORMAT_VERSION_MINOR, \
30                                                LIBAVFORMAT_VERSION_MICRO)
31 #define LIBAVFORMAT_VERSION     AV_VERSION(LIBAVFORMAT_VERSION_MAJOR,   \
32                                            LIBAVFORMAT_VERSION_MINOR,   \
33                                            LIBAVFORMAT_VERSION_MICRO)
34 #define LIBAVFORMAT_BUILD       LIBAVFORMAT_VERSION_INT
35
36 #define LIBAVFORMAT_IDENT       "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
37
38 /**
39  * Returns the LIBAVFORMAT_VERSION_INT constant.
40  */
41 unsigned avformat_version(void);
42
43 #include <time.h>
44 #include <stdio.h>  /* FILE */
45 #include "libavcodec/avcodec.h"
46
47 #include "avio.h"
48
49
50 /*
51  * Public Metadata API.
52  * !!WARNING!! This is a work in progress. Don't use outside FFmpeg for now.
53  * The metadata API allows libavformat to export metadata tags to a client
54  * application using a sequence of key/value pairs.
55  * Important concepts to keep in mind:
56  * 1. Keys are unique; there can never be 2 tags with the same key. This is
57  *    also meant semantically, i.e., a demuxer should not knowingly produce
58  *    several keys that are literally different but semantically identical.
59  *    E.g., key=Author5, key=Author6. In this example, all authors must be
60  *    placed in the same tag.
61  * 2. Metadata is flat, not hierarchical; there are no subtags. If you
62  *    want to store, e.g., the email address of the child of producer Alice
63  *    and actor Bob, that could have key=alice_and_bobs_childs_email_address.
64  * 3. A tag whose value is localized for a particular language is appended
65  *    with a dash character ('-') and the ISO 639 3-letter language code.
66  *    For example: Author-ger=Michael, Author-eng=Mike
67  *    The original/default language is in the unqualified "Author" tag.
68  *    A demuxer should set a default if it sets any translated tag.
69  */
70
71 #define AV_METADATA_MATCH_CASE      1
72 #define AV_METADATA_IGNORE_SUFFIX   2
73
74 typedef struct {
75     char *key;
76     char *value;
77 }AVMetadataTag;
78
79 typedef struct AVMetadata AVMetadata;
80
81 /**
82  * gets a metadata element with matching key.
83  * @param prev set to the previous matching element to find the next.
84  * @param flags allows case as well as suffix insensitive comparisons.
85  * @return found tag or NULL, changing key or value leads to undefined behavior.
86  */
87 AVMetadataTag *
88 av_metadata_get(AVMetadata *m, const char *key, const AVMetadataTag *prev, int flags);
89
90 /**
91  * sets the given tag in m, overwriting an existing tag.
92  * @param key tag key to add to m (will be av_strduped).
93  * @param value tag value to add to m (will be av_strduped).
94  * @return >= 0 if success otherwise error code that is <0.
95  */
96 int av_metadata_set(AVMetadata **pm, const char *key, const char *value);
97
98 /**
99  * Free all the memory allocated for an AVMetadata struct.
100  */
101 void av_metadata_free(AVMetadata **m);
102
103
104 /* packet functions */
105
106 typedef struct AVPacket {
107     /**
108      * Presentation timestamp in time_base units.
109      * This is the time at which the decompressed packet will be presented
110      * to the user.
111      * Can be AV_NOPTS_VALUE if it is not stored in the file.
112      * pts MUST be larger or equal to dts as presentation cannot happen before
113      * decompression, unless one wants to view hex dumps. Some formats misuse
114      * the terms dts and pts/cts to mean something different, these timestamps
115      * must be converted to true pts/dts before they are stored in AVPacket.
116      */
117     int64_t pts;
118     /**
119      * Decompression timestamp in time_base units.
120      * This is the time at which the packet is decompressed.
121      * Can be AV_NOPTS_VALUE if it is not stored in the file.
122      */
123     int64_t dts;
124     uint8_t *data;
125     int   size;
126     int   stream_index;
127     int   flags;
128     /**
129      * Duration of this packet in time_base units, 0 if unknown.
130      * Equals next_pts - this_pts in presentation order.
131      */
132     int   duration;
133     void  (*destruct)(struct AVPacket *);
134     void  *priv;
135     int64_t pos;                            ///< byte position in stream, -1 if unknown
136
137     /**
138      * Time difference in stream time base units from the pts of this
139      * packet to the point at which the output from the decoder has converged
140      * independent from the availability of previous frames. That is, the
141      * frames are virtually identical no matter if decoding started from
142      * the very first frame or from this keyframe.
143      * Is AV_NOPTS_VALUE if unknown.
144      * This field is not the display duration of the current packet.
145      *
146      * The purpose of this field is to allow seeking in streams that have no
147      * keyframes in the conventional sense. It corresponds to the
148      * recovery point SEI in H.264 and match_time_delta in NUT. It is also
149      * essential for some types of subtitle streams to ensure that all
150      * subtitles are correctly displayed after seeking.
151      */
152     int64_t convergence_duration;
153 } AVPacket;
154 #define PKT_FLAG_KEY   0x0001
155
156 void av_destruct_packet_nofree(AVPacket *pkt);
157
158 /**
159  * Default packet destructor.
160  */
161 void av_destruct_packet(AVPacket *pkt);
162
163 /**
164  * Initialize optional fields of a packet with default values.
165  *
166  * @param pkt packet
167  */
168 void av_init_packet(AVPacket *pkt);
169
170 /**
171  * Allocate the payload of a packet and initialize its fields with
172  * default values.
173  *
174  * @param pkt packet
175  * @param size wanted payload size
176  * @return 0 if OK, AVERROR_xxx otherwise
177  */
178 int av_new_packet(AVPacket *pkt, int size);
179
180 /**
181  * Allocate and read the payload of a packet and initialize its fields with
182  * default values.
183  *
184  * @param pkt packet
185  * @param size desired payload size
186  * @return >0 (read size) if OK, AVERROR_xxx otherwise
187  */
188 int av_get_packet(ByteIOContext *s, AVPacket *pkt, int size);
189
190 /**
191  * @warning This is a hack - the packet memory allocation stuff is broken. The
192  * packet is allocated if it was not really allocated.
193  */
194 int av_dup_packet(AVPacket *pkt);
195
196 /**
197  * Free a packet.
198  *
199  * @param pkt packet to free
200  */
201 static inline void av_free_packet(AVPacket *pkt)
202 {
203     if (pkt && pkt->destruct) {
204         pkt->destruct(pkt);
205     }
206 }
207
208 /*************************************************/
209 /* fractional numbers for exact pts handling */
210
211 /**
212  * The exact value of the fractional number is: 'val + num / den'.
213  * num is assumed to be 0 <= num < den.
214  */
215 typedef struct AVFrac {
216     int64_t val, num, den;
217 } AVFrac;
218
219 /*************************************************/
220 /* input/output formats */
221
222 struct AVCodecTag;
223
224 struct AVFormatContext;
225
226 /** This structure contains the data a format has to probe a file. */
227 typedef struct AVProbeData {
228     const char *filename;
229     unsigned char *buf;
230     int buf_size;
231 } AVProbeData;
232
233 #define AVPROBE_SCORE_MAX 100               ///< Maximum score, half of that is used for file-extension-based detection.
234 #define AVPROBE_PADDING_SIZE 32             ///< extra allocated bytes at the end of the probe buffer
235
236 typedef struct AVFormatParameters {
237     AVRational time_base;
238     int sample_rate;
239     int channels;
240     int width;
241     int height;
242     enum PixelFormat pix_fmt;
243     int channel; /**< Used to select DV channel. */
244     const char *standard; /**< TV standard, NTSC, PAL, SECAM */
245     unsigned int mpeg2ts_raw:1;  /**< Force raw MPEG-2 transport stream output, if possible. */
246     unsigned int mpeg2ts_compute_pcr:1; /**< Compute exact PCR for each transport
247                                             stream packet (only meaningful if
248                                             mpeg2ts_raw is TRUE). */
249     unsigned int initial_pause:1;       /**< Do not begin to play the stream
250                                             immediately (RTSP only). */
251     unsigned int prealloced_context:1;
252 #if LIBAVFORMAT_VERSION_INT < (53<<16)
253     enum CodecID video_codec_id;
254     enum CodecID audio_codec_id;
255 #endif
256 } AVFormatParameters;
257
258 //! Demuxer will use url_fopen, no opened file should be provided by the caller.
259 #define AVFMT_NOFILE        0x0001
260 #define AVFMT_NEEDNUMBER    0x0002 /**< Needs '%d' in filename. */
261 #define AVFMT_SHOW_IDS      0x0008 /**< Show format stream IDs numbers. */
262 #define AVFMT_RAWPICTURE    0x0020 /**< Format wants AVPicture structure for
263                                       raw picture data. */
264 #define AVFMT_GLOBALHEADER  0x0040 /**< Format wants global header. */
265 #define AVFMT_NOTIMESTAMPS  0x0080 /**< Format does not need / have any timestamps. */
266 #define AVFMT_GENERIC_INDEX 0x0100 /**< Use generic index building code. */
267 #define AVFMT_TS_DISCONT    0x0200 /**< Format allows timestamp discontinuities. */
268
269 typedef struct AVOutputFormat {
270     const char *name;
271     /**
272      * Descriptive name for the format, meant to be more human-readable
273      * than \p name. You \e should use the NULL_IF_CONFIG_SMALL() macro
274      * to define it.
275      */
276     const char *long_name;
277     const char *mime_type;
278     const char *extensions; /**< comma-separated filename extensions */
279     /** Size of private data so that it can be allocated in the wrapper. */
280     int priv_data_size;
281     /* output support */
282     enum CodecID audio_codec; /**< default audio codec */
283     enum CodecID video_codec; /**< default video codec */
284     int (*write_header)(struct AVFormatContext *);
285     int (*write_packet)(struct AVFormatContext *, AVPacket *pkt);
286     int (*write_trailer)(struct AVFormatContext *);
287     /** can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_GLOBALHEADER */
288     int flags;
289     /** Currently only used to set pixel format if not YUV420P. */
290     int (*set_parameters)(struct AVFormatContext *, AVFormatParameters *);
291     int (*interleave_packet)(struct AVFormatContext *, AVPacket *out,
292                              AVPacket *in, int flush);
293
294     /**
295      * List of supported codec_id-codec_tag pairs, ordered by "better
296      * choice first". The arrays are all CODEC_ID_NONE terminated.
297      */
298     const struct AVCodecTag * const *codec_tag;
299
300     enum CodecID subtitle_codec; /**< default subtitle codec */
301
302     /* private fields */
303     struct AVOutputFormat *next;
304 } AVOutputFormat;
305
306 typedef struct AVInputFormat {
307     const char *name;
308     /**
309      * Descriptive name for the format, meant to be more human-readable
310      * than \p name. You \e should use the NULL_IF_CONFIG_SMALL() macro
311      * to define it.
312      */
313     const char *long_name;
314     /** Size of private data so that it can be allocated in the wrapper. */
315     int priv_data_size;
316     /**
317      * Tell if a given file has a chance of being parsed by this format.
318      * The buffer provided is guaranteed to be AVPROBE_PADDING_SIZE bytes
319      * big so you do not have to check for that unless you need more.
320      */
321     int (*read_probe)(AVProbeData *);
322     /** Read the format header and initialize the AVFormatContext
323        structure. Return 0 if OK. 'ap' if non-NULL contains
324        additional parameters. Only used in raw format right
325        now. 'av_new_stream' should be called to create new streams.  */
326     int (*read_header)(struct AVFormatContext *,
327                        AVFormatParameters *ap);
328     /** Read one packet and put it in 'pkt'. pts and flags are also
329        set. 'av_new_stream' can be called only if the flag
330        AVFMTCTX_NOHEADER is used. */
331     int (*read_packet)(struct AVFormatContext *, AVPacket *pkt);
332     /** Close the stream. The AVFormatContext and AVStreams are not
333        freed by this function */
334     int (*read_close)(struct AVFormatContext *);
335     /**
336      * Seek to a given timestamp relative to the frames in
337      * stream component stream_index.
338      * @param stream_index must not be -1
339      * @param flags selects which direction should be preferred if no exact
340      *              match is available
341      * @return >= 0 on success (but not necessarily the new offset)
342      */
343     int (*read_seek)(struct AVFormatContext *,
344                      int stream_index, int64_t timestamp, int flags);
345     /**
346      * Gets the next timestamp in stream[stream_index].time_base units.
347      * @return the timestamp or AV_NOPTS_VALUE if an error occurred
348      */
349     int64_t (*read_timestamp)(struct AVFormatContext *s, int stream_index,
350                               int64_t *pos, int64_t pos_limit);
351     /** Can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER. */
352     int flags;
353     /** If extensions are defined, then no probe is done. You should
354        usually not use extension format guessing because it is not
355        reliable enough */
356     const char *extensions;
357     /** General purpose read-only value that the format can use. */
358     int value;
359
360     /** Start/resume playing - only meaningful if using a network-based format
361        (RTSP). */
362     int (*read_play)(struct AVFormatContext *);
363
364     /** Pause playing - only meaningful if using a network-based format
365        (RTSP). */
366     int (*read_pause)(struct AVFormatContext *);
367
368     const struct AVCodecTag * const *codec_tag;
369
370     /* private fields */
371     struct AVInputFormat *next;
372 } AVInputFormat;
373
374 enum AVStreamParseType {
375     AVSTREAM_PARSE_NONE,
376     AVSTREAM_PARSE_FULL,       /**< full parsing and repack */
377     AVSTREAM_PARSE_HEADERS,    /**< Only parse headers, do not repack. */
378     AVSTREAM_PARSE_TIMESTAMPS, /**< full parsing and interpolation of timestamps for frames not starting on a packet boundary */
379 };
380
381 typedef struct AVIndexEntry {
382     int64_t pos;
383     int64_t timestamp;
384 #define AVINDEX_KEYFRAME 0x0001
385     int flags:2;
386     int size:30; //Yeah, trying to keep the size of this small to reduce memory requirements (it is 24 vs. 32 bytes due to possible 8-byte alignment).
387     int min_distance;         /**< Minimum distance between this and the previous keyframe, used to avoid unneeded searching. */
388 } AVIndexEntry;
389
390 #define AV_DISPOSITION_DEFAULT   0x0001
391 #define AV_DISPOSITION_DUB       0x0002
392 #define AV_DISPOSITION_ORIGINAL  0x0004
393 #define AV_DISPOSITION_COMMENT   0x0008
394 #define AV_DISPOSITION_LYRICS    0x0010
395 #define AV_DISPOSITION_KARAOKE   0x0020
396
397 /**
398  * Stream structure.
399  * New fields can be added to the end with minor version bumps.
400  * Removal, reordering and changes to existing fields require a major
401  * version bump.
402  * sizeof(AVStream) must not be used outside libav*.
403  */
404 typedef struct AVStream {
405     int index;    /**< stream index in AVFormatContext */
406     int id;       /**< format-specific stream ID */
407     AVCodecContext *codec; /**< codec context */
408     /**
409      * Real base frame rate of the stream.
410      * This is the lowest frame rate with which all timestamps can be
411      * represented accurately (it is the least common multiple of all
412      * frame rates in the stream). Note, this value is just a guess!
413      * For example if the time base is 1/90000 and all frames have either
414      * approximately 3600 or 1800 timer ticks, then r_frame_rate will be 50/1.
415      */
416     AVRational r_frame_rate;
417     void *priv_data;
418
419     /* internal data used in av_find_stream_info() */
420     int64_t first_dts;
421     /** encoding: pts generation when outputting stream */
422     struct AVFrac pts;
423
424     /**
425      * This is the fundamental unit of time (in seconds) in terms
426      * of which frame timestamps are represented. For fixed-fps content,
427      * time base should be 1/frame rate and timestamp increments should be 1.
428      */
429     AVRational time_base;
430     int pts_wrap_bits; /**< number of bits in pts (used for wrapping control) */
431     /* ffmpeg.c private use */
432     int stream_copy; /**< If set, just copy stream. */
433     enum AVDiscard discard; ///< Selects which packets can be discarded at will and do not need to be demuxed.
434     //FIXME move stuff to a flags field?
435     /** Quality, as it has been removed from AVCodecContext and put in AVVideoFrame.
436      * MN: dunno if that is the right place for it */
437     float quality;
438     /**
439      * Decoding: pts of the first frame of the stream, in stream time base.
440      * Only set this if you are absolutely 100% sure that the value you set
441      * it to really is the pts of the first frame.
442      * This may be undefined (AV_NOPTS_VALUE).
443      * @note The ASF header does NOT contain a correct start_time the ASF
444      * demuxer must NOT set this.
445      */
446     int64_t start_time;
447     /**
448      * Decoding: duration of the stream, in stream time base.
449      * If a source file does not specify a duration, but does specify
450      * a bitrate, this value will be estimated from bitrate and file size.
451      */
452     int64_t duration;
453
454     char language[4]; /** ISO 639 3-letter language code (empty string if undefined) */
455
456     /* av_read_frame() support */
457     enum AVStreamParseType need_parsing;
458     struct AVCodecParserContext *parser;
459
460     int64_t cur_dts;
461     int last_IP_duration;
462     int64_t last_IP_pts;
463     /* av_seek_frame() support */
464     AVIndexEntry *index_entries; /**< Only used if the format does not
465                                     support seeking natively. */
466     int nb_index_entries;
467     unsigned int index_entries_allocated_size;
468
469     int64_t nb_frames;                 ///< number of frames in this stream if known or 0
470
471 #if LIBAVFORMAT_VERSION_INT < (53<<16)
472     int64_t unused[4+1];
473 #endif
474
475     char *filename; /**< source filename of the stream */
476
477     int disposition; /**< AV_DISPOSITION_* bit field */
478
479     AVProbeData probe_data;
480 #define MAX_REORDER_DELAY 16
481     int64_t pts_buffer[MAX_REORDER_DELAY+1];
482
483     /**
484      * sample aspect ratio (0 if unknown)
485      * - encoding: Set by user.
486      * - decoding: Set by libavformat.
487      */
488     AVRational sample_aspect_ratio;
489
490     AVMetadata *metadata;
491
492     /* av_read_frame() support */
493     const uint8_t *cur_ptr;
494     int cur_len;
495     AVPacket cur_pkt;
496 } AVStream;
497
498 #define AV_PROGRAM_RUNNING 1
499
500 /**
501  * New fields can be added to the end with minor version bumps.
502  * Removal, reordering and changes to existing fields require a major
503  * version bump.
504  * sizeof(AVProgram) must not be used outside libav*.
505  */
506 typedef struct AVProgram {
507     int            id;
508     char           *provider_name; ///< network name for DVB streams
509     char           *name;          ///< service name for DVB streams
510     int            flags;
511     enum AVDiscard discard;        ///< selects which program to discard and which to feed to the caller
512     unsigned int   *stream_index;
513     unsigned int   nb_stream_indexes;
514     AVMetadata *metadata;
515 } AVProgram;
516
517 #define AVFMTCTX_NOHEADER      0x0001 /**< signal that no header is present
518                                          (streams are added dynamically) */
519
520 typedef struct AVChapter {
521     int id;                 ///< unique ID to identify the chapter
522     AVRational time_base;   ///< time base in which the start/end timestamps are specified
523     int64_t start, end;     ///< chapter start/end time in time_base units
524     char *title;            ///< chapter title
525     AVMetadata *metadata;
526 } AVChapter;
527
528 #define MAX_STREAMS 20
529
530 /**
531  * Format I/O context.
532  * New fields can be added to the end with minor version bumps.
533  * Removal, reordering and changes to existing fields require a major
534  * version bump.
535  * sizeof(AVFormatContext) must not be used outside libav*.
536  */
537 typedef struct AVFormatContext {
538     const AVClass *av_class; /**< Set by av_alloc_format_context. */
539     /* Can only be iformat or oformat, not both at the same time. */
540     struct AVInputFormat *iformat;
541     struct AVOutputFormat *oformat;
542     void *priv_data;
543     ByteIOContext *pb;
544     unsigned int nb_streams;
545     AVStream *streams[MAX_STREAMS];
546     char filename[1024]; /**< input or output filename */
547     /* stream info */
548     int64_t timestamp;
549     char title[512];
550     char author[512];
551     char copyright[512];
552     char comment[512];
553     char album[512];
554     int year;  /**< ID3 year, 0 if none */
555     int track; /**< track number, 0 if none */
556     char genre[32]; /**< ID3 genre */
557
558     int ctx_flags; /**< Format-specific flags, see AVFMTCTX_xx */
559     /* private data for pts handling (do not modify directly). */
560     /** This buffer is only needed when packets were already buffered but
561        not decoded, for example to get the codec parameters in MPEG
562        streams. */
563     struct AVPacketList *packet_buffer;
564
565     /** Decoding: position of the first frame of the component, in
566        AV_TIME_BASE fractional seconds. NEVER set this value directly:
567        It is deduced from the AVStream values.  */
568     int64_t start_time;
569     /** Decoding: duration of the stream, in AV_TIME_BASE fractional
570        seconds. NEVER set this value directly: it is deduced from the
571        AVStream values.  */
572     int64_t duration;
573     /** decoding: total file size, 0 if unknown */
574     int64_t file_size;
575     /** Decoding: total stream bitrate in bit/s, 0 if not
576        available. Never set it directly if the file_size and the
577        duration are known as ffmpeg can compute it automatically. */
578     int bit_rate;
579
580     /* av_read_frame() support */
581     AVStream *cur_st;
582 #if LIBAVFORMAT_VERSION_INT < (53<<16)
583     const uint8_t *cur_ptr_deprecated;
584     int cur_len_deprecated;
585     AVPacket cur_pkt_deprecated;
586 #endif
587
588     /* av_seek_frame() support */
589     int64_t data_offset; /** offset of the first packet */
590     int index_built;
591
592     int mux_rate;
593     int packet_size;
594     int preload;
595     int max_delay;
596
597 #define AVFMT_NOOUTPUTLOOP -1
598 #define AVFMT_INFINITEOUTPUTLOOP 0
599     /** number of times to loop output in formats that support it */
600     int loop_output;
601
602     int flags;
603 #define AVFMT_FLAG_GENPTS       0x0001 ///< Generate pts if missing even if it requires parsing future frames.
604 #define AVFMT_FLAG_IGNIDX       0x0002 ///< Ignore index.
605 #define AVFMT_FLAG_NONBLOCK     0x0004 ///< Do not block when reading packets from input.
606
607     int loop_input;
608     /** Decoding: size of data to probe; encoding: unused. */
609     unsigned int probesize;
610
611     /**
612      * Maximum time (in AV_TIME_BASE units) during which the input should
613      * be analyzed in av_find_stream_info().
614      */
615     int max_analyze_duration;
616
617     const uint8_t *key;
618     int keylen;
619
620     unsigned int nb_programs;
621     AVProgram **programs;
622
623     /**
624      * Forced video codec_id.
625      * Demuxing: Set by user.
626      */
627     enum CodecID video_codec_id;
628     /**
629      * Forced audio codec_id.
630      * Demuxing: Set by user.
631      */
632     enum CodecID audio_codec_id;
633     /**
634      * Forced subtitle codec_id.
635      * Demuxing: Set by user.
636      */
637     enum CodecID subtitle_codec_id;
638
639     /**
640      * Maximum amount of memory in bytes to use per stream for the index.
641      * If the needed index exceeds this size, entries will be discarded as
642      * needed to maintain a smaller size. This can lead to slower or less
643      * accurate seeking (depends on demuxer).
644      * Demuxers for which a full in-memory index is mandatory will ignore
645      * this.
646      * muxing  : unused
647      * demuxing: set by user
648      */
649     unsigned int max_index_size;
650
651     /**
652      * Maximum amount of memory in bytes to use for buffering frames
653      * obtained from realtime capture devices.
654      */
655     unsigned int max_picture_buffer;
656
657     unsigned int nb_chapters;
658     AVChapter **chapters;
659
660     /**
661      * Flags to enable debugging.
662      */
663     int debug;
664 #define FF_FDEBUG_TS        0x0001
665
666     /**
667      * Raw packets from the demuxer, prior to parsing and decoding.
668      * This buffer is used for buffering packets until the codec can
669      * be identified, as parsing cannot be done without knowing the
670      * codec.
671      */
672     struct AVPacketList *raw_packet_buffer;
673     struct AVPacketList *raw_packet_buffer_end;
674
675     struct AVPacketList *packet_buffer_end;
676
677     AVMetadata *metadata;
678 } AVFormatContext;
679
680 typedef struct AVPacketList {
681     AVPacket pkt;
682     struct AVPacketList *next;
683 } AVPacketList;
684
685 #if LIBAVFORMAT_VERSION_INT < (53<<16)
686 extern AVInputFormat *first_iformat;
687 extern AVOutputFormat *first_oformat;
688 #endif
689
690 /**
691  * If f is NULL, returns the first registered input format,
692  * if f is non-NULL, returns the registered input format next after f,
693  * or NULL if f is the last one.
694  */
695 AVInputFormat  *av_iformat_next(AVInputFormat  *f);
696
697 /**
698  * If f is NULL, returns the first registered output format,
699  * if f is non-NULL, returns the registered output format next after f,
700  * or NULL if f is the last one.
701  */
702 AVOutputFormat *av_oformat_next(AVOutputFormat *f);
703
704 enum CodecID av_guess_image2_codec(const char *filename);
705
706 /* XXX: use automatic init with either ELF sections or C file parser */
707 /* modules */
708
709 /* utils.c */
710 void av_register_input_format(AVInputFormat *format);
711 void av_register_output_format(AVOutputFormat *format);
712 AVOutputFormat *guess_stream_format(const char *short_name,
713                                     const char *filename,
714                                     const char *mime_type);
715 AVOutputFormat *guess_format(const char *short_name,
716                              const char *filename,
717                              const char *mime_type);
718
719 /**
720  * Guesses the codec ID based upon muxer and filename.
721  */
722 enum CodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name,
723                             const char *filename, const char *mime_type,
724                             enum CodecType type);
725
726 /**
727  * Send a nice hexadecimal dump of a buffer to the specified file stream.
728  *
729  * @param f The file stream pointer where the dump should be sent to.
730  * @param buf buffer
731  * @param size buffer size
732  *
733  * @see av_hex_dump_log, av_pkt_dump, av_pkt_dump_log
734  */
735 void av_hex_dump(FILE *f, uint8_t *buf, int size);
736
737 /**
738  * Send a nice hexadecimal dump of a buffer to the log.
739  *
740  * @param avcl A pointer to an arbitrary struct of which the first field is a
741  * pointer to an AVClass struct.
742  * @param level The importance level of the message, lower values signifying
743  * higher importance.
744  * @param buf buffer
745  * @param size buffer size
746  *
747  * @see av_hex_dump, av_pkt_dump, av_pkt_dump_log
748  */
749 void av_hex_dump_log(void *avcl, int level, uint8_t *buf, int size);
750
751 /**
752  * Send a nice dump of a packet to the specified file stream.
753  *
754  * @param f The file stream pointer where the dump should be sent to.
755  * @param pkt packet to dump
756  * @param dump_payload True if the payload must be displayed, too.
757  */
758 void av_pkt_dump(FILE *f, AVPacket *pkt, int dump_payload);
759
760 /**
761  * Send a nice dump of a packet to the log.
762  *
763  * @param avcl A pointer to an arbitrary struct of which the first field is a
764  * pointer to an AVClass struct.
765  * @param level The importance level of the message, lower values signifying
766  * higher importance.
767  * @param pkt packet to dump
768  * @param dump_payload True if the payload must be displayed, too.
769  */
770 void av_pkt_dump_log(void *avcl, int level, AVPacket *pkt, int dump_payload);
771
772 /**
773  * Initialize libavformat and register all the muxers, demuxers and
774  * protocols. If you do not call this function, then you can select
775  * exactly which formats you want to support.
776  *
777  * @see av_register_input_format()
778  * @see av_register_output_format()
779  * @see register_protocol()
780  */
781 void av_register_all(void);
782
783 /** codec tag <-> codec id */
784 enum CodecID av_codec_get_id(const struct AVCodecTag * const *tags, unsigned int tag);
785 unsigned int av_codec_get_tag(const struct AVCodecTag * const *tags, enum CodecID id);
786
787 /* media file input */
788
789 /**
790  * Finds AVInputFormat based on the short name of the input format.
791  */
792 AVInputFormat *av_find_input_format(const char *short_name);
793
794 /**
795  * Guess file format.
796  *
797  * @param is_opened Whether the file is already opened; determines whether
798  *                  demuxers with or without AVFMT_NOFILE are probed.
799  */
800 AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened);
801
802 /**
803  * Allocates all the structures needed to read an input stream.
804  *        This does not open the needed codecs for decoding the stream[s].
805  */
806 int av_open_input_stream(AVFormatContext **ic_ptr,
807                          ByteIOContext *pb, const char *filename,
808                          AVInputFormat *fmt, AVFormatParameters *ap);
809
810 /**
811  * Open a media file as input. The codecs are not opened. Only the file
812  * header (if present) is read.
813  *
814  * @param ic_ptr The opened media file handle is put here.
815  * @param filename filename to open
816  * @param fmt If non-NULL, force the file format to use.
817  * @param buf_size optional buffer size (zero if default is OK)
818  * @param ap Additional parameters needed when opening the file
819  *           (NULL if default).
820  * @return 0 if OK, AVERROR_xxx otherwise
821  */
822 int av_open_input_file(AVFormatContext **ic_ptr, const char *filename,
823                        AVInputFormat *fmt,
824                        int buf_size,
825                        AVFormatParameters *ap);
826
827 #if LIBAVFORMAT_VERSION_MAJOR < 53
828 /**
829  * @deprecated Use avformat_alloc_context() instead.
830  */
831 attribute_deprecated AVFormatContext *av_alloc_format_context(void);
832 #endif
833
834 /**
835  * Allocate an AVFormatContext.
836  * Can be freed with av_free() but do not forget to free everything you
837  * explicitly allocated as well!
838  */
839 AVFormatContext *avformat_alloc_context(void);
840
841 /**
842  * Read packets of a media file to get stream information. This
843  * is useful for file formats with no headers such as MPEG. This
844  * function also computes the real frame rate in case of MPEG-2 repeat
845  * frame mode.
846  * The logical file position is not changed by this function;
847  * examined packets may be buffered for later processing.
848  *
849  * @param ic media file handle
850  * @return >=0 if OK, AVERROR_xxx on error
851  * @todo Let the user decide somehow what information is needed so that
852  *       we do not waste time getting stuff the user does not need.
853  */
854 int av_find_stream_info(AVFormatContext *ic);
855
856 /**
857  * Read a transport packet from a media file.
858  *
859  * This function is obsolete and should never be used.
860  * Use av_read_frame() instead.
861  *
862  * @param s media file handle
863  * @param pkt is filled
864  * @return 0 if OK, AVERROR_xxx on error
865  */
866 int av_read_packet(AVFormatContext *s, AVPacket *pkt);
867
868 /**
869  * Return the next frame of a stream.
870  *
871  * The returned packet is valid
872  * until the next av_read_frame() or until av_close_input_file() and
873  * must be freed with av_free_packet. For video, the packet contains
874  * exactly one frame. For audio, it contains an integer number of
875  * frames if each frame has a known fixed size (e.g. PCM or ADPCM
876  * data). If the audio frames have a variable size (e.g. MPEG audio),
877  * then it contains one frame.
878  *
879  * pkt->pts, pkt->dts and pkt->duration are always set to correct
880  * values in AVStream.timebase units (and guessed if the format cannot
881  * provide them). pkt->pts can be AV_NOPTS_VALUE if the video format
882  * has B-frames, so it is better to rely on pkt->dts if you do not
883  * decompress the payload.
884  *
885  * @return 0 if OK, < 0 on error or end of file
886  */
887 int av_read_frame(AVFormatContext *s, AVPacket *pkt);
888
889 /**
890  * Seek to the key frame at timestamp.
891  * 'timestamp' in 'stream_index'.
892  * @param stream_index If stream_index is (-1), a default
893  * stream is selected, and timestamp is automatically converted
894  * from AV_TIME_BASE units to the stream specific time_base.
895  * @param timestamp Timestamp in AVStream.time_base units
896  *        or, if no stream is specified, in AV_TIME_BASE units.
897  * @param flags flags which select direction and seeking mode
898  * @return >= 0 on success
899  */
900 int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp,
901                   int flags);
902
903 /**
904  * Seek to timestamp ts.
905  * Seeking will be done so that the point from which all active streams
906  * can be presented successfully will be closest to ts and within min/max_ts.
907  * Active streams are all streams that have AVStream.discard < AVDISCARD_ALL.
908  *
909  * if flags contain AVSEEK_FLAG_BYTE then all timestamps are in byte and
910  * are the file position (this may not be supported by all demuxers).
911  * if flags contain AVSEEK_FLAG_FRAME then all timestamps are in frames
912  * in the stream with stream_index (this may not be supported by all demuxers).
913  * else all timestamps are in units of the stream selected by stream_index or
914  * if stream_index is -1, AV_TIME_BASE units.
915  * if flags contain AVSEEK_FLAG_ANY then non keyframes are treated as
916  * keyframes (this may not be supported by all demuxers).
917  *
918  * @param stream_index index of the stream which is used as timebase reference.
919  * @param min_ts smallest acceptable timestamp
920  * @param ts target timestamp
921  * @param max_ts largest acceptable timestamp
922  * @param flags flags
923  * @returns >=0 on success, error code otherwise
924  *
925  * @NOTE this is part of the new seek API which is still under construction
926  *       thus do not use this yet it may change any time, dont expect ABI
927  *       compatibility yet!
928  */
929 int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
930
931 /**
932  * Start playing a network based stream (e.g. RTSP stream) at the
933  * current position.
934  */
935 int av_read_play(AVFormatContext *s);
936
937 /**
938  * Pause a network based stream (e.g. RTSP stream).
939  *
940  * Use av_read_play() to resume it.
941  */
942 int av_read_pause(AVFormatContext *s);
943
944 /**
945  * Free a AVFormatContext allocated by av_open_input_stream.
946  * @param s context to free
947  */
948 void av_close_input_stream(AVFormatContext *s);
949
950 /**
951  * Close a media file (but not its codecs).
952  *
953  * @param s media file handle
954  */
955 void av_close_input_file(AVFormatContext *s);
956
957 /**
958  * Add a new stream to a media file.
959  *
960  * Can only be called in the read_header() function. If the flag
961  * AVFMTCTX_NOHEADER is in the format context, then new streams
962  * can be added in read_packet too.
963  *
964  * @param s media file handle
965  * @param id file-format-dependent stream ID
966  */
967 AVStream *av_new_stream(AVFormatContext *s, int id);
968 AVProgram *av_new_program(AVFormatContext *s, int id);
969
970 /**
971  * Add a new chapter.
972  * This function is NOT part of the public API
973  * and should ONLY be used by demuxers.
974  *
975  * @param s media file handle
976  * @param id unique ID for this chapter
977  * @param start chapter start time in time_base units
978  * @param end chapter end time in time_base units
979  * @param title chapter title
980  *
981  * @return AVChapter or NULL on error
982  */
983 AVChapter *ff_new_chapter(AVFormatContext *s, int id, AVRational time_base,
984                           int64_t start, int64_t end, const char *title);
985
986 /**
987  * Set the pts for a given stream.
988  *
989  * @param s stream
990  * @param pts_wrap_bits number of bits effectively used by the pts
991  *        (used for wrap control, 33 is the value for MPEG)
992  * @param pts_num numerator to convert to seconds (MPEG: 1)
993  * @param pts_den denominator to convert to seconds (MPEG: 90000)
994  */
995 void av_set_pts_info(AVStream *s, int pts_wrap_bits,
996                      int pts_num, int pts_den);
997
998 #define AVSEEK_FLAG_BACKWARD 1 ///< seek backward
999 #define AVSEEK_FLAG_BYTE     2 ///< seeking based on position in bytes
1000 #define AVSEEK_FLAG_ANY      4 ///< seek to any frame, even non-keyframes
1001
1002 int av_find_default_stream_index(AVFormatContext *s);
1003
1004 /**
1005  * Gets the index for a specific timestamp.
1006  * @param flags if AVSEEK_FLAG_BACKWARD then the returned index will correspond
1007  *                 to the timestamp which is <= the requested one, if backward
1008  *                 is 0, then it will be >=
1009  *              if AVSEEK_FLAG_ANY seek to any frame, only keyframes otherwise
1010  * @return < 0 if no such timestamp could be found
1011  */
1012 int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags);
1013
1014 /**
1015  * Ensures the index uses less memory than the maximum specified in
1016  * AVFormatContext.max_index_size, by discarding entries if it grows
1017  * too large.
1018  * This function is not part of the public API and should only be called
1019  * by demuxers.
1020  */
1021 void ff_reduce_index(AVFormatContext *s, int stream_index);
1022
1023 /**
1024  * Add an index entry into a sorted list. Update the entry if the list
1025  * already contains it.
1026  *
1027  * @param timestamp timestamp in the time base of the given stream
1028  */
1029 int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp,
1030                        int size, int distance, int flags);
1031
1032 /**
1033  * Does a binary search using av_index_search_timestamp() and
1034  * AVCodec.read_timestamp().
1035  * This is not supposed to be called directly by a user application,
1036  * but by demuxers.
1037  * @param target_ts target timestamp in the time base of the given stream
1038  * @param stream_index stream number
1039  */
1040 int av_seek_frame_binary(AVFormatContext *s, int stream_index,
1041                          int64_t target_ts, int flags);
1042
1043 /**
1044  * Updates cur_dts of all streams based on the given timestamp and AVStream.
1045  *
1046  * Stream ref_st unchanged, others set cur_dts in their native time base.
1047  * Only needed for timestamp wrapping or if (dts not set and pts!=dts).
1048  * @param timestamp new dts expressed in time_base of param ref_st
1049  * @param ref_st reference stream giving time_base of param timestamp
1050  */
1051 void av_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp);
1052
1053 /**
1054  * Does a binary search using read_timestamp().
1055  * This is not supposed to be called directly by a user application,
1056  * but by demuxers.
1057  * @param target_ts target timestamp in the time base of the given stream
1058  * @param stream_index stream number
1059  */
1060 int64_t av_gen_search(AVFormatContext *s, int stream_index,
1061                       int64_t target_ts, int64_t pos_min,
1062                       int64_t pos_max, int64_t pos_limit,
1063                       int64_t ts_min, int64_t ts_max,
1064                       int flags, int64_t *ts_ret,
1065                       int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t ));
1066
1067 /** media file output */
1068 int av_set_parameters(AVFormatContext *s, AVFormatParameters *ap);
1069
1070 /**
1071  * Allocate the stream private data and write the stream header to an
1072  * output media file.
1073  *
1074  * @param s media file handle
1075  * @return 0 if OK, AVERROR_xxx on error
1076  */
1077 int av_write_header(AVFormatContext *s);
1078
1079 /**
1080  * Write a packet to an output media file.
1081  *
1082  * The packet shall contain one audio or video frame.
1083  * The packet must be correctly interleaved according to the container
1084  * specification, if not then av_interleaved_write_frame must be used.
1085  *
1086  * @param s media file handle
1087  * @param pkt The packet, which contains the stream_index, buf/buf_size,
1088               dts/pts, ...
1089  * @return < 0 on error, = 0 if OK, 1 if end of stream wanted
1090  */
1091 int av_write_frame(AVFormatContext *s, AVPacket *pkt);
1092
1093 /**
1094  * Writes a packet to an output media file ensuring correct interleaving.
1095  *
1096  * The packet must contain one audio or video frame.
1097  * If the packets are already correctly interleaved the application should
1098  * call av_write_frame() instead as it is slightly faster. It is also important
1099  * to keep in mind that completely non-interleaved input will need huge amounts
1100  * of memory to interleave with this, so it is preferable to interleave at the
1101  * demuxer level.
1102  *
1103  * @param s media file handle
1104  * @param pkt The packet, which contains the stream_index, buf/buf_size,
1105               dts/pts, ...
1106  * @return < 0 on error, = 0 if OK, 1 if end of stream wanted
1107  */
1108 int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt);
1109
1110 /**
1111  * Interleave a packet per dts in an output media file.
1112  *
1113  * Packets with pkt->destruct == av_destruct_packet will be freed inside this
1114  * function, so they cannot be used after it, note calling av_free_packet()
1115  * on them is still safe.
1116  *
1117  * @param s media file handle
1118  * @param out the interleaved packet will be output here
1119  * @param in the input packet
1120  * @param flush 1 if no further packets are available as input and all
1121  *              remaining packets should be output
1122  * @return 1 if a packet was output, 0 if no packet could be output,
1123  *         < 0 if an error occurred
1124  */
1125 int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
1126                                  AVPacket *pkt, int flush);
1127
1128 /**
1129  * @brief Write the stream trailer to an output media file and
1130  *        free the file private data.
1131  *
1132  * May only be called after a successful call to av_write_header.
1133  *
1134  * @param s media file handle
1135  * @return 0 if OK, AVERROR_xxx on error
1136  */
1137 int av_write_trailer(AVFormatContext *s);
1138
1139 void dump_format(AVFormatContext *ic,
1140                  int index,
1141                  const char *url,
1142                  int is_output);
1143
1144 #if LIBAVFORMAT_VERSION_MAJOR < 53
1145 /**
1146  * Parses width and height out of string str.
1147  * @deprecated Use av_parse_video_frame_size instead.
1148  */
1149 attribute_deprecated int parse_image_size(int *width_ptr, int *height_ptr,
1150                                           const char *str);
1151
1152 /**
1153  * Converts frame rate from string to a fraction.
1154  * @deprecated Use av_parse_video_frame_rate instead.
1155  */
1156 attribute_deprecated int parse_frame_rate(int *frame_rate, int *frame_rate_base,
1157                                           const char *arg);
1158 #endif
1159
1160 /**
1161  * Parses \p datestr and returns a corresponding number of microseconds.
1162  * @param datestr String representing a date or a duration.
1163  * - If a date the syntax is:
1164  * @code
1165  *  [{YYYY-MM-DD|YYYYMMDD}]{T| }{HH[:MM[:SS[.m...]]][Z]|HH[MM[SS[.m...]]][Z]}
1166  * @endcode
1167  * Time is local time unless Z is appended, in which case it is
1168  * interpreted as UTC.
1169  * If the year-month-day part is not specified it takes the current
1170  * year-month-day.
1171  * Returns the number of microseconds since 1st of January, 1970 up to
1172  * the time of the parsed date or INT64_MIN if \p datestr cannot be
1173  * successfully parsed.
1174  * - If a duration the syntax is:
1175  * @code
1176  *  [-]HH[:MM[:SS[.m...]]]
1177  *  [-]S+[.m...]
1178  * @endcode
1179  * Returns the number of microseconds contained in a time interval
1180  * with the specified duration or INT64_MIN if \p datestr cannot be
1181  * successfully parsed.
1182  * @param duration Flag which tells how to interpret \p datestr, if
1183  * not zero \p datestr is interpreted as a duration, otherwise as a
1184  * date.
1185  */
1186 int64_t parse_date(const char *datestr, int duration);
1187
1188 /** Gets the current time in microseconds. */
1189 int64_t av_gettime(void);
1190
1191 /* ffm-specific for ffserver */
1192 #define FFM_PACKET_SIZE 4096
1193 int64_t ffm_read_write_index(int fd);
1194 int ffm_write_write_index(int fd, int64_t pos);
1195 void ffm_set_write_index(AVFormatContext *s, int64_t pos, int64_t file_size);
1196
1197 /**
1198  * Attempts to find a specific tag in a URL.
1199  *
1200  * syntax: '?tag1=val1&tag2=val2...'. Little URL decoding is done.
1201  * Return 1 if found.
1202  */
1203 int find_info_tag(char *arg, int arg_size, const char *tag1, const char *info);
1204
1205 /**
1206  * Returns in 'buf' the path with '%d' replaced by number.
1207  *
1208  * Also handles the '%0nd' format where 'n' is the total number
1209  * of digits and '%%'.
1210  *
1211  * @param buf destination buffer
1212  * @param buf_size destination buffer size
1213  * @param path numbered sequence string
1214  * @param number frame number
1215  * @return 0 if OK, -1 on format error
1216  */
1217 int av_get_frame_filename(char *buf, int buf_size,
1218                           const char *path, int number);
1219
1220 /**
1221  * Check whether filename actually is a numbered sequence generator.
1222  *
1223  * @param filename possible numbered sequence string
1224  * @return 1 if a valid numbered sequence string, 0 otherwise
1225  */
1226 int av_filename_number_test(const char *filename);
1227
1228 /**
1229  * Generate an SDP for an RTP session.
1230  *
1231  * @param ac array of AVFormatContexts describing the RTP streams. If the
1232  *           array is composed by only one context, such context can contain
1233  *           multiple AVStreams (one AVStream per RTP stream). Otherwise,
1234  *           all the contexts in the array (an AVCodecContext per RTP stream)
1235  *           must contain only one AVStream.
1236  * @param n_files number of AVCodecContexts contained in ac
1237  * @param buff buffer where the SDP will be stored (must be allocated by
1238  *             the caller)
1239  * @param size the size of the buffer
1240  * @return 0 if OK, AVERROR_xxx on error
1241  */
1242 int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size);
1243
1244 #ifdef HAVE_AV_CONFIG_H
1245
1246 void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem);
1247
1248 #ifdef __GNUC__
1249 #define dynarray_add(tab, nb_ptr, elem)\
1250 do {\
1251     __typeof__(tab) _tab = (tab);\
1252     __typeof__(elem) _elem = (elem);\
1253     (void)sizeof(**_tab == _elem); /* check that types are compatible */\
1254     ff_dynarray_add((intptr_t **)_tab, nb_ptr, (intptr_t)_elem);\
1255 } while(0)
1256 #else
1257 #define dynarray_add(tab, nb_ptr, elem)\
1258 do {\
1259     ff_dynarray_add((intptr_t **)(tab), nb_ptr, (intptr_t)(elem));\
1260 } while(0)
1261 #endif
1262
1263 time_t mktimegm(struct tm *tm);
1264 struct tm *brktimegm(time_t secs, struct tm *tm);
1265 const char *small_strptime(const char *p, const char *fmt,
1266                            struct tm *dt);
1267
1268 struct in_addr;
1269 int resolve_host(struct in_addr *sin_addr, const char *hostname);
1270
1271 void url_split(char *proto, int proto_size,
1272                char *authorization, int authorization_size,
1273                char *hostname, int hostname_size,
1274                int *port_ptr,
1275                char *path, int path_size,
1276                const char *url);
1277
1278 int match_ext(const char *filename, const char *extensions);
1279
1280 #endif /* HAVE_AV_CONFIG_H */
1281
1282 #endif /* AVFORMAT_AVFORMAT_H */