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