2 * copyright (c) 2001 Fabrice Bellard
4 * This file is part of FFmpeg.
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.
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.
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
21 #ifndef AVFORMAT_AVFORMAT_H
22 #define AVFORMAT_AVFORMAT_H
24 #define LIBAVFORMAT_VERSION_MAJOR 52
25 #define LIBAVFORMAT_VERSION_MINOR 24
26 #define LIBAVFORMAT_VERSION_MICRO 0
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
36 #define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
39 * Returns the LIBAVFORMAT_VERSION_INT constant.
41 unsigned avformat_version(void);
44 #include <stdio.h> /* FILE */
45 #include "libavcodec/avcodec.h"
51 * Public Metadata API.
52 * The metadata API allows libavformat to export metadata tags to a client
53 * application using a sequence of key/value pairs.
54 * Important concepts to keep in mind:
55 * 1. Keys are unique; there can never be 2 tags with the same key. This is
56 * also meant semantically, i.e., a demuxer should not knowingly produce
57 * several keys that are literally different but semantically identical.
58 * E.g., key=Author5, key=Author6. In this example, all authors must be
59 * placed in the same tag.
60 * 2. Metadata is flat, not hierarchical; there are no subtags. If you
61 * want to store, e.g., the email address of the child of producer Alice
62 * and actor Bob, that could have key=alice_and_bobs_childs_email_address.
63 * 3. A tag whose value is localized for a particular language is appended
64 * with a dash character ('-') and the ISO 639 3-letter language code.
65 * For example: Author-ger=Michael, Author-eng=Mike
66 * The original/default language is in the unqualified "Author" tag.
67 * A demuxer should set a default if it sets any translated tag.
70 #define AV_METADATA_IGNORE_CASE 1
71 #define AV_METADATA_IGNORE_SUFFIX 2
78 typedef struct AVMetadata AVMetadata
;
81 * gets a metadata element with matching key.
82 * @param prev set to the previous matching element to find the next.
83 * @param flags allows case as well as suffix insensitive comparissions.
84 * @return found tag or NULL, changing key or value leads to undefined behavior.
87 av_metadata_get(AVMetadata
*m
, const char *key
, const AVMetadataTag
*prev
, int flags
);
90 * sets the given tag in m, overwriting an existing tag.
91 * @param tag tag to add to m, key and value will be av_strduped.
92 * @return >= 0 if success otherwise error code that is <0.
94 int av_metadata_set(AVMetadata
**m
, AVMetadataTag tag
);
97 * Free all the memory allocated for an AVMetadata struct.
99 void av_metadata_free(AVMetadata
**m
);
102 /* packet functions */
104 typedef struct AVPacket
{
106 * Presentation timestamp in time_base units.
107 * This is the time at which the decompressed packet will be presented
109 * Can be AV_NOPTS_VALUE if it is not stored in the file.
110 * pts MUST be larger or equal to dts as presentation cannot happen before
111 * decompression, unless one wants to view hex dumps. Some formats misuse
112 * the terms dts and pts/cts to mean something different, these timestamps
113 * must be converted to true pts/dts before they are stored in AVPacket.
117 * Decompression timestamp in time_base units.
118 * This is the time at which the packet is decompressed.
119 * Can be AV_NOPTS_VALUE if it is not stored in the file.
127 * Duration of this packet in time_base units, 0 if unknown.
128 * Equals next_pts - this_pts in presentation order.
131 void (*destruct
)(struct AVPacket
*);
133 int64_t pos
; ///< byte position in stream, -1 if unknown
136 * Time difference in stream time base units from the pts of this
137 * packet to the point at which the output from the decoder has converged
138 * independent from the availability of previous frames. That is, the
139 * frames are virtually identical no matter if decoding started from
140 * the very first frame or from this keyframe.
141 * Is AV_NOPTS_VALUE if unknown.
142 * This field is not the display duration of the current packet.
144 * The purpose of this field is to allow seeking in streams that have no
145 * keyframes in the conventional sense. It corresponds to the
146 * recovery point SEI in H.264 and match_time_delta in NUT. It is also
147 * essential for some types of subtitle streams to ensure that all
148 * subtitles are correctly displayed after seeking.
150 int64_t convergence_duration
;
152 #define PKT_FLAG_KEY 0x0001
154 void av_destruct_packet_nofree(AVPacket
*pkt
);
157 * Default packet destructor.
159 void av_destruct_packet(AVPacket
*pkt
);
162 * Initialize optional fields of a packet with default values.
166 void av_init_packet(AVPacket
*pkt
);
169 * Allocate the payload of a packet and initialize its fields with
173 * @param size wanted payload size
174 * @return 0 if OK, AVERROR_xxx otherwise
176 int av_new_packet(AVPacket
*pkt
, int size
);
179 * Allocate and read the payload of a packet and initialize its fields with
183 * @param size desired payload size
184 * @return >0 (read size) if OK, AVERROR_xxx otherwise
186 int av_get_packet(ByteIOContext
*s
, AVPacket
*pkt
, int size
);
189 * @warning This is a hack - the packet memory allocation stuff is broken. The
190 * packet is allocated if it was not really allocated.
192 int av_dup_packet(AVPacket
*pkt
);
197 * @param pkt packet to free
199 static inline void av_free_packet(AVPacket
*pkt
)
201 if (pkt
&& pkt
->destruct
) {
206 /*************************************************/
207 /* fractional numbers for exact pts handling */
210 * The exact value of the fractional number is: 'val + num / den'.
211 * num is assumed to be 0 <= num < den.
212 * @deprecated Use AVRational instead.
214 typedef struct AVFrac
{
215 int64_t val
, num
, den
;
218 /*************************************************/
219 /* input/output formats */
223 struct AVFormatContext
;
225 /** This structure contains the data a format has to probe a file. */
226 typedef struct AVProbeData
{
227 const char *filename
;
232 #define AVPROBE_SCORE_MAX 100 ///< Maximum score, half of that is used for file-extension-based detection.
233 #define AVPROBE_PADDING_SIZE 32 ///< extra allocated bytes at the end of the probe buffer
235 typedef struct AVFormatParameters
{
236 AVRational time_base
;
241 enum PixelFormat pix_fmt
;
242 int channel
; /**< Used to select DV channel. */
243 const char *standard
; /**< TV standard, NTSC, PAL, SECAM */
244 unsigned int mpeg2ts_raw
:1; /**< Force raw MPEG-2 transport stream output, if possible. */
245 unsigned int mpeg2ts_compute_pcr
:1; /**< Compute exact PCR for each transport
246 stream packet (only meaningful if
247 mpeg2ts_raw is TRUE). */
248 unsigned int initial_pause
:1; /**< Do not begin to play the stream
249 immediately (RTSP only). */
250 unsigned int prealloced_context
:1;
251 #if LIBAVFORMAT_VERSION_INT < (53<<16)
252 enum CodecID video_codec_id
;
253 enum CodecID audio_codec_id
;
255 } AVFormatParameters
;
257 //! Demuxer will use url_fopen, no opened file should be provided by the caller.
258 #define AVFMT_NOFILE 0x0001
259 #define AVFMT_NEEDNUMBER 0x0002 /**< Needs '%d' in filename. */
260 #define AVFMT_SHOW_IDS 0x0008 /**< Show format stream IDs numbers. */
261 #define AVFMT_RAWPICTURE 0x0020 /**< Format wants AVPicture structure for
263 #define AVFMT_GLOBALHEADER 0x0040 /**< Format wants global header. */
264 #define AVFMT_NOTIMESTAMPS 0x0080 /**< Format does not need / have any timestamps. */
265 #define AVFMT_GENERIC_INDEX 0x0100 /**< Use generic index building code. */
266 #define AVFMT_TS_DISCONT 0x0200 /**< Format allows timestamp discontinuities. */
268 typedef struct AVOutputFormat
{
271 * Descriptive name for the format, meant to be more human-readable
272 * than \p name. You \e should use the NULL_IF_CONFIG_SMALL() macro
275 const char *long_name
;
276 const char *mime_type
;
277 const char *extensions
; /**< comma-separated filename extensions */
278 /** Size of private data so that it can be allocated in the wrapper. */
281 enum CodecID audio_codec
; /**< default audio codec */
282 enum CodecID video_codec
; /**< default video codec */
283 int (*write_header
)(struct AVFormatContext
*);
284 int (*write_packet
)(struct AVFormatContext
*, AVPacket
*pkt
);
285 int (*write_trailer
)(struct AVFormatContext
*);
286 /** can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_GLOBALHEADER */
288 /** Currently only used to set pixel format if not YUV420P. */
289 int (*set_parameters
)(struct AVFormatContext
*, AVFormatParameters
*);
290 int (*interleave_packet
)(struct AVFormatContext
*, AVPacket
*out
,
291 AVPacket
*in
, int flush
);
294 * List of supported codec_id-codec_tag pairs, ordered by "better
295 * choice first". The arrays are all CODEC_ID_NONE terminated.
297 const struct AVCodecTag
* const *codec_tag
;
299 enum CodecID subtitle_codec
; /**< default subtitle codec */
302 struct AVOutputFormat
*next
;
305 typedef struct AVInputFormat
{
308 * Descriptive name for the format, meant to be more human-readable
309 * than \p name. You \e should use the NULL_IF_CONFIG_SMALL() macro
312 const char *long_name
;
313 /** Size of private data so that it can be allocated in the wrapper. */
316 * Tell if a given file has a chance of being parsed by this format.
317 * The buffer provided is guaranteed to be AVPROBE_PADDING_SIZE bytes
318 * big so you do not have to check for that unless you need more.
320 int (*read_probe
)(AVProbeData
*);
321 /** Read the format header and initialize the AVFormatContext
322 structure. Return 0 if OK. 'ap' if non-NULL contains
323 additional parameters. Only used in raw format right
324 now. 'av_new_stream' should be called to create new streams. */
325 int (*read_header
)(struct AVFormatContext
*,
326 AVFormatParameters
*ap
);
327 /** Read one packet and put it in 'pkt'. pts and flags are also
328 set. 'av_new_stream' can be called only if the flag
329 AVFMTCTX_NOHEADER is used. */
330 int (*read_packet
)(struct AVFormatContext
*, AVPacket
*pkt
);
331 /** Close the stream. The AVFormatContext and AVStreams are not
332 freed by this function */
333 int (*read_close
)(struct AVFormatContext
*);
335 * Seek to a given timestamp relative to the frames in
336 * stream component stream_index.
337 * @param stream_index must not be -1
338 * @param flags selects which direction should be preferred if no exact
340 * @return >= 0 on success (but not necessarily the new offset)
342 int (*read_seek
)(struct AVFormatContext
*,
343 int stream_index
, int64_t timestamp
, int flags
);
345 * Gets the next timestamp in stream[stream_index].time_base units.
346 * @return the timestamp or AV_NOPTS_VALUE if an error occurred
348 int64_t (*read_timestamp
)(struct AVFormatContext
*s
, int stream_index
,
349 int64_t *pos
, int64_t pos_limit
);
350 /** Can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER. */
352 /** If extensions are defined, then no probe is done. You should
353 usually not use extension format guessing because it is not
355 const char *extensions
;
356 /** General purpose read-only value that the format can use. */
359 /** Start/resume playing - only meaningful if using a network-based format
361 int (*read_play
)(struct AVFormatContext
*);
363 /** Pause playing - only meaningful if using a network-based format
365 int (*read_pause
)(struct AVFormatContext
*);
367 const struct AVCodecTag
* const *codec_tag
;
370 struct AVInputFormat
*next
;
373 enum AVStreamParseType
{
375 AVSTREAM_PARSE_FULL
, /**< full parsing and repack */
376 AVSTREAM_PARSE_HEADERS
, /**< Only parse headers, do not repack. */
377 AVSTREAM_PARSE_TIMESTAMPS
, /**< full parsing and interpolation of timestamps for frames not starting on a packet boundary */
380 typedef struct AVIndexEntry
{
383 #define AVINDEX_KEYFRAME 0x0001
385 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).
386 int min_distance
; /**< Minimum distance between this and the previous keyframe, used to avoid unneeded searching. */
389 #define AV_DISPOSITION_DEFAULT 0x0001
390 #define AV_DISPOSITION_DUB 0x0002
391 #define AV_DISPOSITION_ORIGINAL 0x0004
392 #define AV_DISPOSITION_COMMENT 0x0008
393 #define AV_DISPOSITION_LYRICS 0x0010
394 #define AV_DISPOSITION_KARAOKE 0x0020
398 * New fields can be added to the end with minor version bumps.
399 * Removal, reordering and changes to existing fields require a major
401 * sizeof(AVStream) must not be used outside libav*.
403 typedef struct AVStream
{
404 int index
; /**< stream index in AVFormatContext */
405 int id
; /**< format-specific stream ID */
406 AVCodecContext
*codec
; /**< codec context */
408 * Real base frame rate of the stream.
409 * This is the lowest frame rate with which all timestamps can be
410 * represented accurately (it is the least common multiple of all
411 * frame rates in the stream). Note, this value is just a guess!
412 * For example if the time base is 1/90000 and all frames have either
413 * approximately 3600 or 1800 timer ticks, then r_frame_rate will be 50/1.
415 AVRational r_frame_rate
;
418 /* internal data used in av_find_stream_info() */
420 /** encoding: pts generation when outputting stream */
424 * This is the fundamental unit of time (in seconds) in terms
425 * of which frame timestamps are represented. For fixed-fps content,
426 * time base should be 1/frame rate and timestamp increments should be 1.
428 AVRational time_base
;
429 int pts_wrap_bits
; /**< number of bits in pts (used for wrapping control) */
430 /* ffmpeg.c private use */
431 int stream_copy
; /**< If set, just copy stream. */
432 enum AVDiscard discard
; ///< Selects which packets can be discarded at will and do not need to be demuxed.
433 //FIXME move stuff to a flags field?
434 /** Quality, as it has been removed from AVCodecContext and put in AVVideoFrame.
435 * MN: dunno if that is the right place for it */
438 * Decoding: pts of the first frame of the stream, in stream time base.
439 * Only set this if you are absolutely 100% sure that the value you set
440 * it to really is the pts of the first frame.
441 * This may be undefined (AV_NOPTS_VALUE).
442 * @note The ASF header does NOT contain a correct start_time the ASF
443 * demuxer must NOT set this.
447 * Decoding: duration of the stream, in stream time base.
448 * If a source file does not specify a duration, but does specify
449 * a bitrate, this value will be estimated from bitrate and file size.
453 char language
[4]; /** ISO 639 3-letter language code (empty string if undefined) */
455 /* av_read_frame() support */
456 enum AVStreamParseType need_parsing
;
457 struct AVCodecParserContext
*parser
;
460 int last_IP_duration
;
462 /* av_seek_frame() support */
463 AVIndexEntry
*index_entries
; /**< Only used if the format does not
464 support seeking natively. */
465 int nb_index_entries
;
466 unsigned int index_entries_allocated_size
;
468 int64_t nb_frames
; ///< number of frames in this stream if known or 0
470 #if LIBAVFORMAT_VERSION_INT < (53<<16)
474 char *filename
; /**< source filename of the stream */
476 int disposition
; /**< AV_DISPOSITION_* bit field */
478 AVProbeData probe_data
;
479 #define MAX_REORDER_DELAY 16
480 int64_t pts_buffer
[MAX_REORDER_DELAY
+1];
483 * sample aspect ratio (0 if unknown)
484 * - encoding: Set by user.
485 * - decoding: Set by libavformat.
487 AVRational sample_aspect_ratio
;
489 AVMetadata
*metadata
;
492 #define AV_PROGRAM_RUNNING 1
495 * New fields can be added to the end with minor version bumps.
496 * Removal, reordering and changes to existing fields require a major
498 * sizeof(AVProgram) must not be used outside libav*.
500 typedef struct AVProgram
{
502 char *provider_name
; ///< network name for DVB streams
503 char *name
; ///< service name for DVB streams
505 enum AVDiscard discard
; ///< selects which program to discard and which to feed to the caller
506 unsigned int *stream_index
;
507 unsigned int nb_stream_indexes
;
508 AVMetadata
*metadata
;
511 #define AVFMTCTX_NOHEADER 0x0001 /**< signal that no header is present
512 (streams are added dynamically) */
514 typedef struct AVChapter
{
515 int id
; ///< unique ID to identify the chapter
516 AVRational time_base
; ///< time base in which the start/end timestamps are specified
517 int64_t start
, end
; ///< chapter start/end time in time_base units
518 char *title
; ///< chapter title
519 AVMetadata
*metadata
;
522 #define MAX_STREAMS 20
525 * Format I/O context.
526 * New fields can be added to the end with minor version bumps.
527 * Removal, reordering and changes to existing fields require a major
529 * sizeof(AVFormatContext) must not be used outside libav*.
531 typedef struct AVFormatContext
{
532 const AVClass
*av_class
; /**< Set by av_alloc_format_context. */
533 /* Can only be iformat or oformat, not both at the same time. */
534 struct AVInputFormat
*iformat
;
535 struct AVOutputFormat
*oformat
;
538 unsigned int nb_streams
;
539 AVStream
*streams
[MAX_STREAMS
];
540 char filename
[1024]; /**< input or output filename */
548 int year
; /**< ID3 year, 0 if none */
549 int track
; /**< track number, 0 if none */
550 char genre
[32]; /**< ID3 genre */
552 int ctx_flags
; /**< Format-specific flags, see AVFMTCTX_xx */
553 /* private data for pts handling (do not modify directly). */
554 /** This buffer is only needed when packets were already buffered but
555 not decoded, for example to get the codec parameters in MPEG
557 struct AVPacketList
*packet_buffer
;
559 /** Decoding: position of the first frame of the component, in
560 AV_TIME_BASE fractional seconds. NEVER set this value directly:
561 It is deduced from the AVStream values. */
563 /** Decoding: duration of the stream, in AV_TIME_BASE fractional
564 seconds. NEVER set this value directly: it is deduced from the
567 /** decoding: total file size, 0 if unknown */
569 /** Decoding: total stream bitrate in bit/s, 0 if not
570 available. Never set it directly if the file_size and the
571 duration are known as ffmpeg can compute it automatically. */
574 /* av_read_frame() support */
576 const uint8_t *cur_ptr
;
580 /* av_seek_frame() support */
581 int64_t data_offset
; /** offset of the first packet */
589 #define AVFMT_NOOUTPUTLOOP -1
590 #define AVFMT_INFINITEOUTPUTLOOP 0
591 /** number of times to loop output in formats that support it */
595 #define AVFMT_FLAG_GENPTS 0x0001 ///< Generate pts if missing even if it requires parsing future frames.
596 #define AVFMT_FLAG_IGNIDX 0x0002 ///< Ignore index.
597 #define AVFMT_FLAG_NONBLOCK 0x0004 ///< Do not block when reading packets from input.
598 #define AVFMT_FLAG_IGNEXTERNS 0x0008 ///< Do not try to load external files.
599 #define AVFMT_FLAG_FORCEEXTERNS 0x0010 ///< Load external files even when they could be incompatible.
602 /** Decoding: size of data to probe; encoding: unused. */
603 unsigned int probesize
;
606 * Maximum time (in AV_TIME_BASE units) during which the input should
607 * be analyzed in av_find_stream_info().
609 int max_analyze_duration
;
614 unsigned int nb_programs
;
615 AVProgram
**programs
;
618 * Forced video codec_id.
619 * Demuxing: Set by user.
621 enum CodecID video_codec_id
;
623 * Forced audio codec_id.
624 * Demuxing: Set by user.
626 enum CodecID audio_codec_id
;
628 * Forced subtitle codec_id.
629 * Demuxing: Set by user.
631 enum CodecID subtitle_codec_id
;
634 * Maximum amount of memory in bytes to use per stream for the index.
635 * If the needed index exceeds this size, entries will be discarded as
636 * needed to maintain a smaller size. This can lead to slower or less
637 * accurate seeking (depends on demuxer).
638 * Demuxers for which a full in-memory index is mandatory will ignore
641 * demuxing: set by user
643 unsigned int max_index_size
;
646 * Maximum amount of memory in bytes to use for buffering frames
647 * obtained from realtime capture devices.
649 unsigned int max_picture_buffer
;
651 unsigned int nb_chapters
;
652 AVChapter
**chapters
;
655 * Flags to enable debugging.
658 #define FF_FDEBUG_TS 0x0001
661 * Raw packets from the demuxer, prior to parsing and decoding.
662 * This buffer is used for buffering packets until the codec can
663 * be identified, as parsing cannot be done without knowing the
666 struct AVPacketList
*raw_packet_buffer
;
667 struct AVPacketList
*raw_packet_buffer_end
;
669 struct AVPacketList
*packet_buffer_end
;
671 AVMetadata
*metadata
;
673 /** Handles of external streams */
674 struct AVFormatContext
**external_ctx
;
675 unsigned int nb_external_ctx
;
678 typedef struct AVPacketList
{
680 struct AVPacketList
*next
;
683 #if LIBAVFORMAT_VERSION_INT < (53<<16)
684 extern AVInputFormat
*first_iformat
;
685 extern AVOutputFormat
*first_oformat
;
688 AVInputFormat
*av_iformat_next(AVInputFormat
*f
);
689 AVOutputFormat
*av_oformat_next(AVOutputFormat
*f
);
691 enum CodecID
av_guess_image2_codec(const char *filename
);
693 /* XXX: use automatic init with either ELF sections or C file parser */
697 void av_register_input_format(AVInputFormat
*format
);
698 void av_register_output_format(AVOutputFormat
*format
);
699 AVOutputFormat
*guess_stream_format(const char *short_name
,
700 const char *filename
,
701 const char *mime_type
);
702 AVOutputFormat
*guess_format(const char *short_name
,
703 const char *filename
,
704 const char *mime_type
);
707 * Guesses the codec ID based upon muxer and filename.
709 enum CodecID
av_guess_codec(AVOutputFormat
*fmt
, const char *short_name
,
710 const char *filename
, const char *mime_type
,
711 enum CodecType type
);
714 * Send a nice hexadecimal dump of a buffer to the specified file stream.
716 * @param f The file stream pointer where the dump should be sent to.
718 * @param size buffer size
720 * @see av_hex_dump_log, av_pkt_dump, av_pkt_dump_log
722 void av_hex_dump(FILE *f
, uint8_t *buf
, int size
);
725 * Send a nice hexadecimal dump of a buffer to the log.
727 * @param avcl A pointer to an arbitrary struct of which the first field is a
728 * pointer to an AVClass struct.
729 * @param level The importance level of the message, lower values signifying
732 * @param size buffer size
734 * @see av_hex_dump, av_pkt_dump, av_pkt_dump_log
736 void av_hex_dump_log(void *avcl
, int level
, uint8_t *buf
, int size
);
739 * Send a nice dump of a packet to the specified file stream.
741 * @param f The file stream pointer where the dump should be sent to.
742 * @param pkt packet to dump
743 * @param dump_payload True if the payload must be displayed, too.
745 void av_pkt_dump(FILE *f
, AVPacket
*pkt
, int dump_payload
);
748 * Send a nice dump of a packet to the log.
750 * @param avcl A pointer to an arbitrary struct of which the first field is a
751 * pointer to an AVClass struct.
752 * @param level The importance level of the message, lower values signifying
754 * @param pkt packet to dump
755 * @param dump_payload True if the payload must be displayed, too.
757 void av_pkt_dump_log(void *avcl
, int level
, AVPacket
*pkt
, int dump_payload
);
759 void av_register_all(void);
761 /** codec tag <-> codec id */
762 enum CodecID
av_codec_get_id(const struct AVCodecTag
* const *tags
, unsigned int tag
);
763 unsigned int av_codec_get_tag(const struct AVCodecTag
* const *tags
, enum CodecID id
);
765 /* media file input */
768 * Finds AVInputFormat based on the short name of the input format.
770 AVInputFormat
*av_find_input_format(const char *short_name
);
775 * @param is_opened Whether the file is already opened; determines whether
776 * demuxers with or without AVFMT_NOFILE are probed.
778 AVInputFormat
*av_probe_input_format(AVProbeData
*pd
, int is_opened
);
781 * Allocates all the structures needed to read an input stream.
782 * This does not open the needed codecs for decoding the stream[s].
784 int av_open_input_stream(AVFormatContext
**ic_ptr
,
785 ByteIOContext
*pb
, const char *filename
,
786 AVInputFormat
*fmt
, AVFormatParameters
*ap
);
789 * Open a media file as input. The codecs are not opened. Only the file
790 * header (if present) is read.
792 * @param ic_ptr The opened media file handle is put here.
793 * @param filename filename to open
794 * @param fmt If non-NULL, force the file format to use.
795 * @param buf_size optional buffer size (zero if default is OK)
796 * @param ap Additional parameters needed when opening the file
798 * @return 0 if OK, AVERROR_xxx otherwise
800 int av_open_input_file(AVFormatContext
**ic_ptr
, const char *filename
,
803 AVFormatParameters
*ap
);
805 * Allocate an AVFormatContext.
806 * Can be freed with av_free() but do not forget to free everything you
807 * explicitly allocated as well!
809 AVFormatContext
*av_alloc_format_context(void);
812 * Read packets of a media file to get stream information. This
813 * is useful for file formats with no headers such as MPEG. This
814 * function also computes the real frame rate in case of MPEG-2 repeat
816 * The logical file position is not changed by this function;
817 * examined packets may be buffered for later processing.
819 * @param ic media file handle
820 * @return >=0 if OK, AVERROR_xxx on error
821 * @todo Let the user decide somehow what information is needed so that
822 * we do not waste time getting stuff the user does not need.
824 int av_find_stream_info(AVFormatContext
*ic
);
827 * Read a transport packet from a media file.
829 * This function is obsolete and should never be used.
830 * Use av_read_frame() instead.
832 * @param s media file handle
833 * @param pkt is filled
834 * @return 0 if OK, AVERROR_xxx on error
836 int av_read_packet(AVFormatContext
*s
, AVPacket
*pkt
);
839 * Return the next frame of a stream.
841 * The returned packet is valid
842 * until the next av_read_frame() or until av_close_input_file() and
843 * must be freed with av_free_packet. For video, the packet contains
844 * exactly one frame. For audio, it contains an integer number of
845 * frames if each frame has a known fixed size (e.g. PCM or ADPCM
846 * data). If the audio frames have a variable size (e.g. MPEG audio),
847 * then it contains one frame.
849 * pkt->pts, pkt->dts and pkt->duration are always set to correct
850 * values in AVStream.timebase units (and guessed if the format cannot
851 * provide them). pkt->pts can be AV_NOPTS_VALUE if the video format
852 * has B-frames, so it is better to rely on pkt->dts if you do not
853 * decompress the payload.
855 * @return 0 if OK, < 0 on error or end of file
857 int av_read_frame(AVFormatContext
*s
, AVPacket
*pkt
);
860 * Seek to the key frame at timestamp.
861 * 'timestamp' in 'stream_index'.
862 * @param stream_index If stream_index is (-1), a default
863 * stream is selected, and timestamp is automatically converted
864 * from AV_TIME_BASE units to the stream specific time_base.
865 * @param timestamp Timestamp in AVStream.time_base units
866 * or, if no stream is specified, in AV_TIME_BASE units.
867 * @param flags flags which select direction and seeking mode
868 * @return >= 0 on success
870 int av_seek_frame(AVFormatContext
*s
, int stream_index
, int64_t timestamp
,
874 * Start playing a network based stream (e.g. RTSP stream) at the
877 int av_read_play(AVFormatContext
*s
);
880 * Pause a network based stream (e.g. RTSP stream).
882 * Use av_read_play() to resume it.
884 int av_read_pause(AVFormatContext
*s
);
887 * Free a AVFormatContext allocated by av_open_input_stream.
888 * @param s context to free
890 void av_close_input_stream(AVFormatContext
*s
);
893 * Close a media file (but not its codecs).
895 * @param s media file handle
897 void av_close_input_file(AVFormatContext
*s
);
900 * Add a new stream to a media file.
902 * Can only be called in the read_header() function. If the flag
903 * AVFMTCTX_NOHEADER is in the format context, then new streams
904 * can be added in read_packet too.
906 * @param s media file handle
907 * @param id file-format-dependent stream ID
909 AVStream
*av_new_stream(AVFormatContext
*s
, int id
);
910 AVProgram
*av_new_program(AVFormatContext
*s
, int id
);
914 * This function is NOT part of the public API
915 * and should ONLY be used by demuxers.
917 * @param s media file handle
918 * @param id unique ID for this chapter
919 * @param start chapter start time in time_base units
920 * @param end chapter end time in time_base units
921 * @param title chapter title
923 * @return AVChapter or NULL on error
925 AVChapter
*ff_new_chapter(AVFormatContext
*s
, int id
, AVRational time_base
,
926 int64_t start
, int64_t end
, const char *title
);
929 * Set the pts for a given stream.
932 * @param pts_wrap_bits number of bits effectively used by the pts
933 * (used for wrap control, 33 is the value for MPEG)
934 * @param pts_num numerator to convert to seconds (MPEG: 1)
935 * @param pts_den denominator to convert to seconds (MPEG: 90000)
937 void av_set_pts_info(AVStream
*s
, int pts_wrap_bits
,
938 int pts_num
, int pts_den
);
940 #define AVSEEK_FLAG_BACKWARD 1 ///< seek backward
941 #define AVSEEK_FLAG_BYTE 2 ///< seeking based on position in bytes
942 #define AVSEEK_FLAG_ANY 4 ///< seek to any frame, even non-keyframes
944 int av_find_default_stream_index(AVFormatContext
*s
);
947 * Gets the index for a specific timestamp.
948 * @param flags if AVSEEK_FLAG_BACKWARD then the returned index will correspond
949 * to the timestamp which is <= the requested one, if backward
950 * is 0, then it will be >=
951 * if AVSEEK_FLAG_ANY seek to any frame, only keyframes otherwise
952 * @return < 0 if no such timestamp could be found
954 int av_index_search_timestamp(AVStream
*st
, int64_t timestamp
, int flags
);
957 * Ensures the index uses less memory than the maximum specified in
958 * AVFormatContext.max_index_size, by discarding entries if it grows
960 * This function is not part of the public API and should only be called
963 void ff_reduce_index(AVFormatContext
*s
, int stream_index
);
966 * Add an index entry into a sorted list. Update the entry if the list
967 * already contains it.
969 * @param timestamp timestamp in the time base of the given stream
971 int av_add_index_entry(AVStream
*st
, int64_t pos
, int64_t timestamp
,
972 int size
, int distance
, int flags
);
975 * Does a binary search using av_index_search_timestamp() and
976 * AVCodec.read_timestamp().
977 * This is not supposed to be called directly by a user application,
979 * @param target_ts target timestamp in the time base of the given stream
980 * @param stream_index stream number
982 int av_seek_frame_binary(AVFormatContext
*s
, int stream_index
,
983 int64_t target_ts
, int flags
);
986 * Updates cur_dts of all streams based on the given timestamp and AVStream.
988 * Stream ref_st unchanged, others set cur_dts in their native time base.
989 * Only needed for timestamp wrapping or if (dts not set and pts!=dts).
990 * @param timestamp new dts expressed in time_base of param ref_st
991 * @param ref_st reference stream giving time_base of param timestamp
993 void av_update_cur_dts(AVFormatContext
*s
, AVStream
*ref_st
, int64_t timestamp
);
996 * Does a binary search using read_timestamp().
997 * This is not supposed to be called directly by a user application,
999 * @param target_ts target timestamp in the time base of the given stream
1000 * @param stream_index stream number
1002 int64_t av_gen_search(AVFormatContext
*s
, int stream_index
,
1003 int64_t target_ts
, int64_t pos_min
,
1004 int64_t pos_max
, int64_t pos_limit
,
1005 int64_t ts_min
, int64_t ts_max
,
1006 int flags
, int64_t *ts_ret
,
1007 int64_t (*read_timestamp
)(struct AVFormatContext
*, int , int64_t *, int64_t ));
1009 /** media file output */
1010 int av_set_parameters(AVFormatContext
*s
, AVFormatParameters
*ap
);
1013 * Allocate the stream private data and write the stream header to an
1014 * output media file.
1016 * @param s media file handle
1017 * @return 0 if OK, AVERROR_xxx on error
1019 int av_write_header(AVFormatContext
*s
);
1022 * Write a packet to an output media file.
1024 * The packet shall contain one audio or video frame.
1025 * The packet must be correctly interleaved according to the container
1026 * specification, if not then av_interleaved_write_frame must be used.
1028 * @param s media file handle
1029 * @param pkt The packet, which contains the stream_index, buf/buf_size,
1031 * @return < 0 on error, = 0 if OK, 1 if end of stream wanted
1033 int av_write_frame(AVFormatContext
*s
, AVPacket
*pkt
);
1036 * Writes a packet to an output media file ensuring correct interleaving.
1038 * The packet must contain one audio or video frame.
1039 * If the packets are already correctly interleaved the application should
1040 * call av_write_frame() instead as it is slightly faster. It is also important
1041 * to keep in mind that completely non-interleaved input will need huge amounts
1042 * of memory to interleave with this, so it is preferable to interleave at the
1045 * @param s media file handle
1046 * @param pkt The packet, which contains the stream_index, buf/buf_size,
1048 * @return < 0 on error, = 0 if OK, 1 if end of stream wanted
1050 int av_interleaved_write_frame(AVFormatContext
*s
, AVPacket
*pkt
);
1053 * Interleave a packet per dts in an output media file.
1055 * Packets with pkt->destruct == av_destruct_packet will be freed inside this
1056 * function, so they cannot be used after it, note calling av_free_packet()
1057 * on them is still safe.
1059 * @param s media file handle
1060 * @param out the interleaved packet will be output here
1061 * @param in the input packet
1062 * @param flush 1 if no further packets are available as input and all
1063 * remaining packets should be output
1064 * @return 1 if a packet was output, 0 if no packet could be output,
1065 * < 0 if an error occurred
1067 int av_interleave_packet_per_dts(AVFormatContext
*s
, AVPacket
*out
,
1068 AVPacket
*pkt
, int flush
);
1071 * @brief Write the stream trailer to an output media file and
1072 * free the file private data.
1074 * May only be called after a successful call to av_write_header.
1076 * @param s media file handle
1077 * @return 0 if OK, AVERROR_xxx on error
1079 int av_write_trailer(AVFormatContext
*s
);
1081 void dump_format(AVFormatContext
*ic
,
1086 #if LIBAVFORMAT_VERSION_MAJOR < 53
1088 * Parses width and height out of string str.
1089 * @deprecated Use av_parse_video_frame_size instead.
1091 attribute_deprecated
int parse_image_size(int *width_ptr
, int *height_ptr
,
1095 * Converts frame rate from string to a fraction.
1096 * @deprecated Use av_parse_video_frame_rate instead.
1098 attribute_deprecated
int parse_frame_rate(int *frame_rate
, int *frame_rate_base
,
1103 * Parses \p datestr and returns a corresponding number of microseconds.
1104 * @param datestr String representing a date or a duration.
1105 * - If a date the syntax is:
1107 * [{YYYY-MM-DD|YYYYMMDD}]{T| }{HH[:MM[:SS[.m...]]][Z]|HH[MM[SS[.m...]]][Z]}
1109 * Time is local time unless Z is appended, in which case it is
1110 * interpreted as UTC.
1111 * If the year-month-day part is not specified it takes the current
1113 * Returns the number of microseconds since 1st of January, 1970 up to
1114 * the time of the parsed date or INT64_MIN if \p datestr cannot be
1115 * successfully parsed.
1116 * - If a duration the syntax is:
1118 * [-]HH[:MM[:SS[.m...]]]
1121 * Returns the number of microseconds contained in a time interval
1122 * with the specified duration or INT64_MIN if \p datestr cannot be
1123 * successfully parsed.
1124 * @param duration Flag which tells how to interpret \p datestr, if
1125 * not zero \p datestr is interpreted as a duration, otherwise as a
1128 int64_t parse_date(const char *datestr
, int duration
);
1130 /** Gets the current time in microseconds. */
1131 int64_t av_gettime(void);
1133 /* ffm-specific for ffserver */
1134 #define FFM_PACKET_SIZE 4096
1135 int64_t ffm_read_write_index(int fd
);
1136 void ffm_write_write_index(int fd
, int64_t pos
);
1137 void ffm_set_write_index(AVFormatContext
*s
, int64_t pos
, int64_t file_size
);
1140 * Attempts to find a specific tag in a URL.
1142 * syntax: '?tag1=val1&tag2=val2...'. Little URL decoding is done.
1143 * Return 1 if found.
1145 int find_info_tag(char *arg
, int arg_size
, const char *tag1
, const char *info
);
1148 * Returns in 'buf' the path with '%d' replaced by number.
1150 * Also handles the '%0nd' format where 'n' is the total number
1151 * of digits and '%%'.
1153 * @param buf destination buffer
1154 * @param buf_size destination buffer size
1155 * @param path numbered sequence string
1156 * @param number frame number
1157 * @return 0 if OK, -1 on format error
1159 int av_get_frame_filename(char *buf
, int buf_size
,
1160 const char *path
, int number
);
1163 * Check whether filename actually is a numbered sequence generator.
1165 * @param filename possible numbered sequence string
1166 * @return 1 if a valid numbered sequence string, 0 otherwise
1168 int av_filename_number_test(const char *filename
);
1171 * Generate an SDP for an RTP session.
1173 * @param ac array of AVFormatContexts describing the RTP streams. If the
1174 * array is composed by only one context, such context can contain
1175 * multiple AVStreams (one AVStream per RTP stream). Otherwise,
1176 * all the contexts in the array (an AVCodecContext per RTP stream)
1177 * must contain only one AVStream.
1178 * @param n_files number of AVCodecContexts contained in ac
1179 * @param buff buffer where the SDP will be stored (must be allocated by
1181 * @param size the size of the buffer
1182 * @return 0 if OK, AVERROR_xxx on error
1184 int avf_sdp_create(AVFormatContext
*ac
[], int n_files
, char *buff
, int size
);
1187 * Try to open an external stream. This function is not part of the
1188 * public API and should only be used by demuxers.
1190 AVFormatContext
*ff_open_external_stream(AVFormatContext
*s
, const char *filename
);
1192 #ifdef HAVE_AV_CONFIG_H
1194 void ff_dynarray_add(unsigned long **tab_ptr
, int *nb_ptr
, unsigned long elem
);
1197 #define dynarray_add(tab, nb_ptr, elem)\
1199 __typeof__(tab) _tab = (tab);\
1200 __typeof__(elem) _elem = (elem);\
1201 (void)sizeof(**_tab == _elem); /* check that types are compatible */\
1202 ff_dynarray_add((unsigned long **)_tab, nb_ptr, (unsigned long)_elem);\
1205 #define dynarray_add(tab, nb_ptr, elem)\
1207 ff_dynarray_add((unsigned long **)(tab), nb_ptr, (unsigned long)(elem));\
1211 time_t mktimegm(struct tm
*tm
);
1212 struct tm
*brktimegm(time_t secs
, struct tm
*tm
);
1213 const char *small_strptime(const char *p
, const char *fmt
,
1217 int resolve_host(struct in_addr
*sin_addr
, const char *hostname
);
1219 void url_split(char *proto
, int proto_size
,
1220 char *authorization
, int authorization_size
,
1221 char *hostname
, int hostname_size
,
1223 char *path
, int path_size
,
1226 int match_ext(const char *filename
, const char *extensions
);
1228 #endif /* HAVE_AV_CONFIG_H */
1230 #endif /* AVFORMAT_AVFORMAT_H */