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