]> git.sesse.net Git - ffmpeg/blob - libavformat/avformat.h
Merge commit 'a3a0af4fb1237bed0af75868073f9a63db8b1864'
[ffmpeg] / 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
25 /**
26  * I return the LIBAVFORMAT_VERSION_INT constant.  You got
27  * a fucking problem with that, douchebag?
28  */
29 unsigned avformat_version(void);
30
31 /**
32  * Return the libavformat build-time configuration.
33  */
34 const char *avformat_configuration(void);
35
36 /**
37  * Return the libavformat license.
38  */
39 const char *avformat_license(void);
40
41 #include <time.h>
42 #include <stdio.h>  /* FILE */
43 #include "libavcodec/avcodec.h"
44
45 #include "avio.h"
46 #include "libavformat/version.h"
47
48 struct AVFormatContext;
49
50
51 /*
52  * Public Metadata API.
53  * The metadata API allows libavformat to export metadata tags to a client
54  * application using a sequence of key/value pairs. Like all strings in FFmpeg,
55  * metadata must be stored as UTF-8 encoded Unicode. Note that metadata
56  * exported by demuxers isn't checked to be valid UTF-8 in most cases.
57  * Important concepts to keep in mind:
58  * 1. Keys are unique; there can never be 2 tags with the same key. This is
59  *    also meant semantically, i.e., a demuxer should not knowingly produce
60  *    several keys that are literally different but semantically identical.
61  *    E.g., key=Author5, key=Author6. In this example, all authors must be
62  *    placed in the same tag.
63  * 2. Metadata is flat, not hierarchical; there are no subtags. If you
64  *    want to store, e.g., the email address of the child of producer Alice
65  *    and actor Bob, that could have key=alice_and_bobs_childs_email_address.
66  * 3. Several modifiers can be applied to the tag name. This is done by
67  *    appending a dash character ('-') and the modifier name in the order
68  *    they appear in the list below -- e.g. foo-eng-sort, not foo-sort-eng.
69  *    a) language -- a tag whose value is localized for a particular language
70  *       is appended with the ISO 639-2/B 3-letter language code.
71  *       For example: Author-ger=Michael, Author-eng=Mike
72  *       The original/default language is in the unqualified "Author" tag.
73  *       A demuxer should set a default if it sets any translated tag.
74  *    b) sorting  -- a modified version of a tag that should be used for
75  *       sorting will have '-sort' appended. E.g. artist="The Beatles",
76  *       artist-sort="Beatles, The".
77  *
78  * 4. Demuxers attempt to export metadata in a generic format, however tags
79  *    with no generic equivalents are left as they are stored in the container.
80  *    Follows a list of generic tag names:
81  *
82  * album        -- name of the set this work belongs to
83  * album_artist -- main creator of the set/album, if different from artist.
84  *                 e.g. "Various Artists" for compilation albums.
85  * artist       -- main creator of the work
86  * comment      -- any additional description of the file.
87  * composer     -- who composed the work, if different from artist.
88  * copyright    -- name of copyright holder.
89  * creation_time-- date when the file was created, preferably in ISO 8601.
90  * date         -- date when the work was created, preferably in ISO 8601.
91  * disc         -- number of a subset, e.g. disc in a multi-disc collection.
92  * encoder      -- name/settings of the software/hardware that produced the file.
93  * encoded_by   -- person/group who created the file.
94  * filename     -- original name of the file.
95  * genre        -- <self-evident>.
96  * language     -- main language in which the work is performed, preferably
97  *                 in ISO 639-2 format. Multiple languages can be specified by
98  *                 separating them with commas.
99  * performer    -- artist who performed the work, if different from artist.
100  *                 E.g for "Also sprach Zarathustra", artist would be "Richard
101  *                 Strauss" and performer "London Philharmonic Orchestra".
102  * publisher    -- name of the label/publisher.
103  * service_name     -- name of the service in broadcasting (channel name).
104  * service_provider -- name of the service provider in broadcasting.
105  * title        -- name of the work.
106  * track        -- number of this work in the set, can be in form current/total.
107  */
108
109 #define AV_METADATA_MATCH_CASE      1
110 #define AV_METADATA_IGNORE_SUFFIX   2
111 #define AV_METADATA_DONT_STRDUP_KEY 4
112 #define AV_METADATA_DONT_STRDUP_VAL 8
113 #define AV_METADATA_DONT_OVERWRITE 16   ///< Don't overwrite existing tags.
114
115 typedef struct {
116     char *key;
117     char *value;
118 }AVMetadataTag;
119
120 typedef struct AVMetadata AVMetadata;
121 #if FF_API_OLD_METADATA2
122 typedef struct AVMetadataConv AVMetadataConv;
123 #endif
124
125 /**
126  * Get a metadata element with matching key.
127  *
128  * @param prev Set to the previous matching element to find the next.
129  *             If set to NULL the first matching element is returned.
130  * @param flags Allows case as well as suffix-insensitive comparisons.
131  * @return Found tag or NULL, changing key or value leads to undefined behavior.
132  */
133 AVMetadataTag *
134 av_metadata_get(AVMetadata *m, const char *key, const AVMetadataTag *prev, int flags);
135
136 #if FF_API_OLD_METADATA
137 /**
138  * Set the given tag in *pm, overwriting an existing tag.
139  *
140  * @param pm pointer to a pointer to a metadata struct. If *pm is NULL
141  * a metadata struct is allocated and put in *pm.
142  * @param key tag key to add to *pm (will be av_strduped)
143  * @param value tag value to add to *pm (will be av_strduped)
144  * @return >= 0 on success otherwise an error code <0
145  * @deprecated Use av_metadata_set2() instead.
146  */
147 attribute_deprecated int av_metadata_set(AVMetadata **pm, const char *key, const char *value);
148 #endif
149
150 /**
151  * Set the given tag in *pm, overwriting an existing tag.
152  *
153  * @param pm pointer to a pointer to a metadata struct. If *pm is NULL
154  * a metadata struct is allocated and put in *pm.
155  * @param key tag key to add to *pm (will be av_strduped depending on flags)
156  * @param value tag value to add to *pm (will be av_strduped depending on flags).
157  *        Passing a NULL value will cause an existing tag to be deleted.
158  * @return >= 0 on success otherwise an error code <0
159  */
160 int av_metadata_set2(AVMetadata **pm, const char *key, const char *value, int flags);
161
162 #if FF_API_OLD_METADATA2
163 /**
164  * This function is provided for compatibility reason and currently does nothing.
165  */
166 attribute_deprecated void av_metadata_conv(struct AVFormatContext *ctx, const AVMetadataConv *d_conv,
167                                                                         const AVMetadataConv *s_conv);
168 #endif
169
170 /**
171  * Copy metadata from one AVMetadata struct into another.
172  * @param dst pointer to a pointer to a AVMetadata struct. If *dst is NULL,
173  *            this function will allocate a struct for you and put it in *dst
174  * @param src pointer to source AVMetadata struct
175  * @param flags flags to use when setting metadata in *dst
176  * @note metadata is read using the AV_METADATA_IGNORE_SUFFIX flag
177  */
178 void av_metadata_copy(AVMetadata **dst, AVMetadata *src, int flags);
179
180 /**
181  * Free all the memory allocated for an AVMetadata struct.
182  */
183 void av_metadata_free(AVMetadata **m);
184
185
186 /* packet functions */
187
188
189 /**
190  * Allocate and read the payload of a packet and initialize its
191  * fields with default values.
192  *
193  * @param pkt packet
194  * @param size desired payload size
195  * @return >0 (read size) if OK, AVERROR_xxx otherwise
196  */
197 int av_get_packet(AVIOContext *s, AVPacket *pkt, int size);
198
199
200 /**
201  * Read data and append it to the current content of the AVPacket.
202  * If pkt->size is 0 this is identical to av_get_packet.
203  * Note that this uses av_grow_packet and thus involves a realloc
204  * which is inefficient. Thus this function should only be used
205  * when there is no reasonable way to know (an upper bound of)
206  * the final size.
207  *
208  * @param pkt packet
209  * @param size amount of data to read
210  * @return >0 (read size) if OK, AVERROR_xxx otherwise, previous data
211  *         will not be lost even if an error occurs.
212  */
213 int av_append_packet(AVIOContext *s, AVPacket *pkt, int size);
214
215 /*************************************************/
216 /* fractional numbers for exact pts handling */
217
218 /**
219  * The exact value of the fractional number is: 'val + num / den'.
220  * num is assumed to be 0 <= num < den.
221  */
222 typedef struct AVFrac {
223     int64_t val, num, den;
224 } AVFrac;
225
226 /*************************************************/
227 /* input/output formats */
228
229 struct AVCodecTag;
230
231 /**
232  * This structure contains the data a format has to probe a file.
233  */
234 typedef struct AVProbeData {
235     const char *filename;
236     unsigned char *buf; /**< Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero. */
237     int buf_size;       /**< Size of buf except extra allocated bytes */
238 } AVProbeData;
239
240 #define AVPROBE_SCORE_MAX 100               ///< maximum score, half of that is used for file-extension-based detection
241 #define AVPROBE_PADDING_SIZE 32             ///< extra allocated bytes at the end of the probe buffer
242
243 typedef struct AVFormatParameters {
244     AVRational time_base;
245     int sample_rate;
246     int channels;
247     int width;
248     int height;
249     enum PixelFormat pix_fmt;
250     int channel; /**< Used to select DV channel. */
251     const char *standard; /**< TV standard, NTSC, PAL, SECAM */
252     unsigned int mpeg2ts_raw:1;  /**< Force raw MPEG-2 transport stream output, if possible. */
253     unsigned int mpeg2ts_compute_pcr:1; /**< Compute exact PCR for each transport
254                                             stream packet (only meaningful if
255                                             mpeg2ts_raw is TRUE). */
256     unsigned int initial_pause:1;       /**< Do not begin to play the stream
257                                             immediately (RTSP only). */
258     unsigned int prealloced_context:1;
259 #if FF_API_PARAMETERS_CODEC_ID
260     attribute_deprecated enum CodecID video_codec_id;
261     attribute_deprecated enum CodecID audio_codec_id;
262 #endif
263 } AVFormatParameters;
264
265 //! Demuxer will use avio_open, no opened file should be provided by the caller.
266 #define AVFMT_NOFILE        0x0001
267 #define AVFMT_NEEDNUMBER    0x0002 /**< Needs '%d' in filename. */
268 #define AVFMT_SHOW_IDS      0x0008 /**< Show format stream IDs numbers. */
269 #define AVFMT_RAWPICTURE    0x0020 /**< Format wants AVPicture structure for
270                                       raw picture data. */
271 #define AVFMT_GLOBALHEADER  0x0040 /**< Format wants global header. */
272 #define AVFMT_NOTIMESTAMPS  0x0080 /**< Format does not need / have any timestamps. */
273 #define AVFMT_GENERIC_INDEX 0x0100 /**< Use generic index building code. */
274 #define AVFMT_TS_DISCONT    0x0200 /**< Format allows timestamp discontinuities. Note, muxers always require valid (monotone) timestamps */
275 #define AVFMT_VARIABLE_FPS  0x0400 /**< Format allows variable fps. */
276 #define AVFMT_NODIMENSIONS  0x0800 /**< Format does not need width/height */
277 #define AVFMT_NOSTREAMS     0x1000 /**< Format does not require any streams */
278
279 typedef struct AVOutputFormat {
280     const char *name;
281     /**
282      * Descriptive name for the format, meant to be more human-readable
283      * than name. You should use the NULL_IF_CONFIG_SMALL() macro
284      * to define it.
285      */
286     const char *long_name;
287     const char *mime_type;
288     const char *extensions; /**< comma-separated filename extensions */
289     /**
290      * size of private data so that it can be allocated in the wrapper
291      */
292     int priv_data_size;
293     /* output support */
294     enum CodecID audio_codec; /**< default audio codec */
295     enum CodecID video_codec; /**< default video codec */
296     int (*write_header)(struct AVFormatContext *);
297     int (*write_packet)(struct AVFormatContext *, AVPacket *pkt);
298     int (*write_trailer)(struct AVFormatContext *);
299     /**
300      * can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_RAWPICTURE,
301      * AVFMT_GLOBALHEADER, AVFMT_NOTIMESTAMPS, AVFMT_VARIABLE_FPS,
302      * AVFMT_NODIMENSIONS, AVFMT_NOSTREAMS
303      */
304     int flags;
305     /**
306      * Currently only used to set pixel format if not YUV420P.
307      */
308     int (*set_parameters)(struct AVFormatContext *, AVFormatParameters *);
309     int (*interleave_packet)(struct AVFormatContext *, AVPacket *out,
310                              AVPacket *in, int flush);
311
312     /**
313      * List of supported codec_id-codec_tag pairs, ordered by "better
314      * choice first". The arrays are all terminated by CODEC_ID_NONE.
315      */
316     const struct AVCodecTag * const *codec_tag;
317
318     enum CodecID subtitle_codec; /**< default subtitle codec */
319
320 #if FF_API_OLD_METADATA2
321     const AVMetadataConv *metadata_conv;
322 #endif
323
324     const AVClass *priv_class; ///< AVClass for the private context
325
326     /* private fields */
327     struct AVOutputFormat *next;
328 } AVOutputFormat;
329
330 typedef struct AVInputFormat {
331     /**
332      * A comma separated list of short names for the format. New names
333      * may be appended with a minor bump.
334      */
335     const char *name;
336
337     /**
338      * Descriptive name for the format, meant to be more human-readable
339      * than name. You should use the NULL_IF_CONFIG_SMALL() macro
340      * to define it.
341      */
342     const char *long_name;
343
344     /**
345      * Size of private data so that it can be allocated in the wrapper.
346      */
347     int priv_data_size;
348
349     /**
350      * Tell if a given file has a chance of being parsed as this format.
351      * The buffer provided is guaranteed to be AVPROBE_PADDING_SIZE bytes
352      * big so you do not have to check for that unless you need more.
353      */
354     int (*read_probe)(AVProbeData *);
355
356     /**
357      * Read the format header and initialize the AVFormatContext
358      * structure. Return 0 if OK. 'ap' if non-NULL contains
359      * additional parameters. Only used in raw format right
360      * now. 'av_new_stream' should be called to create new streams.
361      */
362     int (*read_header)(struct AVFormatContext *,
363                        AVFormatParameters *ap);
364
365     /**
366      * Read one packet and put it in 'pkt'. pts and flags are also
367      * set. 'av_new_stream' can be called only if the flag
368      * AVFMTCTX_NOHEADER is used and only in the calling thread (not in a
369      * background thread).
370      * @return 0 on success, < 0 on error.
371      *         When returning an error, pkt must not have been allocated
372      *         or must be freed before returning
373      */
374     int (*read_packet)(struct AVFormatContext *, AVPacket *pkt);
375
376     /**
377      * Close the stream. The AVFormatContext and AVStreams are not
378      * freed by this function
379      */
380     int (*read_close)(struct AVFormatContext *);
381
382 #if FF_API_READ_SEEK
383     /**
384      * Seek to a given timestamp relative to the frames in
385      * stream component stream_index.
386      * @param stream_index Must not be -1.
387      * @param flags Selects which direction should be preferred if no exact
388      *              match is available.
389      * @return >= 0 on success (but not necessarily the new offset)
390      */
391     attribute_deprecated int (*read_seek)(struct AVFormatContext *,
392                                           int stream_index, int64_t timestamp, int flags);
393 #endif
394     /**
395      * Gets the next timestamp in stream[stream_index].time_base units.
396      * @return the timestamp or AV_NOPTS_VALUE if an error occurred
397      */
398     int64_t (*read_timestamp)(struct AVFormatContext *s, int stream_index,
399                               int64_t *pos, int64_t pos_limit);
400
401     /**
402      * Can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER.
403      */
404     int flags;
405
406     /**
407      * If extensions are defined, then no probe is done. You should
408      * usually not use extension format guessing because it is not
409      * reliable enough
410      */
411     const char *extensions;
412
413     /**
414      * General purpose read-only value that the format can use.
415      */
416     int value;
417
418     /**
419      * Start/resume playing - only meaningful if using a network-based format
420      * (RTSP).
421      */
422     int (*read_play)(struct AVFormatContext *);
423
424     /**
425      * Pause playing - only meaningful if using a network-based format
426      * (RTSP).
427      */
428     int (*read_pause)(struct AVFormatContext *);
429
430     const struct AVCodecTag * const *codec_tag;
431
432     /**
433      * Seek to timestamp ts.
434      * Seeking will be done so that the point from which all active streams
435      * can be presented successfully will be closest to ts and within min/max_ts.
436      * Active streams are all streams that have AVStream.discard < AVDISCARD_ALL.
437      */
438     int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
439
440 #if FF_API_OLD_METADATA2
441     const AVMetadataConv *metadata_conv;
442 #endif
443
444     /* private fields */
445     struct AVInputFormat *next;
446 } AVInputFormat;
447
448 enum AVStreamParseType {
449     AVSTREAM_PARSE_NONE,
450     AVSTREAM_PARSE_FULL,       /**< full parsing and repack */
451     AVSTREAM_PARSE_HEADERS,    /**< Only parse headers, do not repack. */
452     AVSTREAM_PARSE_TIMESTAMPS, /**< full parsing and interpolation of timestamps for frames not starting on a packet boundary */
453     AVSTREAM_PARSE_FULL_ONCE,  /**< full parsing and repack of the first frame only, only implemented for H.264 currently */
454 };
455
456 typedef struct AVIndexEntry {
457     int64_t pos;
458     int64_t timestamp;
459 #define AVINDEX_KEYFRAME 0x0001
460     int flags:2;
461     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).
462     int min_distance;         /**< Minimum distance between this and the previous keyframe, used to avoid unneeded searching. */
463 } AVIndexEntry;
464
465 #define AV_DISPOSITION_DEFAULT   0x0001
466 #define AV_DISPOSITION_DUB       0x0002
467 #define AV_DISPOSITION_ORIGINAL  0x0004
468 #define AV_DISPOSITION_COMMENT   0x0008
469 #define AV_DISPOSITION_LYRICS    0x0010
470 #define AV_DISPOSITION_KARAOKE   0x0020
471
472 /**
473  * Track should be used during playback by default.
474  * Useful for subtitle track that should be displayed
475  * even when user did not explicitly ask for subtitles.
476  */
477 #define AV_DISPOSITION_FORCED    0x0040
478 #define AV_DISPOSITION_HEARING_IMPAIRED  0x0080  /**< stream for hearing impaired audiences */
479 #define AV_DISPOSITION_VISUAL_IMPAIRED   0x0100  /**< stream for visual impaired audiences */
480 #define AV_DISPOSITION_CLEAN_EFFECTS     0x0200  /**< stream without voice */
481
482 /**
483  * Stream structure.
484  * New fields can be added to the end with minor version bumps.
485  * Removal, reordering and changes to existing fields require a major
486  * version bump.
487  * sizeof(AVStream) must not be used outside libav*.
488  */
489 typedef struct AVStream {
490     int index;    /**< stream index in AVFormatContext */
491     int id;       /**< format-specific stream ID */
492     AVCodecContext *codec; /**< codec context */
493     /**
494      * Real base framerate of the stream.
495      * This is the lowest framerate with which all timestamps can be
496      * represented accurately (it is the least common multiple of all
497      * framerates in the stream). Note, this value is just a guess!
498      * For example, if the time base is 1/90000 and all frames have either
499      * approximately 3600 or 1800 timer ticks, then r_frame_rate will be 50/1.
500      */
501     AVRational r_frame_rate;
502     void *priv_data;
503
504     /* internal data used in av_find_stream_info() */
505     int64_t first_dts;
506
507     /**
508      * encoding: pts generation when outputting stream
509      */
510     struct AVFrac pts;
511
512     /**
513      * This is the fundamental unit of time (in seconds) in terms
514      * of which frame timestamps are represented. For fixed-fps content,
515      * time base should be 1/framerate and timestamp increments should be 1.
516      * decoding: set by libavformat
517      * encoding: set by libavformat in av_write_header
518      */
519     AVRational time_base;
520     int pts_wrap_bits; /**< number of bits in pts (used for wrapping control) */
521     /* ffmpeg.c private use */
522     int stream_copy; /**< If set, just copy stream. */
523     enum AVDiscard discard; ///< Selects which packets can be discarded at will and do not need to be demuxed.
524
525     //FIXME move stuff to a flags field?
526     /**
527      * Quality, as it has been removed from AVCodecContext and put in AVVideoFrame.
528      * MN: dunno if that is the right place for it
529      */
530     float quality;
531
532     /**
533      * Decoding: pts of the first frame of the stream, in stream time base.
534      * Only set this if you are absolutely 100% sure that the value you set
535      * it to really is the pts of the first frame.
536      * This may be undefined (AV_NOPTS_VALUE).
537      * @note The ASF header does NOT contain a correct start_time the ASF
538      * demuxer must NOT set this.
539      */
540     int64_t start_time;
541
542     /**
543      * Decoding: duration of the stream, in stream time base.
544      * If a source file does not specify a duration, but does specify
545      * a bitrate, this value will be estimated from bitrate and file size.
546      */
547     int64_t duration;
548
549 #if FF_API_OLD_METADATA
550     attribute_deprecated char language[4]; /**< ISO 639-2/B 3-letter language code (empty string if undefined) */
551 #endif
552
553     /* av_read_frame() support */
554     enum AVStreamParseType need_parsing;
555     struct AVCodecParserContext *parser;
556
557     int64_t cur_dts;
558     int last_IP_duration;
559     int64_t last_IP_pts;
560     /* av_seek_frame() support */
561     AVIndexEntry *index_entries; /**< Only used if the format does not
562                                     support seeking natively. */
563     int nb_index_entries;
564     unsigned int index_entries_allocated_size;
565
566     int64_t nb_frames;                 ///< number of frames in this stream if known or 0
567
568 #if FF_API_LAVF_UNUSED
569     attribute_deprecated int64_t unused[4+1];
570 #endif
571
572 #if FF_API_OLD_METADATA
573     attribute_deprecated char *filename; /**< source filename of the stream */
574 #endif
575
576     int disposition; /**< AV_DISPOSITION_* bit field */
577
578     AVProbeData probe_data;
579 #define MAX_REORDER_DELAY 16
580     int64_t pts_buffer[MAX_REORDER_DELAY+1];
581
582     /**
583      * sample aspect ratio (0 if unknown)
584      * - encoding: Set by user.
585      * - decoding: Set by libavformat.
586      */
587     AVRational sample_aspect_ratio;
588
589     AVMetadata *metadata;
590
591     /* Intended mostly for av_read_frame() support. Not supposed to be used by */
592     /* external applications; try to use something else if at all possible.    */
593     const uint8_t *cur_ptr;
594     int cur_len;
595     AVPacket cur_pkt;
596
597     // Timestamp generation support:
598     /**
599      * Timestamp corresponding to the last dts sync point.
600      *
601      * Initialized when AVCodecParserContext.dts_sync_point >= 0 and
602      * a DTS is received from the underlying container. Otherwise set to
603      * AV_NOPTS_VALUE by default.
604      */
605     int64_t reference_dts;
606
607     /**
608      * Number of packets to buffer for codec probing
609      * NOT PART OF PUBLIC API
610      */
611 #define MAX_PROBE_PACKETS 2500
612     int probe_packets;
613
614     /**
615      * last packet in packet_buffer for this stream when muxing.
616      * used internally, NOT PART OF PUBLIC API, dont read or write from outside of libav*
617      */
618     struct AVPacketList *last_in_packet_buffer;
619
620     /**
621      * Average framerate
622      */
623     AVRational avg_frame_rate;
624
625     /**
626      * Number of frames that have been demuxed during av_find_stream_info()
627      */
628     int codec_info_nb_frames;
629
630     /**
631      * Stream informations used internally by av_find_stream_info()
632      */
633 #define MAX_STD_TIMEBASES (60*12+5)
634     struct {
635         int64_t last_dts;
636         int64_t duration_gcd;
637         int duration_count;
638         double duration_error[MAX_STD_TIMEBASES];
639         int64_t codec_info_duration;
640     } *info;
641
642     /**
643      * flag to indicate that probing is requested
644      * NOT PART OF PUBLIC API
645      */
646     int request_probe;
647 } AVStream;
648
649 #define AV_PROGRAM_RUNNING 1
650
651 /**
652  * New fields can be added to the end with minor version bumps.
653  * Removal, reordering and changes to existing fields require a major
654  * version bump.
655  * sizeof(AVProgram) must not be used outside libav*.
656  */
657 typedef struct AVProgram {
658     int            id;
659 #if FF_API_OLD_METADATA
660     attribute_deprecated char           *provider_name; ///< network name for DVB streams
661     attribute_deprecated char           *name;          ///< service name for DVB streams
662 #endif
663     int            flags;
664     enum AVDiscard discard;        ///< selects which program to discard and which to feed to the caller
665     unsigned int   *stream_index;
666     unsigned int   nb_stream_indexes;
667     AVMetadata *metadata;
668 } AVProgram;
669
670 #define AVFMTCTX_NOHEADER      0x0001 /**< signal that no header is present
671                                          (streams are added dynamically) */
672
673 typedef struct AVChapter {
674     int id;                 ///< unique ID to identify the chapter
675     AVRational time_base;   ///< time base in which the start/end timestamps are specified
676     int64_t start, end;     ///< chapter start/end time in time_base units
677 #if FF_API_OLD_METADATA
678     attribute_deprecated char *title;            ///< chapter title
679 #endif
680     AVMetadata *metadata;
681 } AVChapter;
682
683 #if FF_API_MAX_STREAMS
684 #define MAX_STREAMS 20
685 #endif
686
687 /**
688  * Format I/O context.
689  * New fields can be added to the end with minor version bumps.
690  * Removal, reordering and changes to existing fields require a major
691  * version bump.
692  * sizeof(AVFormatContext) must not be used outside libav*.
693  */
694 typedef struct AVFormatContext {
695     const AVClass *av_class; /**< Set by avformat_alloc_context. */
696     /* Can only be iformat or oformat, not both at the same time. */
697     struct AVInputFormat *iformat;
698     struct AVOutputFormat *oformat;
699     void *priv_data;
700     AVIOContext *pb;
701     unsigned int nb_streams;
702 #if FF_API_MAX_STREAMS
703     AVStream *streams[MAX_STREAMS];
704 #else
705     AVStream **streams;
706 #endif
707     char filename[1024]; /**< input or output filename */
708     /* stream info */
709     int64_t timestamp;
710 #if FF_API_OLD_METADATA
711     attribute_deprecated char title[512];
712     attribute_deprecated char author[512];
713     attribute_deprecated char copyright[512];
714     attribute_deprecated char comment[512];
715     attribute_deprecated char album[512];
716     attribute_deprecated int year;  /**< ID3 year, 0 if none */
717     attribute_deprecated int track; /**< track number, 0 if none */
718     attribute_deprecated char genre[32]; /**< ID3 genre */
719 #endif
720
721     int ctx_flags; /**< Format-specific flags, see AVFMTCTX_xx */
722     /* private data for pts handling (do not modify directly). */
723     /**
724      * This buffer is only needed when packets were already buffered but
725      * not decoded, for example to get the codec parameters in MPEG
726      * streams.
727      */
728     struct AVPacketList *packet_buffer;
729
730     /**
731      * Decoding: position of the first frame of the component, in
732      * AV_TIME_BASE fractional seconds. NEVER set this value directly:
733      * It is deduced from the AVStream values.
734      */
735     int64_t start_time;
736
737     /**
738      * Decoding: duration of the stream, in AV_TIME_BASE fractional
739      * seconds. Only set this value if you know none of the individual stream
740      * durations and also dont set any of them. This is deduced from the
741      * AVStream values if not set.
742      */
743     int64_t duration;
744
745     /**
746      * decoding: total file size, 0 if unknown
747      */
748     int64_t file_size;
749
750     /**
751      * Decoding: total stream bitrate in bit/s, 0 if not
752      * available. Never set it directly if the file_size and the
753      * duration are known as FFmpeg can compute it automatically.
754      */
755     int bit_rate;
756
757     /* av_read_frame() support */
758     AVStream *cur_st;
759 #if FF_API_LAVF_UNUSED
760     const uint8_t *cur_ptr_deprecated;
761     int cur_len_deprecated;
762     AVPacket cur_pkt_deprecated;
763 #endif
764
765     /* av_seek_frame() support */
766     int64_t data_offset; /**< offset of the first packet */
767 #if FF_API_INDEX_BUILT
768     attribute_deprecated int index_built;
769 #endif
770
771     int mux_rate;
772     unsigned int packet_size;
773     int preload;
774     int max_delay;
775
776 #define AVFMT_NOOUTPUTLOOP -1
777 #define AVFMT_INFINITEOUTPUTLOOP 0
778     /**
779      * number of times to loop output in formats that support it
780      */
781     int loop_output;
782
783     int flags;
784 #define AVFMT_FLAG_GENPTS       0x0001 ///< Generate missing pts even if it requires parsing future frames.
785 #define AVFMT_FLAG_IGNIDX       0x0002 ///< Ignore index.
786 #define AVFMT_FLAG_NONBLOCK     0x0004 ///< Do not block when reading packets from input.
787 #define AVFMT_FLAG_IGNDTS       0x0008 ///< Ignore DTS on frames that contain both DTS & PTS
788 #define AVFMT_FLAG_NOFILLIN     0x0010 ///< Do not infer any values from other values, just return what is stored in the container
789 #define AVFMT_FLAG_NOPARSE      0x0020 ///< Do not use AVParsers, you also must set AVFMT_FLAG_NOFILLIN as the fillin code works on frames and no parsing -> no frames. Also seeking to frames can not work if parsing to find frame boundaries has been disabled
790 #define AVFMT_FLAG_RTP_HINT     0x0040 ///< Add RTP hinting to the output file
791
792     int loop_input;
793
794     /**
795      * decoding: size of data to probe; encoding: unused.
796      */
797     unsigned int probesize;
798
799     /**
800      * Maximum time (in AV_TIME_BASE units) during which the input should
801      * be analyzed in av_find_stream_info().
802      */
803     int max_analyze_duration;
804
805     const uint8_t *key;
806     int keylen;
807
808     unsigned int nb_programs;
809     AVProgram **programs;
810
811     /**
812      * Forced video codec_id.
813      * Demuxing: Set by user.
814      */
815     enum CodecID video_codec_id;
816
817     /**
818      * Forced audio codec_id.
819      * Demuxing: Set by user.
820      */
821     enum CodecID audio_codec_id;
822
823     /**
824      * Forced subtitle codec_id.
825      * Demuxing: Set by user.
826      */
827     enum CodecID subtitle_codec_id;
828
829     /**
830      * Maximum amount of memory in bytes to use for the index of each stream.
831      * If the index exceeds this size, entries will be discarded as
832      * needed to maintain a smaller size. This can lead to slower or less
833      * accurate seeking (depends on demuxer).
834      * Demuxers for which a full in-memory index is mandatory will ignore
835      * this.
836      * muxing  : unused
837      * demuxing: set by user
838      */
839     unsigned int max_index_size;
840
841     /**
842      * Maximum amount of memory in bytes to use for buffering frames
843      * obtained from realtime capture devices.
844      */
845     unsigned int max_picture_buffer;
846
847     unsigned int nb_chapters;
848     AVChapter **chapters;
849
850     /**
851      * Flags to enable debugging.
852      */
853     int debug;
854 #define FF_FDEBUG_TS        0x0001
855
856     /**
857      * Raw packets from the demuxer, prior to parsing and decoding.
858      * This buffer is used for buffering packets until the codec can
859      * be identified, as parsing cannot be done without knowing the
860      * codec.
861      */
862     struct AVPacketList *raw_packet_buffer;
863     struct AVPacketList *raw_packet_buffer_end;
864
865     struct AVPacketList *packet_buffer_end;
866
867     AVMetadata *metadata;
868
869     /**
870      * Remaining size available for raw_packet_buffer, in bytes.
871      * NOT PART OF PUBLIC API
872      */
873 #define RAW_PACKET_BUFFER_SIZE 2500000
874     int raw_packet_buffer_remaining_size;
875
876     /**
877      * Start time of the stream in real world time, in microseconds
878      * since the unix epoch (00:00 1st January 1970). That is, pts=0
879      * in the stream was captured at this real world time.
880      * - encoding: Set by user.
881      * - decoding: Unused.
882      */
883     int64_t start_time_realtime;
884 } AVFormatContext;
885
886 typedef struct AVPacketList {
887     AVPacket pkt;
888     struct AVPacketList *next;
889 } AVPacketList;
890
891 #if FF_API_FIRST_FORMAT
892 attribute_deprecated extern AVInputFormat *first_iformat;
893 attribute_deprecated extern AVOutputFormat *first_oformat;
894 #endif
895
896 /**
897  * If f is NULL, returns the first registered input format,
898  * if f is non-NULL, returns the next registered input format after f
899  * or NULL if f is the last one.
900  */
901 AVInputFormat  *av_iformat_next(AVInputFormat  *f);
902
903 /**
904  * If f is NULL, returns the first registered output format,
905  * if f is non-NULL, returns the next registered output format after f
906  * or NULL if f is the last one.
907  */
908 AVOutputFormat *av_oformat_next(AVOutputFormat *f);
909
910 #if FF_API_GUESS_IMG2_CODEC
911 attribute_deprecated enum CodecID av_guess_image2_codec(const char *filename);
912 #endif
913
914 /* XXX: Use automatic init with either ELF sections or C file parser */
915 /* modules. */
916
917 /* utils.c */
918 void av_register_input_format(AVInputFormat *format);
919 void av_register_output_format(AVOutputFormat *format);
920 #if FF_API_GUESS_FORMAT
921 attribute_deprecated AVOutputFormat *guess_stream_format(const char *short_name,
922                                     const char *filename,
923                                     const char *mime_type);
924
925 /**
926  * @deprecated Use av_guess_format() instead.
927  */
928 attribute_deprecated AVOutputFormat *guess_format(const char *short_name,
929                                                   const char *filename,
930                                                   const char *mime_type);
931 #endif
932
933 /**
934  * Return the output format in the list of registered output formats
935  * which best matches the provided parameters, or return NULL if
936  * there is no match.
937  *
938  * @param short_name if non-NULL checks if short_name matches with the
939  * names of the registered formats
940  * @param filename if non-NULL checks if filename terminates with the
941  * extensions of the registered formats
942  * @param mime_type if non-NULL checks if mime_type matches with the
943  * MIME type of the registered formats
944  */
945 AVOutputFormat *av_guess_format(const char *short_name,
946                                 const char *filename,
947                                 const char *mime_type);
948
949 /**
950  * Guess the codec ID based upon muxer and filename.
951  */
952 enum CodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name,
953                             const char *filename, const char *mime_type,
954                             enum AVMediaType type);
955
956 /**
957  * Send a nice hexadecimal dump of a buffer to the specified file stream.
958  *
959  * @param f The file stream pointer where the dump should be sent to.
960  * @param buf buffer
961  * @param size buffer size
962  *
963  * @see av_hex_dump_log, av_pkt_dump2, av_pkt_dump_log2
964  */
965 void av_hex_dump(FILE *f, uint8_t *buf, int size);
966
967 /**
968  * Send a nice hexadecimal dump of a buffer to the log.
969  *
970  * @param avcl A pointer to an arbitrary struct of which the first field is a
971  * pointer to an AVClass struct.
972  * @param level The importance level of the message, lower values signifying
973  * higher importance.
974  * @param buf buffer
975  * @param size buffer size
976  *
977  * @see av_hex_dump, av_pkt_dump2, av_pkt_dump_log2
978  */
979 void av_hex_dump_log(void *avcl, int level, uint8_t *buf, int size);
980
981 /**
982  * Send a nice dump of a packet to the specified file stream.
983  *
984  * @param f The file stream pointer where the dump should be sent to.
985  * @param pkt packet to dump
986  * @param dump_payload True if the payload must be displayed, too.
987  * @param st AVStream that the packet belongs to
988  */
989 void av_pkt_dump2(FILE *f, AVPacket *pkt, int dump_payload, AVStream *st);
990
991
992 /**
993  * Send a nice dump of a packet to the log.
994  *
995  * @param avcl A pointer to an arbitrary struct of which the first field is a
996  * pointer to an AVClass struct.
997  * @param level The importance level of the message, lower values signifying
998  * higher importance.
999  * @param pkt packet to dump
1000  * @param dump_payload True if the payload must be displayed, too.
1001  * @param st AVStream that the packet belongs to
1002  */
1003 void av_pkt_dump_log2(void *avcl, int level, AVPacket *pkt, int dump_payload,
1004                       AVStream *st);
1005
1006 #if FF_API_PKT_DUMP
1007 attribute_deprecated void av_pkt_dump(FILE *f, AVPacket *pkt, int dump_payload);
1008 attribute_deprecated void av_pkt_dump_log(void *avcl, int level, AVPacket *pkt,
1009                                           int dump_payload);
1010 #endif
1011
1012 /**
1013  * Initialize libavformat and register all the muxers, demuxers and
1014  * protocols. If you do not call this function, then you can select
1015  * exactly which formats you want to support.
1016  *
1017  * @see av_register_input_format()
1018  * @see av_register_output_format()
1019  * @see av_register_protocol()
1020  */
1021 void av_register_all(void);
1022
1023 /**
1024  * Get the CodecID for the given codec tag tag.
1025  * If no codec id is found returns CODEC_ID_NONE.
1026  *
1027  * @param tags list of supported codec_id-codec_tag pairs, as stored
1028  * in AVInputFormat.codec_tag and AVOutputFormat.codec_tag
1029  */
1030 enum CodecID av_codec_get_id(const struct AVCodecTag * const *tags, unsigned int tag);
1031
1032 /**
1033  * Get the codec tag for the given codec id id.
1034  * If no codec tag is found returns 0.
1035  *
1036  * @param tags list of supported codec_id-codec_tag pairs, as stored
1037  * in AVInputFormat.codec_tag and AVOutputFormat.codec_tag
1038  */
1039 unsigned int av_codec_get_tag(const struct AVCodecTag * const *tags, enum CodecID id);
1040
1041 /* media file input */
1042
1043 /**
1044  * Find AVInputFormat based on the short name of the input format.
1045  */
1046 AVInputFormat *av_find_input_format(const char *short_name);
1047
1048 /**
1049  * Guess the file format.
1050  *
1051  * @param is_opened Whether the file is already opened; determines whether
1052  *                  demuxers with or without AVFMT_NOFILE are probed.
1053  */
1054 AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened);
1055
1056 /**
1057  * Guess the file format.
1058  *
1059  * @param is_opened Whether the file is already opened; determines whether
1060  *                  demuxers with or without AVFMT_NOFILE are probed.
1061  * @param score_max A probe score larger that this is required to accept a
1062  *                  detection, the variable is set to the actual detection
1063  *                  score afterwards.
1064  *                  If the score is <= AVPROBE_SCORE_MAX / 4 it is recommended
1065  *                  to retry with a larger probe buffer.
1066  */
1067 AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max);
1068
1069 /**
1070  * Guess the file format.
1071  *
1072  * @param is_opened Whether the file is already opened; determines whether
1073  *                  demuxers with or without AVFMT_NOFILE are probed.
1074  * @param score_ret The score of the best detection.
1075  */
1076 AVInputFormat *av_probe_input_format3(AVProbeData *pd, int is_opened, int *score_ret);
1077
1078 /**
1079  * Probe a bytestream to determine the input format. Each time a probe returns
1080  * with a score that is too low, the probe buffer size is increased and another
1081  * attempt is made. When the maximum probe size is reached, the input format
1082  * with the highest score is returned.
1083  *
1084  * @param pb the bytestream to probe
1085  * @param fmt the input format is put here
1086  * @param filename the filename of the stream
1087  * @param logctx the log context
1088  * @param offset the offset within the bytestream to probe from
1089  * @param max_probe_size the maximum probe buffer size (zero for default)
1090  * @return 0 in case of success, a negative value corresponding to an
1091  * AVERROR code otherwise
1092  */
1093 int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt,
1094                           const char *filename, void *logctx,
1095                           unsigned int offset, unsigned int max_probe_size);
1096
1097 /**
1098  * Allocate all the structures needed to read an input stream.
1099  *        This does not open the needed codecs for decoding the stream[s].
1100  */
1101 int av_open_input_stream(AVFormatContext **ic_ptr,
1102                          AVIOContext *pb, const char *filename,
1103                          AVInputFormat *fmt, AVFormatParameters *ap);
1104
1105 /**
1106  * Open a media file as input. The codecs are not opened. Only the file
1107  * header (if present) is read.
1108  *
1109  * @param ic_ptr The opened media file handle is put here.
1110  * @param filename filename to open
1111  * @param fmt If non-NULL, force the file format to use.
1112  * @param buf_size optional buffer size (zero if default is OK)
1113  * @param ap Additional parameters needed when opening the file
1114  *           (NULL if default).
1115  * @return 0 if OK, AVERROR_xxx otherwise
1116  */
1117 int av_open_input_file(AVFormatContext **ic_ptr, const char *filename,
1118                        AVInputFormat *fmt,
1119                        int buf_size,
1120                        AVFormatParameters *ap);
1121
1122 #if FF_API_ALLOC_FORMAT_CONTEXT
1123 /**
1124  * @deprecated Use avformat_alloc_context() instead.
1125  */
1126 attribute_deprecated AVFormatContext *av_alloc_format_context(void);
1127 #endif
1128
1129 /**
1130  * Allocate an AVFormatContext.
1131  * avformat_free_context() can be used to free the context and everything
1132  * allocated by the framework within it.
1133  */
1134 AVFormatContext *avformat_alloc_context(void);
1135
1136 /**
1137  * Read packets of a media file to get stream information. This
1138  * is useful for file formats with no headers such as MPEG. This
1139  * function also computes the real framerate in case of MPEG-2 repeat
1140  * frame mode.
1141  * The logical file position is not changed by this function;
1142  * examined packets may be buffered for later processing.
1143  *
1144  * @param ic media file handle
1145  * @return >=0 if OK, AVERROR_xxx on error
1146  * @todo Let the user decide somehow what information is needed so that
1147  *       we do not waste time getting stuff the user does not need.
1148  */
1149 int av_find_stream_info(AVFormatContext *ic);
1150
1151 /**
1152  * Find the "best" stream in the file.
1153  * The best stream is determined according to various heuristics as the most
1154  * likely to be what the user expects.
1155  * If the decoder parameter is non-NULL, av_find_best_stream will find the
1156  * default decoder for the stream's codec; streams for which no decoder can
1157  * be found are ignored.
1158  *
1159  * @param ic                media file handle
1160  * @param type              stream type: video, audio, subtitles, etc.
1161  * @param wanted_stream_nb  user-requested stream number,
1162  *                          or -1 for automatic selection
1163  * @param related_stream    try to find a stream related (eg. in the same
1164  *                          program) to this one, or -1 if none
1165  * @param decoder_ret       if non-NULL, returns the decoder for the
1166  *                          selected stream
1167  * @param flags             flags; none are currently defined
1168  * @return  the non-negative stream number in case of success,
1169  *          AVERROR_STREAM_NOT_FOUND if no stream with the requested type
1170  *          could be found,
1171  *          AVERROR_DECODER_NOT_FOUND if streams were found but no decoder
1172  * @note  If av_find_best_stream returns successfully and decoder_ret is not
1173  *        NULL, then *decoder_ret is guaranteed to be set to a valid AVCodec.
1174  */
1175 int av_find_best_stream(AVFormatContext *ic,
1176                         enum AVMediaType type,
1177                         int wanted_stream_nb,
1178                         int related_stream,
1179                         AVCodec **decoder_ret,
1180                         int flags);
1181
1182 /**
1183  * Read a transport packet from a media file.
1184  *
1185  * This function is obsolete and should never be used.
1186  * Use av_read_frame() instead.
1187  *
1188  * @param s media file handle
1189  * @param pkt is filled
1190  * @return 0 if OK, AVERROR_xxx on error
1191  */
1192 int av_read_packet(AVFormatContext *s, AVPacket *pkt);
1193
1194 /**
1195  * Return the next frame of a stream.
1196  * This function returns what is stored in the file, and does not validate
1197  * that what is there are valid frames for the decoder. It will split what is
1198  * stored in the file into frames and return one for each call. It will not
1199  * omit invalid data between valid frames so as to give the decoder the maximum
1200  * information possible for decoding.
1201  *
1202  * The returned packet is valid
1203  * until the next av_read_frame() or until av_close_input_file() and
1204  * must be freed with av_free_packet. For video, the packet contains
1205  * exactly one frame. For audio, it contains an integer number of
1206  * frames if each frame has a known fixed size (e.g. PCM or ADPCM
1207  * data). If the audio frames have a variable size (e.g. MPEG audio),
1208  * then it contains one frame.
1209  *
1210  * pkt->pts, pkt->dts and pkt->duration are always set to correct
1211  * values in AVStream.time_base units (and guessed if the format cannot
1212  * provide them). pkt->pts can be AV_NOPTS_VALUE if the video format
1213  * has B-frames, so it is better to rely on pkt->dts if you do not
1214  * decompress the payload.
1215  *
1216  * @return 0 if OK, < 0 on error or end of file
1217  */
1218 int av_read_frame(AVFormatContext *s, AVPacket *pkt);
1219
1220 /**
1221  * Seek to the keyframe at timestamp.
1222  * 'timestamp' in 'stream_index'.
1223  * @param stream_index If stream_index is (-1), a default
1224  * stream is selected, and timestamp is automatically converted
1225  * from AV_TIME_BASE units to the stream specific time_base.
1226  * @param timestamp Timestamp in AVStream.time_base units
1227  *        or, if no stream is specified, in AV_TIME_BASE units.
1228  * @param flags flags which select direction and seeking mode
1229  * @return >= 0 on success
1230  */
1231 int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp,
1232                   int flags);
1233
1234 /**
1235  * Seek to timestamp ts.
1236  * Seeking will be done so that the point from which all active streams
1237  * can be presented successfully will be closest to ts and within min/max_ts.
1238  * Active streams are all streams that have AVStream.discard < AVDISCARD_ALL.
1239  *
1240  * If flags contain AVSEEK_FLAG_BYTE, then all timestamps are in bytes and
1241  * are the file position (this may not be supported by all demuxers).
1242  * If flags contain AVSEEK_FLAG_FRAME, then all timestamps are in frames
1243  * in the stream with stream_index (this may not be supported by all demuxers).
1244  * Otherwise all timestamps are in units of the stream selected by stream_index
1245  * or if stream_index is -1, in AV_TIME_BASE units.
1246  * If flags contain AVSEEK_FLAG_ANY, then non-keyframes are treated as
1247  * keyframes (this may not be supported by all demuxers).
1248  *
1249  * @param stream_index index of the stream which is used as time base reference
1250  * @param min_ts smallest acceptable timestamp
1251  * @param ts target timestamp
1252  * @param max_ts largest acceptable timestamp
1253  * @param flags flags
1254  * @return >=0 on success, error code otherwise
1255  *
1256  * @note This is part of the new seek API which is still under construction.
1257  *       Thus do not use this yet. It may change at any time, do not expect
1258  *       ABI compatibility yet!
1259  */
1260 int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
1261
1262 /**
1263  * Start playing a network-based stream (e.g. RTSP stream) at the
1264  * current position.
1265  */
1266 int av_read_play(AVFormatContext *s);
1267
1268 /**
1269  * Pause a network-based stream (e.g. RTSP stream).
1270  *
1271  * Use av_read_play() to resume it.
1272  */
1273 int av_read_pause(AVFormatContext *s);
1274
1275 /**
1276  * Free a AVFormatContext allocated by av_open_input_stream.
1277  * @param s context to free
1278  */
1279 void av_close_input_stream(AVFormatContext *s);
1280
1281 /**
1282  * Close a media file (but not its codecs).
1283  *
1284  * @param s media file handle
1285  */
1286 void av_close_input_file(AVFormatContext *s);
1287
1288 /**
1289  * Free an AVFormatContext and all its streams.
1290  * @param s context to free
1291  */
1292 void avformat_free_context(AVFormatContext *s);
1293
1294 /**
1295  * Add a new stream to a media file.
1296  *
1297  * Can only be called in the read_header() function. If the flag
1298  * AVFMTCTX_NOHEADER is in the format context, then new streams
1299  * can be added in read_packet too.
1300  *
1301  * @param s media file handle
1302  * @param id file-format-dependent stream ID
1303  */
1304 AVStream *av_new_stream(AVFormatContext *s, int id);
1305 AVProgram *av_new_program(AVFormatContext *s, int id);
1306
1307 /**
1308  * Set the pts for a given stream. If the new values would be invalid
1309  * (<= 0), it leaves the AVStream unchanged.
1310  *
1311  * @param s stream
1312  * @param pts_wrap_bits number of bits effectively used by the pts
1313  *        (used for wrap control, 33 is the value for MPEG)
1314  * @param pts_num numerator to convert to seconds (MPEG: 1)
1315  * @param pts_den denominator to convert to seconds (MPEG: 90000)
1316  */
1317 void av_set_pts_info(AVStream *s, int pts_wrap_bits,
1318                      unsigned int pts_num, unsigned int pts_den);
1319
1320 #define AVSEEK_FLAG_BACKWARD 1 ///< seek backward
1321 #define AVSEEK_FLAG_BYTE     2 ///< seeking based on position in bytes
1322 #define AVSEEK_FLAG_ANY      4 ///< seek to any frame, even non-keyframes
1323 #define AVSEEK_FLAG_FRAME    8 ///< seeking based on frame number
1324
1325 int av_find_default_stream_index(AVFormatContext *s);
1326
1327 /**
1328  * Get the index for a specific timestamp.
1329  * @param flags if AVSEEK_FLAG_BACKWARD then the returned index will correspond
1330  *                 to the timestamp which is <= the requested one, if backward
1331  *                 is 0, then it will be >=
1332  *              if AVSEEK_FLAG_ANY seek to any frame, only keyframes otherwise
1333  * @return < 0 if no such timestamp could be found
1334  */
1335 int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags);
1336
1337 /**
1338  * Add an index entry into a sorted list. Update the entry if the list
1339  * already contains it.
1340  *
1341  * @param timestamp timestamp in the time base of the given stream
1342  */
1343 int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp,
1344                        int size, int distance, int flags);
1345
1346 /**
1347  * Perform a binary search using av_index_search_timestamp() and
1348  * AVInputFormat.read_timestamp().
1349  * This is not supposed to be called directly by a user application,
1350  * but by demuxers.
1351  * @param target_ts target timestamp in the time base of the given stream
1352  * @param stream_index stream number
1353  */
1354 int av_seek_frame_binary(AVFormatContext *s, int stream_index,
1355                          int64_t target_ts, int flags);
1356
1357 /**
1358  * Update cur_dts of all streams based on the given timestamp and AVStream.
1359  *
1360  * Stream ref_st unchanged, others set cur_dts in their native time base.
1361  * Only needed for timestamp wrapping or if (dts not set and pts!=dts).
1362  * @param timestamp new dts expressed in time_base of param ref_st
1363  * @param ref_st reference stream giving time_base of param timestamp
1364  */
1365 void av_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp);
1366
1367 /**
1368  * Perform a binary search using read_timestamp().
1369  * This is not supposed to be called directly by a user application,
1370  * but by demuxers.
1371  * @param target_ts target timestamp in the time base of the given stream
1372  * @param stream_index stream number
1373  */
1374 int64_t av_gen_search(AVFormatContext *s, int stream_index,
1375                       int64_t target_ts, int64_t pos_min,
1376                       int64_t pos_max, int64_t pos_limit,
1377                       int64_t ts_min, int64_t ts_max,
1378                       int flags, int64_t *ts_ret,
1379                       int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t ));
1380
1381 /**
1382  * media file output
1383  */
1384 int av_set_parameters(AVFormatContext *s, AVFormatParameters *ap);
1385
1386 /**
1387  * Split a URL string into components.
1388  *
1389  * The pointers to buffers for storing individual components may be null,
1390  * in order to ignore that component. Buffers for components not found are
1391  * set to empty strings. If the port is not found, it is set to a negative
1392  * value.
1393  *
1394  * @param proto the buffer for the protocol
1395  * @param proto_size the size of the proto buffer
1396  * @param authorization the buffer for the authorization
1397  * @param authorization_size the size of the authorization buffer
1398  * @param hostname the buffer for the host name
1399  * @param hostname_size the size of the hostname buffer
1400  * @param port_ptr a pointer to store the port number in
1401  * @param path the buffer for the path
1402  * @param path_size the size of the path buffer
1403  * @param url the URL to split
1404  */
1405 void av_url_split(char *proto,         int proto_size,
1406                   char *authorization, int authorization_size,
1407                   char *hostname,      int hostname_size,
1408                   int *port_ptr,
1409                   char *path,          int path_size,
1410                   const char *url);
1411
1412 /**
1413  * Allocate the stream private data and write the stream header to an
1414  * output media file.
1415  * @note: this sets stream time-bases, if possible to stream->codec->time_base
1416  * but for some formats it might also be some other time base
1417  *
1418  * @param s media file handle
1419  * @return 0 if OK, AVERROR_xxx on error
1420  */
1421 int av_write_header(AVFormatContext *s);
1422
1423 /**
1424  * Write a packet to an output media file.
1425  *
1426  * The packet shall contain one audio or video frame.
1427  * The packet must be correctly interleaved according to the container
1428  * specification, if not then av_interleaved_write_frame must be used.
1429  *
1430  * @param s media file handle
1431  * @param pkt The packet, which contains the stream_index, buf/buf_size,
1432               dts/pts, ...
1433  * @return < 0 on error, = 0 if OK, 1 if end of stream wanted
1434  */
1435 int av_write_frame(AVFormatContext *s, AVPacket *pkt);
1436
1437 /**
1438  * Write a packet to an output media file ensuring correct interleaving.
1439  *
1440  * The packet must contain one audio or video frame.
1441  * If the packets are already correctly interleaved, the application should
1442  * call av_write_frame() instead as it is slightly faster. It is also important
1443  * to keep in mind that completely non-interleaved input will need huge amounts
1444  * of memory to interleave with this, so it is preferable to interleave at the
1445  * demuxer level.
1446  *
1447  * @param s media file handle
1448  * @param pkt The packet, which contains the stream_index, buf/buf_size,
1449               dts/pts, ...
1450  * @return < 0 on error, = 0 if OK, 1 if end of stream wanted
1451  */
1452 int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt);
1453
1454 /**
1455  * Interleave a packet per dts in an output media file.
1456  *
1457  * Packets with pkt->destruct == av_destruct_packet will be freed inside this
1458  * function, so they cannot be used after it. Note that calling av_free_packet()
1459  * on them is still safe.
1460  *
1461  * @param s media file handle
1462  * @param out the interleaved packet will be output here
1463  * @param pkt the input packet
1464  * @param flush 1 if no further packets are available as input and all
1465  *              remaining packets should be output
1466  * @return 1 if a packet was output, 0 if no packet could be output,
1467  *         < 0 if an error occurred
1468  */
1469 int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
1470                                  AVPacket *pkt, int flush);
1471
1472 /**
1473  * Write the stream trailer to an output media file and free the
1474  * file private data.
1475  *
1476  * May only be called after a successful call to av_write_header.
1477  *
1478  * @param s media file handle
1479  * @return 0 if OK, AVERROR_xxx on error
1480  */
1481 int av_write_trailer(AVFormatContext *s);
1482
1483 #if FF_API_DUMP_FORMAT
1484 attribute_deprecated void dump_format(AVFormatContext *ic,
1485                                       int index,
1486                                       const char *url,
1487                                       int is_output);
1488 #endif
1489
1490 void av_dump_format(AVFormatContext *ic,
1491                     int index,
1492                     const char *url,
1493                     int is_output);
1494
1495 #if FF_API_PARSE_FRAME_PARAM
1496 /**
1497  * Parse width and height out of string str.
1498  * @deprecated Use av_parse_video_frame_size instead.
1499  */
1500 attribute_deprecated int parse_image_size(int *width_ptr, int *height_ptr,
1501                                           const char *str);
1502
1503 /**
1504  * Convert framerate from a string to a fraction.
1505  * @deprecated Use av_parse_video_frame_rate instead.
1506  */
1507 attribute_deprecated int parse_frame_rate(int *frame_rate, int *frame_rate_base,
1508                                           const char *arg);
1509 #endif
1510
1511 #if FF_API_PARSE_DATE
1512 /**
1513  * Parse datestr and return a corresponding number of microseconds.
1514  *
1515  * @param datestr String representing a date or a duration.
1516  * See av_parse_time() for the syntax of the provided string.
1517  * @deprecated in favor of av_parse_time()
1518  */
1519 attribute_deprecated
1520 int64_t parse_date(const char *datestr, int duration);
1521 #endif
1522
1523 /**
1524  * Get the current time in microseconds.
1525  */
1526 int64_t av_gettime(void);
1527
1528 #if FF_API_FIND_INFO_TAG
1529 /**
1530  * @deprecated use av_find_info_tag in libavutil instead.
1531  */
1532 attribute_deprecated int find_info_tag(char *arg, int arg_size, const char *tag1, const char *info);
1533 #endif
1534
1535 /**
1536  * Return in 'buf' the path with '%d' replaced by a number.
1537  *
1538  * Also handles the '%0nd' format where 'n' is the total number
1539  * of digits and '%%'.
1540  *
1541  * @param buf destination buffer
1542  * @param buf_size destination buffer size
1543  * @param path numbered sequence string
1544  * @param number frame number
1545  * @return 0 if OK, -1 on format error
1546  */
1547 int av_get_frame_filename(char *buf, int buf_size,
1548                           const char *path, int number);
1549
1550 /**
1551  * Check whether filename actually is a numbered sequence generator.
1552  *
1553  * @param filename possible numbered sequence string
1554  * @return 1 if a valid numbered sequence string, 0 otherwise
1555  */
1556 int av_filename_number_test(const char *filename);
1557
1558 /**
1559  * Generate an SDP for an RTP session.
1560  *
1561  * @param ac array of AVFormatContexts describing the RTP streams. If the
1562  *           array is composed by only one context, such context can contain
1563  *           multiple AVStreams (one AVStream per RTP stream). Otherwise,
1564  *           all the contexts in the array (an AVCodecContext per RTP stream)
1565  *           must contain only one AVStream.
1566  * @param n_files number of AVCodecContexts contained in ac
1567  * @param buf buffer where the SDP will be stored (must be allocated by
1568  *            the caller)
1569  * @param size the size of the buffer
1570  * @return 0 if OK, AVERROR_xxx on error
1571  */
1572 int av_sdp_create(AVFormatContext *ac[], int n_files, char *buf, int size);
1573
1574 #if FF_API_SDP_CREATE
1575 attribute_deprecated int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size);
1576 #endif
1577
1578 /**
1579  * Return a positive value if the given filename has one of the given
1580  * extensions, 0 otherwise.
1581  *
1582  * @param extensions a comma-separated list of filename extensions
1583  */
1584 int av_match_ext(const char *filename, const char *extensions);
1585
1586 #endif /* AVFORMAT_AVFORMAT_H */