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