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