You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2155 lines
76KB

  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. #ifndef AVFORMAT_AVFORMAT_H
  21. #define AVFORMAT_AVFORMAT_H
  22. /**
  23. * @file
  24. * @ingroup libavf
  25. * Main libavformat public API header
  26. */
  27. /**
  28. * @defgroup libavf I/O and Muxing/Demuxing Library
  29. * @{
  30. *
  31. * Libavformat (lavf) is a library for dealing with various media container
  32. * formats. Its main two purposes are demuxing - i.e. splitting a media file
  33. * into component streams, and the reverse process of muxing - writing supplied
  34. * data in a specified container format. It also has an @ref lavf_io
  35. * "I/O module" which supports a number of protocols for accessing the data (e.g.
  36. * file, tcp, http and others). Before using lavf, you need to call
  37. * av_register_all() to register all compiled muxers, demuxers and protocols.
  38. * Unless you are absolutely sure you won't use libavformat's network
  39. * capabilities, you should also call avformat_network_init().
  40. *
  41. * A supported input format is described by an AVInputFormat struct, conversely
  42. * an output format is described by AVOutputFormat. You can iterate over all
  43. * registered input/output formats using the av_iformat_next() /
  44. * av_oformat_next() functions. The protocols layer is not part of the public
  45. * API, so you can only get the names of supported protocols with the
  46. * avio_enum_protocols() function.
  47. *
  48. * Main lavf structure used for both muxing and demuxing is AVFormatContext,
  49. * which exports all information about the file being read or written. As with
  50. * most Libav structures, its size is not part of public ABI, so it cannot be
  51. * allocated on stack or directly with av_malloc(). To create an
  52. * AVFormatContext, use avformat_alloc_context() (some functions, like
  53. * avformat_open_input() might do that for you).
  54. *
  55. * Most importantly an AVFormatContext contains:
  56. * @li the @ref AVFormatContext.iformat "input" or @ref AVFormatContext.oformat
  57. * "output" format. It is either autodetected or set by user for input;
  58. * always set by user for output.
  59. * @li an @ref AVFormatContext.streams "array" of AVStreams, which describe all
  60. * elementary streams stored in the file. AVStreams are typically referred to
  61. * using their index in this array.
  62. * @li an @ref AVFormatContext.pb "I/O context". It is either opened by lavf or
  63. * set by user for input, always set by user for output (unless you are dealing
  64. * with an AVFMT_NOFILE format).
  65. *
  66. * @defgroup lavf_decoding Demuxing
  67. * @{
  68. * Demuxers read a media file and split it into chunks of data (@em packets). A
  69. * @ref AVPacket "packet" contains one or more frames which belong a single
  70. * elementary stream. In lavf API this process is represented by the
  71. * avformat_open_input() function for opening a file, av_read_frame() for
  72. * reading a single packet and finally avformat_close_input(), which does the
  73. * cleanup.
  74. *
  75. * @section lavf_decoding_open Opening a media file
  76. * The minimum information required to open a file is its URL or filename, which
  77. * is passed to avformat_open_input(), as in the following code:
  78. * @code
  79. * const char *url = "in.mp3";
  80. * AVFormatContext *s = NULL;
  81. * int ret = avformat_open_input(&s, url, NULL, NULL);
  82. * if (ret < 0)
  83. * abort();
  84. * @endcode
  85. * The above code attempts to allocate an AVFormatContext, open the
  86. * specified file (autodetecting the format) and read the header, exporting the
  87. * information stored there into s. Some formats do not have a header or do not
  88. * store enough information there, so it is recommended that you call the
  89. * avformat_find_stream_info() function which tries to read and decode a few
  90. * frames to find missing information.
  91. *
  92. * In some cases you might want to preallocate an AVFormatContext yourself with
  93. * avformat_alloc_context() and do some tweaking on it before passing it to
  94. * avformat_open_input(). One such case is when you want to use custom functions
  95. * for reading input data instead of lavf internal I/O layer.
  96. * To do that, create your own AVIOContext with avio_alloc_context(), passing
  97. * your reading callbacks to it. Then set the @em pb field of your
  98. * AVFormatContext to newly created AVIOContext.
  99. *
  100. * After you have finished reading the file, you must close it with
  101. * avformat_close_input(). It will free everything associated with the file.
  102. *
  103. * @section lavf_decoding_read Reading from an opened file
  104. *
  105. * @section lavf_decoding_seek Seeking
  106. * @}
  107. *
  108. * @defgroup lavf_encoding Muxing
  109. * @{
  110. * @}
  111. *
  112. * @defgroup lavf_io I/O Read/Write
  113. * @{
  114. * @}
  115. *
  116. * @defgroup lavf_codec Demuxers
  117. * @{
  118. * @defgroup lavf_codec_native Native Demuxers
  119. * @{
  120. * @}
  121. * @defgroup lavf_codec_wrappers External library wrappers
  122. * @{
  123. * @}
  124. * @}
  125. * @defgroup lavf_protos I/O Protocols
  126. * @{
  127. * @}
  128. * @defgroup lavf_internal Internal
  129. * @{
  130. * @}
  131. * @}
  132. *
  133. */
  134. #include <time.h>
  135. #include <stdio.h> /* FILE */
  136. #include "libavcodec/avcodec.h"
  137. #include "libavutil/dict.h"
  138. #include "libavutil/log.h"
  139. #include "avio.h"
  140. #include "libavformat/version.h"
  141. struct AVFormatContext;
  142. /**
  143. * @defgroup metadata_api Public Metadata API
  144. * @{
  145. * @ingroup libavf
  146. * The metadata API allows libavformat to export metadata tags to a client
  147. * application when demuxing. Conversely it allows a client application to
  148. * set metadata when muxing.
  149. *
  150. * Metadata is exported or set as pairs of key/value strings in the 'metadata'
  151. * fields of the AVFormatContext, AVStream, AVChapter and AVProgram structs
  152. * using the @ref lavu_dict "AVDictionary" API. Like all strings in FFmpeg,
  153. * metadata is assumed to be UTF-8 encoded Unicode. Note that metadata
  154. * exported by demuxers isn't checked to be valid UTF-8 in most cases.
  155. *
  156. * Important concepts to keep in mind:
  157. * - Keys are unique; there can never be 2 tags with the same key. This is
  158. * also meant semantically, i.e., a demuxer should not knowingly produce
  159. * several keys that are literally different but semantically identical.
  160. * E.g., key=Author5, key=Author6. In this example, all authors must be
  161. * placed in the same tag.
  162. * - Metadata is flat, not hierarchical; there are no subtags. If you
  163. * want to store, e.g., the email address of the child of producer Alice
  164. * and actor Bob, that could have key=alice_and_bobs_childs_email_address.
  165. * - Several modifiers can be applied to the tag name. This is done by
  166. * appending a dash character ('-') and the modifier name in the order
  167. * they appear in the list below -- e.g. foo-eng-sort, not foo-sort-eng.
  168. * - language -- a tag whose value is localized for a particular language
  169. * is appended with the ISO 639-2/B 3-letter language code.
  170. * For example: Author-ger=Michael, Author-eng=Mike
  171. * The original/default language is in the unqualified "Author" tag.
  172. * A demuxer should set a default if it sets any translated tag.
  173. * - sorting -- a modified version of a tag that should be used for
  174. * sorting will have '-sort' appended. E.g. artist="The Beatles",
  175. * artist-sort="Beatles, The".
  176. *
  177. * - Demuxers attempt to export metadata in a generic format, however tags
  178. * with no generic equivalents are left as they are stored in the container.
  179. * Follows a list of generic tag names:
  180. *
  181. @verbatim
  182. album -- name of the set this work belongs to
  183. album_artist -- main creator of the set/album, if different from artist.
  184. e.g. "Various Artists" for compilation albums.
  185. artist -- main creator of the work
  186. comment -- any additional description of the file.
  187. composer -- who composed the work, if different from artist.
  188. copyright -- name of copyright holder.
  189. creation_time-- date when the file was created, preferably in ISO 8601.
  190. date -- date when the work was created, preferably in ISO 8601.
  191. disc -- number of a subset, e.g. disc in a multi-disc collection.
  192. encoder -- name/settings of the software/hardware that produced the file.
  193. encoded_by -- person/group who created the file.
  194. filename -- original name of the file.
  195. genre -- <self-evident>.
  196. language -- main language in which the work is performed, preferably
  197. in ISO 639-2 format. Multiple languages can be specified by
  198. separating them with commas.
  199. performer -- artist who performed the work, if different from artist.
  200. E.g for "Also sprach Zarathustra", artist would be "Richard
  201. Strauss" and performer "London Philharmonic Orchestra".
  202. publisher -- name of the label/publisher.
  203. service_name -- name of the service in broadcasting (channel name).
  204. service_provider -- name of the service provider in broadcasting.
  205. title -- name of the work.
  206. track -- number of this work in the set, can be in form current/total.
  207. variant_bitrate -- the total bitrate of the bitrate variant that the current stream is part of
  208. @endverbatim
  209. *
  210. * Look in the examples section for an application example how to use the Metadata API.
  211. *
  212. * @}
  213. */
  214. #if FF_API_OLD_METADATA2
  215. /**
  216. * @defgroup old_metadata Old metadata API
  217. * The following functions are deprecated, use
  218. * their equivalents from libavutil/dict.h instead.
  219. * @{
  220. */
  221. #define AV_METADATA_MATCH_CASE AV_DICT_MATCH_CASE
  222. #define AV_METADATA_IGNORE_SUFFIX AV_DICT_IGNORE_SUFFIX
  223. #define AV_METADATA_DONT_STRDUP_KEY AV_DICT_DONT_STRDUP_KEY
  224. #define AV_METADATA_DONT_STRDUP_VAL AV_DICT_DONT_STRDUP_VAL
  225. #define AV_METADATA_DONT_OVERWRITE AV_DICT_DONT_OVERWRITE
  226. typedef attribute_deprecated AVDictionary AVMetadata;
  227. typedef attribute_deprecated AVDictionaryEntry AVMetadataTag;
  228. typedef struct AVMetadataConv AVMetadataConv;
  229. /**
  230. * Get a metadata element with matching key.
  231. *
  232. * @param prev Set to the previous matching element to find the next.
  233. * If set to NULL the first matching element is returned.
  234. * @param flags Allows case as well as suffix-insensitive comparisons.
  235. * @return Found tag or NULL, changing key or value leads to undefined behavior.
  236. */
  237. attribute_deprecated AVDictionaryEntry *
  238. av_metadata_get(AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags);
  239. /**
  240. * Set the given tag in *pm, overwriting an existing tag.
  241. *
  242. * @param pm pointer to a pointer to a metadata struct. If *pm is NULL
  243. * a metadata struct is allocated and put in *pm.
  244. * @param key tag key to add to *pm (will be av_strduped depending on flags)
  245. * @param value tag value to add to *pm (will be av_strduped depending on flags).
  246. * Passing a NULL value will cause an existing tag to be deleted.
  247. * @return >= 0 on success otherwise an error code <0
  248. */
  249. attribute_deprecated int av_metadata_set2(AVDictionary **pm, const char *key, const char *value, int flags);
  250. /**
  251. * This function is provided for compatibility reason and currently does nothing.
  252. */
  253. attribute_deprecated void av_metadata_conv(struct AVFormatContext *ctx, const AVMetadataConv *d_conv,
  254. const AVMetadataConv *s_conv);
  255. /**
  256. * Copy metadata from one AVDictionary struct into another.
  257. * @param dst pointer to a pointer to a AVDictionary struct. If *dst is NULL,
  258. * this function will allocate a struct for you and put it in *dst
  259. * @param src pointer to source AVDictionary struct
  260. * @param flags flags to use when setting metadata in *dst
  261. * @note metadata is read using the AV_DICT_IGNORE_SUFFIX flag
  262. */
  263. attribute_deprecated void av_metadata_copy(AVDictionary **dst, AVDictionary *src, int flags);
  264. /**
  265. * Free all the memory allocated for an AVDictionary struct.
  266. */
  267. attribute_deprecated void av_metadata_free(AVDictionary **m);
  268. /**
  269. * @}
  270. */
  271. #endif
  272. /* packet functions */
  273. /**
  274. * Allocate and read the payload of a packet and initialize its
  275. * fields with default values.
  276. *
  277. * @param pkt packet
  278. * @param size desired payload size
  279. * @return >0 (read size) if OK, AVERROR_xxx otherwise
  280. */
  281. int av_get_packet(AVIOContext *s, AVPacket *pkt, int size);
  282. /**
  283. * Read data and append it to the current content of the AVPacket.
  284. * If pkt->size is 0 this is identical to av_get_packet.
  285. * Note that this uses av_grow_packet and thus involves a realloc
  286. * which is inefficient. Thus this function should only be used
  287. * when there is no reasonable way to know (an upper bound of)
  288. * the final size.
  289. *
  290. * @param pkt packet
  291. * @param size amount of data to read
  292. * @return >0 (read size) if OK, AVERROR_xxx otherwise, previous data
  293. * will not be lost even if an error occurs.
  294. */
  295. int av_append_packet(AVIOContext *s, AVPacket *pkt, int size);
  296. /*************************************************/
  297. /* fractional numbers for exact pts handling */
  298. /**
  299. * The exact value of the fractional number is: 'val + num / den'.
  300. * num is assumed to be 0 <= num < den.
  301. */
  302. typedef struct AVFrac {
  303. int64_t val, num, den;
  304. } AVFrac;
  305. /*************************************************/
  306. /* input/output formats */
  307. struct AVCodecTag;
  308. /**
  309. * This structure contains the data a format has to probe a file.
  310. */
  311. typedef struct AVProbeData {
  312. const char *filename;
  313. unsigned char *buf; /**< Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero. */
  314. int buf_size; /**< Size of buf except extra allocated bytes */
  315. } AVProbeData;
  316. #define AVPROBE_SCORE_MAX 100 ///< maximum score, half of that is used for file-extension-based detection
  317. #define AVPROBE_PADDING_SIZE 32 ///< extra allocated bytes at the end of the probe buffer
  318. typedef struct AVFormatParameters {
  319. #if FF_API_FORMAT_PARAMETERS
  320. attribute_deprecated AVRational time_base;
  321. attribute_deprecated int sample_rate;
  322. attribute_deprecated int channels;
  323. attribute_deprecated int width;
  324. attribute_deprecated int height;
  325. attribute_deprecated enum PixelFormat pix_fmt;
  326. attribute_deprecated int channel; /**< Used to select DV channel. */
  327. attribute_deprecated const char *standard; /**< deprecated, use demuxer-specific options instead. */
  328. attribute_deprecated unsigned int mpeg2ts_raw:1; /**< deprecated, use mpegtsraw demuxer */
  329. /**< deprecated, use mpegtsraw demuxer-specific options instead */
  330. attribute_deprecated unsigned int mpeg2ts_compute_pcr:1;
  331. attribute_deprecated unsigned int initial_pause:1; /**< Do not begin to play the stream
  332. immediately (RTSP only). */
  333. attribute_deprecated unsigned int prealloced_context:1;
  334. #endif
  335. } AVFormatParameters;
  336. /// Demuxer will use avio_open, no opened file should be provided by the caller.
  337. #define AVFMT_NOFILE 0x0001
  338. #define AVFMT_NEEDNUMBER 0x0002 /**< Needs '%d' in filename. */
  339. #define AVFMT_SHOW_IDS 0x0008 /**< Show format stream IDs numbers. */
  340. #define AVFMT_RAWPICTURE 0x0020 /**< Format wants AVPicture structure for
  341. raw picture data. */
  342. #define AVFMT_GLOBALHEADER 0x0040 /**< Format wants global header. */
  343. #define AVFMT_NOTIMESTAMPS 0x0080 /**< Format does not need / have any timestamps. */
  344. #define AVFMT_GENERIC_INDEX 0x0100 /**< Use generic index building code. */
  345. #define AVFMT_TS_DISCONT 0x0200 /**< Format allows timestamp discontinuities. Note, muxers always require valid (monotone) timestamps */
  346. #define AVFMT_VARIABLE_FPS 0x0400 /**< Format allows variable fps. */
  347. #define AVFMT_NODIMENSIONS 0x0800 /**< Format does not need width/height */
  348. #define AVFMT_NOSTREAMS 0x1000 /**< Format does not require any streams */
  349. #define AVFMT_NOBINSEARCH 0x2000 /**< Format does not allow to fallback to binary search via read_timestamp */
  350. #define AVFMT_NOGENSEARCH 0x4000 /**< Format does not allow to fallback to generic search */
  351. #define AVFMT_NO_BYTE_SEEK 0x8000 /**< Format does not allow seeking by bytes */
  352. #define AVFMT_ALLOW_FLUSH 0x10000 /**< Format allows flushing. If not set, the muxer will not receive a NULL packet in the write_packet function. */
  353. #define AVFMT_TS_NONSTRICT 0x8000000 /**< Format does not require strictly
  354. increasing timestamps, but they must
  355. still be monotonic */
  356. /**
  357. * @addtogroup lavf_encoding
  358. * @{
  359. */
  360. typedef struct AVOutputFormat {
  361. const char *name;
  362. /**
  363. * Descriptive name for the format, meant to be more human-readable
  364. * than name. You should use the NULL_IF_CONFIG_SMALL() macro
  365. * to define it.
  366. */
  367. const char *long_name;
  368. const char *mime_type;
  369. const char *extensions; /**< comma-separated filename extensions */
  370. /**
  371. * size of private data so that it can be allocated in the wrapper
  372. */
  373. int priv_data_size;
  374. /* output support */
  375. enum CodecID audio_codec; /**< default audio codec */
  376. enum CodecID video_codec; /**< default video codec */
  377. int (*write_header)(struct AVFormatContext *);
  378. /**
  379. * Write a packet. If AVFMT_ALLOW_FLUSH is set in flags,
  380. * pkt can be NULL in order to flush data buffered in the muxer.
  381. * When flushing, return 0 if there still is more data to flush,
  382. * or 1 if everything was flushed and there is no more buffered
  383. * data.
  384. */
  385. int (*write_packet)(struct AVFormatContext *, AVPacket *pkt);
  386. int (*write_trailer)(struct AVFormatContext *);
  387. /**
  388. * can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_RAWPICTURE,
  389. * AVFMT_GLOBALHEADER, AVFMT_NOTIMESTAMPS, AVFMT_VARIABLE_FPS,
  390. * AVFMT_NODIMENSIONS, AVFMT_NOSTREAMS, AVFMT_ALLOW_FLUSH
  391. */
  392. int flags;
  393. void *dummy;
  394. int (*interleave_packet)(struct AVFormatContext *, AVPacket *out,
  395. AVPacket *in, int flush);
  396. /**
  397. * List of supported codec_id-codec_tag pairs, ordered by "better
  398. * choice first". The arrays are all terminated by CODEC_ID_NONE.
  399. */
  400. const struct AVCodecTag * const *codec_tag;
  401. enum CodecID subtitle_codec; /**< default subtitle codec */
  402. #if FF_API_OLD_METADATA2
  403. const AVMetadataConv *metadata_conv;
  404. #endif
  405. const AVClass *priv_class; ///< AVClass for the private context
  406. /**
  407. * Test if the given codec can be stored in this container.
  408. *
  409. * @return 1 if the codec is supported, 0 if it is not.
  410. * A negative number if unknown.
  411. */
  412. int (*query_codec)(enum CodecID id, int std_compliance);
  413. void (*get_output_timestamp)(struct AVFormatContext *s, int stream,
  414. int64_t *dts, int64_t *wall);
  415. /* private fields */
  416. struct AVOutputFormat *next;
  417. } AVOutputFormat;
  418. /**
  419. * @}
  420. */
  421. /**
  422. * @addtogroup lavf_decoding
  423. * @{
  424. */
  425. typedef struct AVInputFormat {
  426. /**
  427. * A comma separated list of short names for the format. New names
  428. * may be appended with a minor bump.
  429. */
  430. const char *name;
  431. /**
  432. * Descriptive name for the format, meant to be more human-readable
  433. * than name. You should use the NULL_IF_CONFIG_SMALL() macro
  434. * to define it.
  435. */
  436. const char *long_name;
  437. /**
  438. * Size of private data so that it can be allocated in the wrapper.
  439. */
  440. int priv_data_size;
  441. /**
  442. * Tell if a given file has a chance of being parsed as this format.
  443. * The buffer provided is guaranteed to be AVPROBE_PADDING_SIZE bytes
  444. * big so you do not have to check for that unless you need more.
  445. */
  446. int (*read_probe)(AVProbeData *);
  447. /**
  448. * Read the format header and initialize the AVFormatContext
  449. * structure. Return 0 if OK. 'ap' if non-NULL contains
  450. * additional parameters. Only used in raw format right
  451. * now. 'av_new_stream' should be called to create new streams.
  452. */
  453. int (*read_header)(struct AVFormatContext *,
  454. AVFormatParameters *ap);
  455. /**
  456. * Read one packet and put it in 'pkt'. pts and flags are also
  457. * set. 'av_new_stream' can be called only if the flag
  458. * AVFMTCTX_NOHEADER is used and only in the calling thread (not in a
  459. * background thread).
  460. * @return 0 on success, < 0 on error.
  461. * When returning an error, pkt must not have been allocated
  462. * or must be freed before returning
  463. */
  464. int (*read_packet)(struct AVFormatContext *, AVPacket *pkt);
  465. /**
  466. * Close the stream. The AVFormatContext and AVStreams are not
  467. * freed by this function
  468. */
  469. int (*read_close)(struct AVFormatContext *);
  470. /**
  471. * Seek to a given timestamp relative to the frames in
  472. * stream component stream_index.
  473. * @param stream_index Must not be -1.
  474. * @param flags Selects which direction should be preferred if no exact
  475. * match is available.
  476. * @return >= 0 on success (but not necessarily the new offset)
  477. */
  478. int (*read_seek)(struct AVFormatContext *,
  479. int stream_index, int64_t timestamp, int flags);
  480. /**
  481. * Get the next timestamp in stream[stream_index].time_base units.
  482. * @return the timestamp or AV_NOPTS_VALUE if an error occurred
  483. */
  484. int64_t (*read_timestamp)(struct AVFormatContext *s, int stream_index,
  485. int64_t *pos, int64_t pos_limit);
  486. /**
  487. * Can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_SHOW_IDS,
  488. * AVFMT_GENERIC_INDEX, AVFMT_TS_DISCONT, AVFMT_NOBINSEARCH,
  489. * AVFMT_NOGENSEARCH, AVFMT_NO_BYTE_SEEK.
  490. */
  491. int flags;
  492. /**
  493. * If extensions are defined, then no probe is done. You should
  494. * usually not use extension format guessing because it is not
  495. * reliable enough
  496. */
  497. const char *extensions;
  498. /**
  499. * General purpose read-only value that the format can use.
  500. */
  501. int value;
  502. /**
  503. * Start/resume playing - only meaningful if using a network-based format
  504. * (RTSP).
  505. */
  506. int (*read_play)(struct AVFormatContext *);
  507. /**
  508. * Pause playing - only meaningful if using a network-based format
  509. * (RTSP).
  510. */
  511. int (*read_pause)(struct AVFormatContext *);
  512. const struct AVCodecTag * const *codec_tag;
  513. /**
  514. * Seek to timestamp ts.
  515. * Seeking will be done so that the point from which all active streams
  516. * can be presented successfully will be closest to ts and within min/max_ts.
  517. * Active streams are all streams that have AVStream.discard < AVDISCARD_ALL.
  518. */
  519. int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
  520. #if FF_API_OLD_METADATA2
  521. const AVMetadataConv *metadata_conv;
  522. #endif
  523. const AVClass *priv_class; ///< AVClass for the private context
  524. /* private fields */
  525. struct AVInputFormat *next;
  526. } AVInputFormat;
  527. /**
  528. * @}
  529. */
  530. enum AVStreamParseType {
  531. AVSTREAM_PARSE_NONE,
  532. AVSTREAM_PARSE_FULL, /**< full parsing and repack */
  533. AVSTREAM_PARSE_HEADERS, /**< Only parse headers, do not repack. */
  534. AVSTREAM_PARSE_TIMESTAMPS, /**< full parsing and interpolation of timestamps for frames not starting on a packet boundary */
  535. AVSTREAM_PARSE_FULL_ONCE, /**< full parsing and repack of the first frame only, only implemented for H.264 currently */
  536. };
  537. typedef struct AVIndexEntry {
  538. int64_t pos;
  539. int64_t timestamp; /**<
  540. * Timestamp in AVStream.time_base units, preferably the time from which on correctly decoded frames are available
  541. * when seeking to this entry. That means preferable PTS on keyframe based formats.
  542. * But demuxers can choose to store a different timestamp, if it is more convenient for the implementation or nothing better
  543. * is known
  544. */
  545. #define AVINDEX_KEYFRAME 0x0001
  546. int flags:2;
  547. 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).
  548. int min_distance; /**< Minimum distance between this and the previous keyframe, used to avoid unneeded searching. */
  549. } AVIndexEntry;
  550. #define AV_DISPOSITION_DEFAULT 0x0001
  551. #define AV_DISPOSITION_DUB 0x0002
  552. #define AV_DISPOSITION_ORIGINAL 0x0004
  553. #define AV_DISPOSITION_COMMENT 0x0008
  554. #define AV_DISPOSITION_LYRICS 0x0010
  555. #define AV_DISPOSITION_KARAOKE 0x0020
  556. /**
  557. * Track should be used during playback by default.
  558. * Useful for subtitle track that should be displayed
  559. * even when user did not explicitly ask for subtitles.
  560. */
  561. #define AV_DISPOSITION_FORCED 0x0040
  562. #define AV_DISPOSITION_HEARING_IMPAIRED 0x0080 /**< stream for hearing impaired audiences */
  563. #define AV_DISPOSITION_VISUAL_IMPAIRED 0x0100 /**< stream for visual impaired audiences */
  564. #define AV_DISPOSITION_CLEAN_EFFECTS 0x0200 /**< stream without voice */
  565. /**
  566. * Stream structure.
  567. * New fields can be added to the end with minor version bumps.
  568. * Removal, reordering and changes to existing fields require a major
  569. * version bump.
  570. * sizeof(AVStream) must not be used outside libav*.
  571. */
  572. typedef struct AVStream {
  573. int index; /**< stream index in AVFormatContext */
  574. int id; /**< format-specific stream ID */
  575. AVCodecContext *codec; /**< codec context */
  576. /**
  577. * Real base framerate of the stream.
  578. * This is the lowest framerate with which all timestamps can be
  579. * represented accurately (it is the least common multiple of all
  580. * framerates in the stream). Note, this value is just a guess!
  581. * For example, if the time base is 1/90000 and all frames have either
  582. * approximately 3600 or 1800 timer ticks, then r_frame_rate will be 50/1.
  583. */
  584. AVRational r_frame_rate;
  585. void *priv_data;
  586. #if FF_API_REORDER_PRIVATE
  587. /* internal data used in av_find_stream_info() */
  588. int64_t first_dts;
  589. #endif
  590. /**
  591. * encoding: pts generation when outputting stream
  592. */
  593. struct AVFrac pts;
  594. /**
  595. * This is the fundamental unit of time (in seconds) in terms
  596. * of which frame timestamps are represented. For fixed-fps content,
  597. * time base should be 1/framerate and timestamp increments should be 1.
  598. * decoding: set by libavformat
  599. * encoding: set by libavformat in av_write_header
  600. */
  601. AVRational time_base;
  602. #if FF_API_REORDER_PRIVATE
  603. int pts_wrap_bits; /**< number of bits in pts (used for wrapping control) */
  604. #endif
  605. #if FF_API_STREAM_COPY
  606. /* ffmpeg.c private use */
  607. attribute_deprecated int stream_copy; /**< If set, just copy stream. */
  608. #endif
  609. enum AVDiscard discard; ///< Selects which packets can be discarded at will and do not need to be demuxed.
  610. #if FF_API_AVSTREAM_QUALITY
  611. //FIXME move stuff to a flags field?
  612. /**
  613. * Quality, as it has been removed from AVCodecContext and put in AVVideoFrame.
  614. * MN: dunno if that is the right place for it
  615. */
  616. attribute_deprecated float quality;
  617. #endif
  618. /**
  619. * Decoding: pts of the first frame of the stream in presentation order, in stream time base.
  620. * Only set this if you are absolutely 100% sure that the value you set
  621. * it to really is the pts of the first frame.
  622. * This may be undefined (AV_NOPTS_VALUE).
  623. * @note The ASF header does NOT contain a correct start_time the ASF
  624. * demuxer must NOT set this.
  625. */
  626. int64_t start_time;
  627. /**
  628. * Decoding: duration of the stream, in stream time base.
  629. * If a source file does not specify a duration, but does specify
  630. * a bitrate, this value will be estimated from bitrate and file size.
  631. */
  632. int64_t duration;
  633. #if FF_API_REORDER_PRIVATE
  634. /* av_read_frame() support */
  635. enum AVStreamParseType need_parsing;
  636. struct AVCodecParserContext *parser;
  637. int64_t cur_dts;
  638. int last_IP_duration;
  639. int64_t last_IP_pts;
  640. /* av_seek_frame() support */
  641. AVIndexEntry *index_entries; /**< Only used if the format does not
  642. support seeking natively. */
  643. int nb_index_entries;
  644. unsigned int index_entries_allocated_size;
  645. #endif
  646. int64_t nb_frames; ///< number of frames in this stream if known or 0
  647. int disposition; /**< AV_DISPOSITION_* bit field */
  648. #if FF_API_REORDER_PRIVATE
  649. AVProbeData probe_data;
  650. #define MAX_REORDER_DELAY 16
  651. int64_t pts_buffer[MAX_REORDER_DELAY+1];
  652. #endif
  653. /**
  654. * sample aspect ratio (0 if unknown)
  655. * - encoding: Set by user.
  656. * - decoding: Set by libavformat.
  657. */
  658. AVRational sample_aspect_ratio;
  659. AVDictionary *metadata;
  660. #if FF_API_REORDER_PRIVATE
  661. /* Intended mostly for av_read_frame() support. Not supposed to be used by */
  662. /* external applications; try to use something else if at all possible. */
  663. const uint8_t *cur_ptr;
  664. int cur_len;
  665. AVPacket cur_pkt;
  666. // Timestamp generation support:
  667. /**
  668. * Timestamp corresponding to the last dts sync point.
  669. *
  670. * Initialized when AVCodecParserContext.dts_sync_point >= 0 and
  671. * a DTS is received from the underlying container. Otherwise set to
  672. * AV_NOPTS_VALUE by default.
  673. */
  674. int64_t reference_dts;
  675. /**
  676. * Number of packets to buffer for codec probing
  677. * NOT PART OF PUBLIC API
  678. */
  679. #define MAX_PROBE_PACKETS 2500
  680. int probe_packets;
  681. /**
  682. * last packet in packet_buffer for this stream when muxing.
  683. * Used internally, NOT PART OF PUBLIC API, do not read or
  684. * write from outside of libav*
  685. */
  686. struct AVPacketList *last_in_packet_buffer;
  687. #endif
  688. /**
  689. * Average framerate
  690. */
  691. AVRational avg_frame_rate;
  692. /*****************************************************************
  693. * All fields below this line are not part of the public API. They
  694. * may not be used outside of libavformat and can be changed and
  695. * removed at will.
  696. * New public fields should be added right above.
  697. *****************************************************************
  698. */
  699. /**
  700. * Number of frames that have been demuxed during av_find_stream_info()
  701. */
  702. int codec_info_nb_frames;
  703. /**
  704. * Stream Identifier
  705. * This is the MPEG-TS stream identifier +1
  706. * 0 means unknown
  707. */
  708. int stream_identifier;
  709. int64_t interleaver_chunk_size;
  710. int64_t interleaver_chunk_duration;
  711. /**
  712. * Stream information used internally by av_find_stream_info()
  713. */
  714. #define MAX_STD_TIMEBASES (60*12+5)
  715. struct {
  716. int64_t last_dts;
  717. int64_t duration_gcd;
  718. int duration_count;
  719. double duration_error[2][2][MAX_STD_TIMEBASES];
  720. int64_t codec_info_duration;
  721. int nb_decoded_frames;
  722. } *info;
  723. /**
  724. * flag to indicate that probing is requested
  725. * NOT PART OF PUBLIC API
  726. */
  727. int request_probe;
  728. #if !FF_API_REORDER_PRIVATE
  729. const uint8_t *cur_ptr;
  730. int cur_len;
  731. AVPacket cur_pkt;
  732. // Timestamp generation support:
  733. /**
  734. * Timestamp corresponding to the last dts sync point.
  735. *
  736. * Initialized when AVCodecParserContext.dts_sync_point >= 0 and
  737. * a DTS is received from the underlying container. Otherwise set to
  738. * AV_NOPTS_VALUE by default.
  739. */
  740. int64_t reference_dts;
  741. int64_t first_dts;
  742. int64_t cur_dts;
  743. int last_IP_duration;
  744. int64_t last_IP_pts;
  745. /**
  746. * Number of packets to buffer for codec probing
  747. */
  748. #define MAX_PROBE_PACKETS 2500
  749. int probe_packets;
  750. /**
  751. * last packet in packet_buffer for this stream when muxing.
  752. */
  753. struct AVPacketList *last_in_packet_buffer;
  754. AVProbeData probe_data;
  755. #define MAX_REORDER_DELAY 16
  756. int64_t pts_buffer[MAX_REORDER_DELAY+1];
  757. /* av_read_frame() support */
  758. enum AVStreamParseType need_parsing;
  759. struct AVCodecParserContext *parser;
  760. AVIndexEntry *index_entries; /**< Only used if the format does not
  761. support seeking natively. */
  762. int nb_index_entries;
  763. unsigned int index_entries_allocated_size;
  764. int pts_wrap_bits; /**< number of bits in pts (used for wrapping control) */
  765. #endif
  766. } AVStream;
  767. #define AV_PROGRAM_RUNNING 1
  768. /**
  769. * New fields can be added to the end with minor version bumps.
  770. * Removal, reordering and changes to existing fields require a major
  771. * version bump.
  772. * sizeof(AVProgram) must not be used outside libav*.
  773. */
  774. typedef struct AVProgram {
  775. int id;
  776. int flags;
  777. enum AVDiscard discard; ///< selects which program to discard and which to feed to the caller
  778. unsigned int *stream_index;
  779. unsigned int nb_stream_indexes;
  780. AVDictionary *metadata;
  781. int program_num;
  782. int pmt_pid;
  783. int pcr_pid;
  784. } AVProgram;
  785. #define AVFMTCTX_NOHEADER 0x0001 /**< signal that no header is present
  786. (streams are added dynamically) */
  787. typedef struct AVChapter {
  788. int id; ///< unique ID to identify the chapter
  789. AVRational time_base; ///< time base in which the start/end timestamps are specified
  790. int64_t start, end; ///< chapter start/end time in time_base units
  791. AVDictionary *metadata;
  792. } AVChapter;
  793. /**
  794. * Format I/O context.
  795. * New fields can be added to the end with minor version bumps.
  796. * Removal, reordering and changes to existing fields require a major
  797. * version bump.
  798. * sizeof(AVFormatContext) must not be used outside libav*, use
  799. * avformat_alloc_context() to create an AVFormatContext.
  800. */
  801. typedef struct AVFormatContext {
  802. /**
  803. * A class for logging and AVOptions. Set by avformat_alloc_context().
  804. * Exports (de)muxer private options if they exist.
  805. */
  806. const AVClass *av_class;
  807. /**
  808. * Can only be iformat or oformat, not both at the same time.
  809. *
  810. * decoding: set by avformat_open_input().
  811. * encoding: set by the user.
  812. */
  813. struct AVInputFormat *iformat;
  814. struct AVOutputFormat *oformat;
  815. /**
  816. * Format private data. This is an AVOptions-enabled struct
  817. * if and only if iformat/oformat.priv_class is not NULL.
  818. */
  819. void *priv_data;
  820. /*
  821. * I/O context.
  822. *
  823. * decoding: either set by the user before avformat_open_input() (then
  824. * the user must close it manually) or set by avformat_open_input().
  825. * encoding: set by the user.
  826. *
  827. * Do NOT set this field if AVFMT_NOFILE flag is set in
  828. * iformat/oformat.flags. In such a case, the (de)muxer will handle
  829. * I/O in some other way and this field will be NULL.
  830. */
  831. AVIOContext *pb;
  832. /**
  833. * A list of all streams in the file. New streams are created with
  834. * avformat_new_stream().
  835. *
  836. * decoding: streams are created by libavformat in avformat_open_input().
  837. * If AVFMTCTX_NOHEADER is set in ctx_flags, then new streams may also
  838. * appear in av_read_frame().
  839. * encoding: streams are created by the user before avformat_write_header().
  840. */
  841. unsigned int nb_streams;
  842. AVStream **streams;
  843. char filename[1024]; /**< input or output filename */
  844. /* stream info */
  845. #if FF_API_TIMESTAMP
  846. /**
  847. * @deprecated use 'creation_time' metadata tag instead
  848. */
  849. attribute_deprecated int64_t timestamp;
  850. #endif
  851. int ctx_flags; /**< Format-specific flags, see AVFMTCTX_xx */
  852. #if FF_API_REORDER_PRIVATE
  853. /* private data for pts handling (do not modify directly). */
  854. /**
  855. * This buffer is only needed when packets were already buffered but
  856. * not decoded, for example to get the codec parameters in MPEG
  857. * streams.
  858. */
  859. struct AVPacketList *packet_buffer;
  860. #endif
  861. /**
  862. * Decoding: position of the first frame of the component, in
  863. * AV_TIME_BASE fractional seconds. NEVER set this value directly:
  864. * It is deduced from the AVStream values.
  865. */
  866. int64_t start_time;
  867. /**
  868. * Decoding: duration of the stream, in AV_TIME_BASE fractional
  869. * seconds. Only set this value if you know none of the individual stream
  870. * durations and also do not set any of them. This is deduced from the
  871. * AVStream values if not set.
  872. */
  873. int64_t duration;
  874. #if FF_API_FILESIZE
  875. /**
  876. * decoding: total file size, 0 if unknown
  877. */
  878. attribute_deprecated int64_t file_size;
  879. #endif
  880. /**
  881. * Decoding: total stream bitrate in bit/s, 0 if not
  882. * available. Never set it directly if the file_size and the
  883. * duration are known as FFmpeg can compute it automatically.
  884. */
  885. int bit_rate;
  886. #if FF_API_REORDER_PRIVATE
  887. /* av_read_frame() support */
  888. AVStream *cur_st;
  889. /* av_seek_frame() support */
  890. int64_t data_offset; /**< offset of the first packet */
  891. #endif
  892. #if FF_API_MUXRATE
  893. /**
  894. * use mpeg muxer private options instead
  895. */
  896. attribute_deprecated int mux_rate;
  897. #endif
  898. unsigned int packet_size;
  899. #if FF_API_PRELOAD
  900. attribute_deprecated int preload;
  901. #endif
  902. int max_delay;
  903. #if FF_API_LOOP_OUTPUT
  904. #define AVFMT_NOOUTPUTLOOP -1
  905. #define AVFMT_INFINITEOUTPUTLOOP 0
  906. /**
  907. * number of times to loop output in formats that support it
  908. *
  909. * @deprecated use the 'loop' private option in the gif muxer.
  910. */
  911. attribute_deprecated int loop_output;
  912. #endif
  913. int flags;
  914. #define AVFMT_FLAG_GENPTS 0x0001 ///< Generate missing pts even if it requires parsing future frames.
  915. #define AVFMT_FLAG_IGNIDX 0x0002 ///< Ignore index.
  916. #define AVFMT_FLAG_NONBLOCK 0x0004 ///< Do not block when reading packets from input.
  917. #define AVFMT_FLAG_IGNDTS 0x0008 ///< Ignore DTS on frames that contain both DTS & PTS
  918. #define AVFMT_FLAG_NOFILLIN 0x0010 ///< Do not infer any values from other values, just return what is stored in the container
  919. #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
  920. #if FF_API_FLAG_RTP_HINT
  921. #define AVFMT_FLAG_RTP_HINT 0x0040 ///< Deprecated, use the -movflags rtphint muxer specific AVOption instead
  922. #endif
  923. #define AVFMT_FLAG_CUSTOM_IO 0x0080 ///< The caller has supplied a custom AVIOContext, don't avio_close() it.
  924. #define AVFMT_FLAG_DISCARD_CORRUPT 0x0100 ///< Discard frames marked corrupted
  925. #define AVFMT_FLAG_MP4A_LATM 0x8000 ///< Enable RTP MP4A-LATM payload
  926. #define AVFMT_FLAG_SORT_DTS 0x10000 ///< try to interleave outputted packets by dts (using this flag can slow demuxing down)
  927. #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)
  928. #define AVFMT_FLAG_KEEP_SIDE_DATA 0x40000 ///< Dont merge side data but keep it seperate.
  929. #if FF_API_LOOP_INPUT
  930. /**
  931. * @deprecated, use the 'loop' img2 demuxer private option.
  932. */
  933. attribute_deprecated int loop_input;
  934. #endif
  935. /**
  936. * decoding: size of data to probe; encoding: unused.
  937. */
  938. unsigned int probesize;
  939. /**
  940. * decoding: maximum time (in AV_TIME_BASE units) during which the input should
  941. * be analyzed in avformat_find_stream_info().
  942. */
  943. int max_analyze_duration;
  944. const uint8_t *key;
  945. int keylen;
  946. unsigned int nb_programs;
  947. AVProgram **programs;
  948. /**
  949. * Forced video codec_id.
  950. * Demuxing: Set by user.
  951. */
  952. enum CodecID video_codec_id;
  953. /**
  954. * Forced audio codec_id.
  955. * Demuxing: Set by user.
  956. */
  957. enum CodecID audio_codec_id;
  958. /**
  959. * Forced subtitle codec_id.
  960. * Demuxing: Set by user.
  961. */
  962. enum CodecID subtitle_codec_id;
  963. /**
  964. * Maximum amount of memory in bytes to use for the index of each stream.
  965. * If the index exceeds this size, entries will be discarded as
  966. * needed to maintain a smaller size. This can lead to slower or less
  967. * accurate seeking (depends on demuxer).
  968. * Demuxers for which a full in-memory index is mandatory will ignore
  969. * this.
  970. * muxing : unused
  971. * demuxing: set by user
  972. */
  973. unsigned int max_index_size;
  974. /**
  975. * Maximum amount of memory in bytes to use for buffering frames
  976. * obtained from realtime capture devices.
  977. */
  978. unsigned int max_picture_buffer;
  979. unsigned int nb_chapters;
  980. AVChapter **chapters;
  981. /**
  982. * Flags to enable debugging.
  983. */
  984. int debug;
  985. #define FF_FDEBUG_TS 0x0001
  986. #if FF_API_REORDER_PRIVATE
  987. /**
  988. * Raw packets from the demuxer, prior to parsing and decoding.
  989. * This buffer is used for buffering packets until the codec can
  990. * be identified, as parsing cannot be done without knowing the
  991. * codec.
  992. */
  993. struct AVPacketList *raw_packet_buffer;
  994. struct AVPacketList *raw_packet_buffer_end;
  995. struct AVPacketList *packet_buffer_end;
  996. #endif
  997. AVDictionary *metadata;
  998. #if FF_API_REORDER_PRIVATE
  999. /**
  1000. * Remaining size available for raw_packet_buffer, in bytes.
  1001. * NOT PART OF PUBLIC API
  1002. */
  1003. #define RAW_PACKET_BUFFER_SIZE 2500000
  1004. int raw_packet_buffer_remaining_size;
  1005. #endif
  1006. /**
  1007. * Start time of the stream in real world time, in microseconds
  1008. * since the unix epoch (00:00 1st January 1970). That is, pts=0
  1009. * in the stream was captured at this real world time.
  1010. * - encoding: Set by user.
  1011. * - decoding: Unused.
  1012. */
  1013. int64_t start_time_realtime;
  1014. /**
  1015. * decoding: number of frames used to probe fps
  1016. */
  1017. int fps_probe_size;
  1018. /**
  1019. * Error recognition; higher values will detect more errors but may
  1020. * misdetect some more or less valid parts as errors.
  1021. * - encoding: unused
  1022. * - decoding: Set by user.
  1023. */
  1024. int error_recognition;
  1025. /**
  1026. * Custom interrupt callbacks for the I/O layer.
  1027. *
  1028. * decoding: set by the user before avformat_open_input().
  1029. * encoding: set by the user before avformat_write_header()
  1030. * (mainly useful for AVFMT_NOFILE formats). The callback
  1031. * should also be passed to avio_open2() if it's used to
  1032. * open the file.
  1033. */
  1034. AVIOInterruptCB interrupt_callback;
  1035. /**
  1036. * Transport stream id.
  1037. * This will be moved into demuxer private options. Thus no API/ABI compatibility
  1038. */
  1039. int ts_id;
  1040. /**
  1041. * Audio preload in microseconds.
  1042. * Note, not all formats support this and unpredictable things may happen if it is used when not supported.
  1043. * - encoding: Set by user via AVOptions (NO direct access)
  1044. * - decoding: unused
  1045. */
  1046. int audio_preload;
  1047. /**
  1048. * Max chunk time in microseconds.
  1049. * Note, not all formats support this and unpredictable things may happen if it is used when not supported.
  1050. * - encoding: Set by user via AVOptions (NO direct access)
  1051. * - decoding: unused
  1052. */
  1053. int max_chunk_duration;
  1054. /**
  1055. * Max chunk size in bytes
  1056. * Note, not all formats support this and unpredictable things may happen if it is used when not supported.
  1057. * - encoding: Set by user via AVOptions (NO direct access)
  1058. * - decoding: unused
  1059. */
  1060. int max_chunk_size;
  1061. /*****************************************************************
  1062. * All fields below this line are not part of the public API. They
  1063. * may not be used outside of libavformat and can be changed and
  1064. * removed at will.
  1065. * New public fields should be added right above.
  1066. *****************************************************************
  1067. */
  1068. #if !FF_API_REORDER_PRIVATE
  1069. /**
  1070. * Raw packets from the demuxer, prior to parsing and decoding.
  1071. * This buffer is used for buffering packets until the codec can
  1072. * be identified, as parsing cannot be done without knowing the
  1073. * codec.
  1074. */
  1075. struct AVPacketList *raw_packet_buffer;
  1076. struct AVPacketList *raw_packet_buffer_end;
  1077. /**
  1078. * Remaining size available for raw_packet_buffer, in bytes.
  1079. */
  1080. #define RAW_PACKET_BUFFER_SIZE 2500000
  1081. int raw_packet_buffer_remaining_size;
  1082. /**
  1083. * This buffer is only needed when packets were already buffered but
  1084. * not decoded, for example to get the codec parameters in MPEG
  1085. * streams.
  1086. */
  1087. struct AVPacketList *packet_buffer;
  1088. struct AVPacketList *packet_buffer_end;
  1089. /* av_read_frame() support */
  1090. AVStream *cur_st;
  1091. /* av_seek_frame() support */
  1092. int64_t data_offset; /**< offset of the first packet */
  1093. #endif
  1094. } AVFormatContext;
  1095. typedef struct AVPacketList {
  1096. AVPacket pkt;
  1097. struct AVPacketList *next;
  1098. } AVPacketList;
  1099. /**
  1100. * @defgroup lavf_core Core functions
  1101. * @ingroup libavf
  1102. *
  1103. * Functions for querying libavformat capabilities, allocating core structures,
  1104. * etc.
  1105. * @{
  1106. */
  1107. /**
  1108. * Return the LIBAVFORMAT_VERSION_INT constant.
  1109. */
  1110. unsigned avformat_version(void);
  1111. /**
  1112. * Return the libavformat build-time configuration.
  1113. */
  1114. const char *avformat_configuration(void);
  1115. /**
  1116. * Return the libavformat license.
  1117. */
  1118. const char *avformat_license(void);
  1119. /**
  1120. * Initialize libavformat and register all the muxers, demuxers and
  1121. * protocols. If you do not call this function, then you can select
  1122. * exactly which formats you want to support.
  1123. *
  1124. * @see av_register_input_format()
  1125. * @see av_register_output_format()
  1126. * @see av_register_protocol()
  1127. */
  1128. void av_register_all(void);
  1129. void av_register_input_format(AVInputFormat *format);
  1130. void av_register_output_format(AVOutputFormat *format);
  1131. /**
  1132. * Do global initialization of network components. This is optional,
  1133. * but recommended, since it avoids the overhead of implicitly
  1134. * doing the setup for each session.
  1135. *
  1136. * Calling this function will become mandatory if using network
  1137. * protocols at some major version bump.
  1138. */
  1139. int avformat_network_init(void);
  1140. /**
  1141. * Undo the initialization done by avformat_network_init.
  1142. */
  1143. int avformat_network_deinit(void);
  1144. /**
  1145. * If f is NULL, returns the first registered input format,
  1146. * if f is non-NULL, returns the next registered input format after f
  1147. * or NULL if f is the last one.
  1148. */
  1149. AVInputFormat *av_iformat_next(AVInputFormat *f);
  1150. /**
  1151. * If f is NULL, returns the first registered output format,
  1152. * if f is non-NULL, returns the next registered output format after f
  1153. * or NULL if f is the last one.
  1154. */
  1155. AVOutputFormat *av_oformat_next(AVOutputFormat *f);
  1156. /**
  1157. * Allocate an AVFormatContext.
  1158. * avformat_free_context() can be used to free the context and everything
  1159. * allocated by the framework within it.
  1160. */
  1161. AVFormatContext *avformat_alloc_context(void);
  1162. /**
  1163. * Free an AVFormatContext and all its streams.
  1164. * @param s context to free
  1165. */
  1166. void avformat_free_context(AVFormatContext *s);
  1167. /**
  1168. * Get the AVClass for AVFormatContext. It can be used in combination with
  1169. * AV_OPT_SEARCH_FAKE_OBJ for examining options.
  1170. *
  1171. * @see av_opt_find().
  1172. */
  1173. const AVClass *avformat_get_class(void);
  1174. /**
  1175. * Add a new stream to a media file.
  1176. *
  1177. * When demuxing, it is called by the demuxer in read_header(). If the
  1178. * flag AVFMTCTX_NOHEADER is set in s.ctx_flags, then it may also
  1179. * be called in read_packet().
  1180. *
  1181. * When muxing, should be called by the user before avformat_write_header().
  1182. *
  1183. * @param c If non-NULL, the AVCodecContext corresponding to the new stream
  1184. * will be initialized to use this codec. This is needed for e.g. codec-specific
  1185. * defaults to be set, so codec should be provided if it is known.
  1186. *
  1187. * @return newly created stream or NULL on error.
  1188. */
  1189. AVStream *avformat_new_stream(AVFormatContext *s, AVCodec *c);
  1190. AVProgram *av_new_program(AVFormatContext *s, int id);
  1191. /**
  1192. * @}
  1193. */
  1194. #if FF_API_GUESS_IMG2_CODEC
  1195. attribute_deprecated enum CodecID av_guess_image2_codec(const char *filename);
  1196. #endif
  1197. #if FF_API_PKT_DUMP
  1198. attribute_deprecated void av_pkt_dump(FILE *f, AVPacket *pkt, int dump_payload);
  1199. attribute_deprecated void av_pkt_dump_log(void *avcl, int level, AVPacket *pkt,
  1200. int dump_payload);
  1201. #endif
  1202. #if FF_API_ALLOC_OUTPUT_CONTEXT
  1203. /**
  1204. * @deprecated deprecated in favor of avformat_alloc_output_context2()
  1205. */
  1206. attribute_deprecated
  1207. AVFormatContext *avformat_alloc_output_context(const char *format,
  1208. AVOutputFormat *oformat,
  1209. const char *filename);
  1210. #endif
  1211. /**
  1212. * Allocate an AVFormatContext for an output format.
  1213. * avformat_free_context() can be used to free the context and
  1214. * everything allocated by the framework within it.
  1215. *
  1216. * @param *ctx is set to the created format context, or to NULL in
  1217. * case of failure
  1218. * @param oformat format to use for allocating the context, if NULL
  1219. * format_name and filename are used instead
  1220. * @param format_name the name of output format to use for allocating the
  1221. * context, if NULL filename is used instead
  1222. * @param filename the name of the filename to use for allocating the
  1223. * context, may be NULL
  1224. * @return >= 0 in case of success, a negative AVERROR code in case of
  1225. * failure
  1226. */
  1227. int avformat_alloc_output_context2(AVFormatContext **ctx, AVOutputFormat *oformat,
  1228. const char *format_name, const char *filename);
  1229. /**
  1230. * @addtogroup lavf_decoding
  1231. * @{
  1232. */
  1233. /**
  1234. * Find AVInputFormat based on the short name of the input format.
  1235. */
  1236. AVInputFormat *av_find_input_format(const char *short_name);
  1237. /**
  1238. * Guess the file format.
  1239. *
  1240. * @param is_opened Whether the file is already opened; determines whether
  1241. * demuxers with or without AVFMT_NOFILE are probed.
  1242. */
  1243. AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened);
  1244. /**
  1245. * Guess the file format.
  1246. *
  1247. * @param is_opened Whether the file is already opened; determines whether
  1248. * demuxers with or without AVFMT_NOFILE are probed.
  1249. * @param score_max A probe score larger that this is required to accept a
  1250. * detection, the variable is set to the actual detection
  1251. * score afterwards.
  1252. * If the score is <= AVPROBE_SCORE_MAX / 4 it is recommended
  1253. * to retry with a larger probe buffer.
  1254. */
  1255. AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max);
  1256. /**
  1257. * Guess the file format.
  1258. *
  1259. * @param is_opened Whether the file is already opened; determines whether
  1260. * demuxers with or without AVFMT_NOFILE are probed.
  1261. * @param score_ret The score of the best detection.
  1262. */
  1263. AVInputFormat *av_probe_input_format3(AVProbeData *pd, int is_opened, int *score_ret);
  1264. /**
  1265. * Probe a bytestream to determine the input format. Each time a probe returns
  1266. * with a score that is too low, the probe buffer size is increased and another
  1267. * attempt is made. When the maximum probe size is reached, the input format
  1268. * with the highest score is returned.
  1269. *
  1270. * @param pb the bytestream to probe
  1271. * @param fmt the input format is put here
  1272. * @param filename the filename of the stream
  1273. * @param logctx the log context
  1274. * @param offset the offset within the bytestream to probe from
  1275. * @param max_probe_size the maximum probe buffer size (zero for default)
  1276. * @return 0 in case of success, a negative value corresponding to an
  1277. * AVERROR code otherwise
  1278. */
  1279. int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt,
  1280. const char *filename, void *logctx,
  1281. unsigned int offset, unsigned int max_probe_size);
  1282. #if FF_API_FORMAT_PARAMETERS
  1283. /**
  1284. * Allocate all the structures needed to read an input stream.
  1285. * This does not open the needed codecs for decoding the stream[s].
  1286. * @deprecated use avformat_open_input instead.
  1287. */
  1288. attribute_deprecated int av_open_input_stream(AVFormatContext **ic_ptr,
  1289. AVIOContext *pb, const char *filename,
  1290. AVInputFormat *fmt, AVFormatParameters *ap);
  1291. /**
  1292. * Open a media file as input. The codecs are not opened. Only the file
  1293. * header (if present) is read.
  1294. *
  1295. * @param ic_ptr The opened media file handle is put here.
  1296. * @param filename filename to open
  1297. * @param fmt If non-NULL, force the file format to use.
  1298. * @param buf_size optional buffer size (zero if default is OK)
  1299. * @param ap Additional parameters needed when opening the file
  1300. * (NULL if default).
  1301. * @return 0 if OK, AVERROR_xxx otherwise
  1302. *
  1303. * @deprecated use avformat_open_input instead.
  1304. */
  1305. attribute_deprecated int av_open_input_file(AVFormatContext **ic_ptr, const char *filename,
  1306. AVInputFormat *fmt,
  1307. int buf_size,
  1308. AVFormatParameters *ap);
  1309. #endif
  1310. /**
  1311. * Open an input stream and read the header. The codecs are not opened.
  1312. * The stream must be closed with av_close_input_file().
  1313. *
  1314. * @param ps Pointer to user-supplied AVFormatContext (allocated by avformat_alloc_context).
  1315. * May be a pointer to NULL, in which case an AVFormatContext is allocated by this
  1316. * function and written into ps.
  1317. * Note that a user-supplied AVFormatContext will be freed on failure.
  1318. * @param filename Name of the stream to open.
  1319. * @param fmt If non-NULL, this parameter forces a specific input format.
  1320. * Otherwise the format is autodetected.
  1321. * @param options A dictionary filled with AVFormatContext and demuxer-private options.
  1322. * On return this parameter will be destroyed and replaced with a dict containing
  1323. * options that were not found. May be NULL.
  1324. *
  1325. * @return 0 on success, a negative AVERROR on failure.
  1326. *
  1327. * @note If you want to use custom IO, preallocate the format context and set its pb field.
  1328. */
  1329. int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options);
  1330. int av_demuxer_open(AVFormatContext *ic, AVFormatParameters *ap);
  1331. #if FF_API_FORMAT_PARAMETERS
  1332. /**
  1333. * Read packets of a media file to get stream information. This
  1334. * is useful for file formats with no headers such as MPEG. This
  1335. * function also computes the real framerate in case of MPEG-2 repeat
  1336. * frame mode.
  1337. * The logical file position is not changed by this function;
  1338. * examined packets may be buffered for later processing.
  1339. *
  1340. * @param ic media file handle
  1341. * @return >=0 if OK, AVERROR_xxx on error
  1342. * @todo Let the user decide somehow what information is needed so that
  1343. * we do not waste time getting stuff the user does not need.
  1344. *
  1345. * @deprecated use avformat_find_stream_info.
  1346. */
  1347. attribute_deprecated
  1348. int av_find_stream_info(AVFormatContext *ic);
  1349. #endif
  1350. /**
  1351. * Read packets of a media file to get stream information. This
  1352. * is useful for file formats with no headers such as MPEG. This
  1353. * function also computes the real framerate in case of MPEG-2 repeat
  1354. * frame mode.
  1355. * The logical file position is not changed by this function;
  1356. * examined packets may be buffered for later processing.
  1357. *
  1358. * @param ic media file handle
  1359. * @param options If non-NULL, an ic.nb_streams long array of pointers to
  1360. * dictionaries, where i-th member contains options for
  1361. * codec corresponding to i-th stream.
  1362. * On return each dictionary will be filled with options that were not found.
  1363. * @return >=0 if OK, AVERROR_xxx on error
  1364. *
  1365. * @note this function isn't guaranteed to open all the codecs, so
  1366. * options being non-empty at return is a perfectly normal behavior.
  1367. *
  1368. * @todo Let the user decide somehow what information is needed so that
  1369. * we do not waste time getting stuff the user does not need.
  1370. */
  1371. int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options);
  1372. /**
  1373. * Find the programs which belong to a given stream.
  1374. *
  1375. * @param ic media file handle
  1376. * @param last the last found program, the search will start after this
  1377. * program, or from the beginning if it is NULL
  1378. * @param s stream index
  1379. * @return the next program which belongs to s, NULL if no program is found or
  1380. * the last program is not among the programs of ic.
  1381. */
  1382. AVProgram *av_find_program_from_stream(AVFormatContext *ic, AVProgram *last, int s);
  1383. /**
  1384. * Find the "best" stream in the file.
  1385. * The best stream is determined according to various heuristics as the most
  1386. * likely to be what the user expects.
  1387. * If the decoder parameter is non-NULL, av_find_best_stream will find the
  1388. * default decoder for the stream's codec; streams for which no decoder can
  1389. * be found are ignored.
  1390. *
  1391. * @param ic media file handle
  1392. * @param type stream type: video, audio, subtitles, etc.
  1393. * @param wanted_stream_nb user-requested stream number,
  1394. * or -1 for automatic selection
  1395. * @param related_stream try to find a stream related (eg. in the same
  1396. * program) to this one, or -1 if none
  1397. * @param decoder_ret if non-NULL, returns the decoder for the
  1398. * selected stream
  1399. * @param flags flags; none are currently defined
  1400. * @return the non-negative stream number in case of success,
  1401. * AVERROR_STREAM_NOT_FOUND if no stream with the requested type
  1402. * could be found,
  1403. * AVERROR_DECODER_NOT_FOUND if streams were found but no decoder
  1404. * @note If av_find_best_stream returns successfully and decoder_ret is not
  1405. * NULL, then *decoder_ret is guaranteed to be set to a valid AVCodec.
  1406. */
  1407. int av_find_best_stream(AVFormatContext *ic,
  1408. enum AVMediaType type,
  1409. int wanted_stream_nb,
  1410. int related_stream,
  1411. AVCodec **decoder_ret,
  1412. int flags);
  1413. /**
  1414. * Read a transport packet from a media file.
  1415. *
  1416. * This function is obsolete and should never be used.
  1417. * Use av_read_frame() instead.
  1418. *
  1419. * @param s media file handle
  1420. * @param pkt is filled
  1421. * @return 0 if OK, AVERROR_xxx on error
  1422. */
  1423. int av_read_packet(AVFormatContext *s, AVPacket *pkt);
  1424. /**
  1425. * Return the next frame of a stream.
  1426. * This function returns what is stored in the file, and does not validate
  1427. * that what is there are valid frames for the decoder. It will split what is
  1428. * stored in the file into frames and return one for each call. It will not
  1429. * omit invalid data between valid frames so as to give the decoder the maximum
  1430. * information possible for decoding.
  1431. *
  1432. * The returned packet is valid
  1433. * until the next av_read_frame() or until av_close_input_file() and
  1434. * must be freed with av_free_packet. For video, the packet contains
  1435. * exactly one frame. For audio, it contains an integer number of
  1436. * frames if each frame has a known fixed size (e.g. PCM or ADPCM
  1437. * data). If the audio frames have a variable size (e.g. MPEG audio),
  1438. * then it contains one frame.
  1439. *
  1440. * pkt->pts, pkt->dts and pkt->duration are always set to correct
  1441. * values in AVStream.time_base units (and guessed if the format cannot
  1442. * provide them). pkt->pts can be AV_NOPTS_VALUE if the video format
  1443. * has B-frames, so it is better to rely on pkt->dts if you do not
  1444. * decompress the payload.
  1445. *
  1446. * @return 0 if OK, < 0 on error or end of file
  1447. */
  1448. int av_read_frame(AVFormatContext *s, AVPacket *pkt);
  1449. /**
  1450. * Seek to the keyframe at timestamp.
  1451. * 'timestamp' in 'stream_index'.
  1452. * @param stream_index If stream_index is (-1), a default
  1453. * stream is selected, and timestamp is automatically converted
  1454. * from AV_TIME_BASE units to the stream specific time_base.
  1455. * @param timestamp Timestamp in AVStream.time_base units
  1456. * or, if no stream is specified, in AV_TIME_BASE units.
  1457. * @param flags flags which select direction and seeking mode
  1458. * @return >= 0 on success
  1459. */
  1460. int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp,
  1461. int flags);
  1462. /**
  1463. * Seek to timestamp ts.
  1464. * Seeking will be done so that the point from which all active streams
  1465. * can be presented successfully will be closest to ts and within min/max_ts.
  1466. * Active streams are all streams that have AVStream.discard < AVDISCARD_ALL.
  1467. *
  1468. * If flags contain AVSEEK_FLAG_BYTE, then all timestamps are in bytes and
  1469. * are the file position (this may not be supported by all demuxers).
  1470. * If flags contain AVSEEK_FLAG_FRAME, then all timestamps are in frames
  1471. * in the stream with stream_index (this may not be supported by all demuxers).
  1472. * Otherwise all timestamps are in units of the stream selected by stream_index
  1473. * or if stream_index is -1, in AV_TIME_BASE units.
  1474. * If flags contain AVSEEK_FLAG_ANY, then non-keyframes are treated as
  1475. * keyframes (this may not be supported by all demuxers).
  1476. *
  1477. * @param stream_index index of the stream which is used as time base reference
  1478. * @param min_ts smallest acceptable timestamp
  1479. * @param ts target timestamp
  1480. * @param max_ts largest acceptable timestamp
  1481. * @param flags flags
  1482. * @return >=0 on success, error code otherwise
  1483. *
  1484. * @note This is part of the new seek API which is still under construction.
  1485. * Thus do not use this yet. It may change at any time, do not expect
  1486. * ABI compatibility yet!
  1487. */
  1488. int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
  1489. /**
  1490. * Start playing a network-based stream (e.g. RTSP stream) at the
  1491. * current position.
  1492. */
  1493. int av_read_play(AVFormatContext *s);
  1494. /**
  1495. * Pause a network-based stream (e.g. RTSP stream).
  1496. *
  1497. * Use av_read_play() to resume it.
  1498. */
  1499. int av_read_pause(AVFormatContext *s);
  1500. #if FF_API_FORMAT_PARAMETERS
  1501. /**
  1502. * Free a AVFormatContext allocated by av_open_input_stream.
  1503. * @param s context to free
  1504. * @deprecated use av_close_input_file()
  1505. */
  1506. attribute_deprecated
  1507. void av_close_input_stream(AVFormatContext *s);
  1508. #endif
  1509. #if FF_API_CLOSE_INPUT_FILE
  1510. /**
  1511. * @deprecated use avformat_close_input()
  1512. * Close a media file (but not its codecs).
  1513. *
  1514. * @param s media file handle
  1515. */
  1516. attribute_deprecated
  1517. void av_close_input_file(AVFormatContext *s);
  1518. #endif
  1519. /**
  1520. * Close an opened input AVFormatContext. Free it and all its contents
  1521. * and set *s to NULL.
  1522. */
  1523. void avformat_close_input(AVFormatContext **s);
  1524. /**
  1525. * @}
  1526. */
  1527. #if FF_API_NEW_STREAM
  1528. /**
  1529. * Add a new stream to a media file.
  1530. *
  1531. * Can only be called in the read_header() function. If the flag
  1532. * AVFMTCTX_NOHEADER is in the format context, then new streams
  1533. * can be added in read_packet too.
  1534. *
  1535. * @param s media file handle
  1536. * @param id file-format-dependent stream ID
  1537. */
  1538. attribute_deprecated
  1539. AVStream *av_new_stream(AVFormatContext *s, int id);
  1540. #endif
  1541. #if FF_API_SET_PTS_INFO
  1542. /**
  1543. * @deprecated this function is not supposed to be called outside of lavf
  1544. */
  1545. attribute_deprecated
  1546. void av_set_pts_info(AVStream *s, int pts_wrap_bits,
  1547. unsigned int pts_num, unsigned int pts_den);
  1548. #endif
  1549. #define AVSEEK_FLAG_BACKWARD 1 ///< seek backward
  1550. #define AVSEEK_FLAG_BYTE 2 ///< seeking based on position in bytes
  1551. #define AVSEEK_FLAG_ANY 4 ///< seek to any frame, even non-keyframes
  1552. #define AVSEEK_FLAG_FRAME 8 ///< seeking based on frame number
  1553. #if FF_API_SEEK_PUBLIC
  1554. attribute_deprecated
  1555. int av_seek_frame_binary(AVFormatContext *s, int stream_index,
  1556. int64_t target_ts, int flags);
  1557. attribute_deprecated
  1558. void av_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp);
  1559. attribute_deprecated
  1560. int64_t av_gen_search(AVFormatContext *s, int stream_index,
  1561. int64_t target_ts, int64_t pos_min,
  1562. int64_t pos_max, int64_t pos_limit,
  1563. int64_t ts_min, int64_t ts_max,
  1564. int flags, int64_t *ts_ret,
  1565. int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t ));
  1566. #endif
  1567. #if FF_API_FORMAT_PARAMETERS
  1568. /**
  1569. * @deprecated pass the options to avformat_write_header directly.
  1570. */
  1571. attribute_deprecated int av_set_parameters(AVFormatContext *s, AVFormatParameters *ap);
  1572. #endif
  1573. /**
  1574. * @addtogroup lavf_encoding
  1575. * @{
  1576. */
  1577. /**
  1578. * Allocate the stream private data and write the stream header to
  1579. * an output media file.
  1580. *
  1581. * @param s Media file handle, must be allocated with avformat_alloc_context().
  1582. * Its oformat field must be set to the desired output format;
  1583. * Its pb field must be set to an already openened AVIOContext.
  1584. * @param options An AVDictionary filled with AVFormatContext and muxer-private options.
  1585. * On return this parameter will be destroyed and replaced with a dict containing
  1586. * options that were not found. May be NULL.
  1587. *
  1588. * @return 0 on success, negative AVERROR on failure.
  1589. *
  1590. * @see av_opt_find, av_dict_set, avio_open, av_oformat_next.
  1591. */
  1592. int avformat_write_header(AVFormatContext *s, AVDictionary **options);
  1593. #if FF_API_FORMAT_PARAMETERS
  1594. /**
  1595. * Allocate the stream private data and write the stream header to an
  1596. * output media file.
  1597. * @note: this sets stream time-bases, if possible to stream->codec->time_base
  1598. * but for some formats it might also be some other time base
  1599. *
  1600. * @param s media file handle
  1601. * @return 0 if OK, AVERROR_xxx on error
  1602. *
  1603. * @deprecated use avformat_write_header.
  1604. */
  1605. attribute_deprecated int av_write_header(AVFormatContext *s);
  1606. #endif
  1607. /**
  1608. * Write a packet to an output media file.
  1609. *
  1610. * The packet shall contain one audio or video frame.
  1611. * The packet must be correctly interleaved according to the container
  1612. * specification, if not then av_interleaved_write_frame must be used.
  1613. *
  1614. * @param s media file handle
  1615. * @param pkt The packet, which contains the stream_index, buf/buf_size,
  1616. * dts/pts, ...
  1617. * This can be NULL (at any time, not just at the end), in
  1618. * order to immediately flush data buffered within the muxer,
  1619. * for muxers that buffer up data internally before writing it
  1620. * to the output.
  1621. * @return < 0 on error, = 0 if OK, 1 if flushed and there is no more data to flush
  1622. */
  1623. int av_write_frame(AVFormatContext *s, AVPacket *pkt);
  1624. /**
  1625. * Write a packet to an output media file ensuring correct interleaving.
  1626. *
  1627. * The packet must contain one audio or video frame.
  1628. * If the packets are already correctly interleaved, the application should
  1629. * call av_write_frame() instead as it is slightly faster. It is also important
  1630. * to keep in mind that completely non-interleaved input will need huge amounts
  1631. * of memory to interleave with this, so it is preferable to interleave at the
  1632. * demuxer level.
  1633. *
  1634. * @param s media file handle
  1635. * @param pkt The packet containing the data to be written. Libavformat takes
  1636. * ownership of the data and will free it when it sees fit using the packet's
  1637. * @ref AVPacket.destruct "destruct" field. The caller must not access the data
  1638. * after this function returns, as it may already be freed.
  1639. * Packet's @ref AVPacket.stream_index "stream_index" field must be set to the
  1640. * index of the corresponding stream in @ref AVFormatContext.streams
  1641. * "s.streams".
  1642. * It is very strongly recommended that timing information (@ref AVPacket.pts
  1643. * "pts", @ref AVPacket.dts "dts" @ref AVPacket.duration "duration") is set to
  1644. * correct values.
  1645. *
  1646. * @return 0 on success, a negative AVERROR on error.
  1647. */
  1648. int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt);
  1649. /**
  1650. * Interleave a packet per dts in an output media file.
  1651. *
  1652. * Packets with pkt->destruct == av_destruct_packet will be freed inside this
  1653. * function, so they cannot be used after it. Note that calling av_free_packet()
  1654. * on them is still safe.
  1655. *
  1656. * @param s media file handle
  1657. * @param out the interleaved packet will be output here
  1658. * @param pkt the input packet
  1659. * @param flush 1 if no further packets are available as input and all
  1660. * remaining packets should be output
  1661. * @return 1 if a packet was output, 0 if no packet could be output,
  1662. * < 0 if an error occurred
  1663. */
  1664. int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
  1665. AVPacket *pkt, int flush);
  1666. /**
  1667. * Write the stream trailer to an output media file and free the
  1668. * file private data.
  1669. *
  1670. * May only be called after a successful call to av_write_header.
  1671. *
  1672. * @param s media file handle
  1673. * @return 0 if OK, AVERROR_xxx on error
  1674. */
  1675. int av_write_trailer(AVFormatContext *s);
  1676. /**
  1677. * Return the output format in the list of registered output formats
  1678. * which best matches the provided parameters, or return NULL if
  1679. * there is no match.
  1680. *
  1681. * @param short_name if non-NULL checks if short_name matches with the
  1682. * names of the registered formats
  1683. * @param filename if non-NULL checks if filename terminates with the
  1684. * extensions of the registered formats
  1685. * @param mime_type if non-NULL checks if mime_type matches with the
  1686. * MIME type of the registered formats
  1687. */
  1688. AVOutputFormat *av_guess_format(const char *short_name,
  1689. const char *filename,
  1690. const char *mime_type);
  1691. /**
  1692. * Guess the codec ID based upon muxer and filename.
  1693. */
  1694. enum CodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name,
  1695. const char *filename, const char *mime_type,
  1696. enum AVMediaType type);
  1697. /**
  1698. * Get timing information for the data currently output.
  1699. * The exact meaning of "currently output" depends on the format.
  1700. * It is mostly relevant for devices that have an internal buffer and/or
  1701. * work in real time.
  1702. * @param s media file handle
  1703. * @param stream stream in the media file
  1704. * @param dts[out] DTS of the last packet output for the stream, in stream
  1705. * time_base units
  1706. * @param wall[out] absolute time when that packet whas output,
  1707. * in microsecond
  1708. * @return 0 if OK, AVERROR(ENOSYS) if the format does not support it
  1709. * Note: some formats or devices may not allow to measure dts and wall
  1710. * atomically.
  1711. */
  1712. int av_get_output_timestamp(struct AVFormatContext *s, int stream,
  1713. int64_t *dts, int64_t *wall);
  1714. /**
  1715. * @}
  1716. */
  1717. /**
  1718. * @defgroup lavf_misc Utility functions
  1719. * @ingroup libavf
  1720. * @{
  1721. *
  1722. * Miscelaneous utility functions related to both muxing and demuxing
  1723. * (or neither).
  1724. */
  1725. /**
  1726. * Send a nice hexadecimal dump of a buffer to the specified file stream.
  1727. *
  1728. * @param f The file stream pointer where the dump should be sent to.
  1729. * @param buf buffer
  1730. * @param size buffer size
  1731. *
  1732. * @see av_hex_dump_log, av_pkt_dump2, av_pkt_dump_log2
  1733. */
  1734. void av_hex_dump(FILE *f, uint8_t *buf, int size);
  1735. /**
  1736. * Send a nice hexadecimal dump of a buffer to the log.
  1737. *
  1738. * @param avcl A pointer to an arbitrary struct of which the first field is a
  1739. * pointer to an AVClass struct.
  1740. * @param level The importance level of the message, lower values signifying
  1741. * higher importance.
  1742. * @param buf buffer
  1743. * @param size buffer size
  1744. *
  1745. * @see av_hex_dump, av_pkt_dump2, av_pkt_dump_log2
  1746. */
  1747. void av_hex_dump_log(void *avcl, int level, uint8_t *buf, int size);
  1748. /**
  1749. * Send a nice dump of a packet to the specified file stream.
  1750. *
  1751. * @param f The file stream pointer where the dump should be sent to.
  1752. * @param pkt packet to dump
  1753. * @param dump_payload True if the payload must be displayed, too.
  1754. * @param st AVStream that the packet belongs to
  1755. */
  1756. void av_pkt_dump2(FILE *f, AVPacket *pkt, int dump_payload, AVStream *st);
  1757. /**
  1758. * Send a nice dump of a packet to the log.
  1759. *
  1760. * @param avcl A pointer to an arbitrary struct of which the first field is a
  1761. * pointer to an AVClass struct.
  1762. * @param level The importance level of the message, lower values signifying
  1763. * higher importance.
  1764. * @param pkt packet to dump
  1765. * @param dump_payload True if the payload must be displayed, too.
  1766. * @param st AVStream that the packet belongs to
  1767. */
  1768. void av_pkt_dump_log2(void *avcl, int level, AVPacket *pkt, int dump_payload,
  1769. AVStream *st);
  1770. /**
  1771. * Get the CodecID for the given codec tag tag.
  1772. * If no codec id is found returns CODEC_ID_NONE.
  1773. *
  1774. * @param tags list of supported codec_id-codec_tag pairs, as stored
  1775. * in AVInputFormat.codec_tag and AVOutputFormat.codec_tag
  1776. */
  1777. enum CodecID av_codec_get_id(const struct AVCodecTag * const *tags, unsigned int tag);
  1778. /**
  1779. * Get the codec tag for the given codec id id.
  1780. * If no codec tag is found returns 0.
  1781. *
  1782. * @param tags list of supported codec_id-codec_tag pairs, as stored
  1783. * in AVInputFormat.codec_tag and AVOutputFormat.codec_tag
  1784. */
  1785. unsigned int av_codec_get_tag(const struct AVCodecTag * const *tags, enum CodecID id);
  1786. int av_find_default_stream_index(AVFormatContext *s);
  1787. /**
  1788. * Get the index for a specific timestamp.
  1789. * @param flags if AVSEEK_FLAG_BACKWARD then the returned index will correspond
  1790. * to the timestamp which is <= the requested one, if backward
  1791. * is 0, then it will be >=
  1792. * if AVSEEK_FLAG_ANY seek to any frame, only keyframes otherwise
  1793. * @return < 0 if no such timestamp could be found
  1794. */
  1795. int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags);
  1796. /**
  1797. * Add an index entry into a sorted list. Update the entry if the list
  1798. * already contains it.
  1799. *
  1800. * @param timestamp timestamp in the time base of the given stream
  1801. */
  1802. int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp,
  1803. int size, int distance, int flags);
  1804. /**
  1805. * Split a URL string into components.
  1806. *
  1807. * The pointers to buffers for storing individual components may be null,
  1808. * in order to ignore that component. Buffers for components not found are
  1809. * set to empty strings. If the port is not found, it is set to a negative
  1810. * value.
  1811. *
  1812. * @param proto the buffer for the protocol
  1813. * @param proto_size the size of the proto buffer
  1814. * @param authorization the buffer for the authorization
  1815. * @param authorization_size the size of the authorization buffer
  1816. * @param hostname the buffer for the host name
  1817. * @param hostname_size the size of the hostname buffer
  1818. * @param port_ptr a pointer to store the port number in
  1819. * @param path the buffer for the path
  1820. * @param path_size the size of the path buffer
  1821. * @param url the URL to split
  1822. */
  1823. void av_url_split(char *proto, int proto_size,
  1824. char *authorization, int authorization_size,
  1825. char *hostname, int hostname_size,
  1826. int *port_ptr,
  1827. char *path, int path_size,
  1828. const char *url);
  1829. #if FF_API_DUMP_FORMAT
  1830. /**
  1831. * @deprecated Deprecated in favor of av_dump_format().
  1832. */
  1833. attribute_deprecated void dump_format(AVFormatContext *ic,
  1834. int index,
  1835. const char *url,
  1836. int is_output);
  1837. #endif
  1838. void av_dump_format(AVFormatContext *ic,
  1839. int index,
  1840. const char *url,
  1841. int is_output);
  1842. #if FF_API_PARSE_DATE
  1843. /**
  1844. * Parse datestr and return a corresponding number of microseconds.
  1845. *
  1846. * @param datestr String representing a date or a duration.
  1847. * See av_parse_time() for the syntax of the provided string.
  1848. * @deprecated in favor of av_parse_time()
  1849. */
  1850. attribute_deprecated
  1851. int64_t parse_date(const char *datestr, int duration);
  1852. #endif
  1853. /**
  1854. * Get the current time in microseconds.
  1855. */
  1856. int64_t av_gettime(void);
  1857. #if FF_API_FIND_INFO_TAG
  1858. /**
  1859. * @deprecated use av_find_info_tag in libavutil instead.
  1860. */
  1861. attribute_deprecated int find_info_tag(char *arg, int arg_size, const char *tag1, const char *info);
  1862. #endif
  1863. /**
  1864. * Return in 'buf' the path with '%d' replaced by a number.
  1865. *
  1866. * Also handles the '%0nd' format where 'n' is the total number
  1867. * of digits and '%%'.
  1868. *
  1869. * @param buf destination buffer
  1870. * @param buf_size destination buffer size
  1871. * @param path numbered sequence string
  1872. * @param number frame number
  1873. * @return 0 if OK, -1 on format error
  1874. */
  1875. int av_get_frame_filename(char *buf, int buf_size,
  1876. const char *path, int number);
  1877. /**
  1878. * Check whether filename actually is a numbered sequence generator.
  1879. *
  1880. * @param filename possible numbered sequence string
  1881. * @return 1 if a valid numbered sequence string, 0 otherwise
  1882. */
  1883. int av_filename_number_test(const char *filename);
  1884. /**
  1885. * Generate an SDP for an RTP session.
  1886. *
  1887. * @param ac array of AVFormatContexts describing the RTP streams. If the
  1888. * array is composed by only one context, such context can contain
  1889. * multiple AVStreams (one AVStream per RTP stream). Otherwise,
  1890. * all the contexts in the array (an AVCodecContext per RTP stream)
  1891. * must contain only one AVStream.
  1892. * @param n_files number of AVCodecContexts contained in ac
  1893. * @param buf buffer where the SDP will be stored (must be allocated by
  1894. * the caller)
  1895. * @param size the size of the buffer
  1896. * @return 0 if OK, AVERROR_xxx on error
  1897. */
  1898. int av_sdp_create(AVFormatContext *ac[], int n_files, char *buf, int size);
  1899. #if FF_API_SDP_CREATE
  1900. attribute_deprecated int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size);
  1901. #endif
  1902. /**
  1903. * Return a positive value if the given filename has one of the given
  1904. * extensions, 0 otherwise.
  1905. *
  1906. * @param extensions a comma-separated list of filename extensions
  1907. */
  1908. int av_match_ext(const char *filename, const char *extensions);
  1909. /**
  1910. * Test if the given container can store a codec.
  1911. *
  1912. * @param std_compliance standards compliance level, one of FF_COMPLIANCE_*
  1913. *
  1914. * @return 1 if codec with ID codec_id can be stored in ofmt, 0 if it cannot.
  1915. * A negative number if this information is not available.
  1916. */
  1917. int avformat_query_codec(AVOutputFormat *ofmt, enum CodecID codec_id, int std_compliance);
  1918. /**
  1919. * @}
  1920. */
  1921. #endif /* AVFORMAT_AVFORMAT_H */