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.

1631 lines
58KB

  1. /*
  2. * copyright (c) 2001 Fabrice Bellard
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav 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. * Libav 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 Libav; 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 Libav,
  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. /* packet functions */
  215. /**
  216. * Allocate and read the payload of a packet and initialize its
  217. * fields with default values.
  218. *
  219. * @param pkt packet
  220. * @param size desired payload size
  221. * @return >0 (read size) if OK, AVERROR_xxx otherwise
  222. */
  223. int av_get_packet(AVIOContext *s, AVPacket *pkt, int size);
  224. /**
  225. * Read data and append it to the current content of the AVPacket.
  226. * If pkt->size is 0 this is identical to av_get_packet.
  227. * Note that this uses av_grow_packet and thus involves a realloc
  228. * which is inefficient. Thus this function should only be used
  229. * when there is no reasonable way to know (an upper bound of)
  230. * the final size.
  231. *
  232. * @param pkt packet
  233. * @param size amount of data to read
  234. * @return >0 (read size) if OK, AVERROR_xxx otherwise, previous data
  235. * will not be lost even if an error occurs.
  236. */
  237. int av_append_packet(AVIOContext *s, AVPacket *pkt, int size);
  238. /*************************************************/
  239. /* fractional numbers for exact pts handling */
  240. /**
  241. * The exact value of the fractional number is: 'val + num / den'.
  242. * num is assumed to be 0 <= num < den.
  243. */
  244. typedef struct AVFrac {
  245. int64_t val, num, den;
  246. } AVFrac;
  247. /*************************************************/
  248. /* input/output formats */
  249. struct AVCodecTag;
  250. /**
  251. * This structure contains the data a format has to probe a file.
  252. */
  253. typedef struct AVProbeData {
  254. const char *filename;
  255. unsigned char *buf; /**< Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero. */
  256. int buf_size; /**< Size of buf except extra allocated bytes */
  257. } AVProbeData;
  258. #define AVPROBE_SCORE_MAX 100 ///< maximum score, half of that is used for file-extension-based detection
  259. #define AVPROBE_PADDING_SIZE 32 ///< extra allocated bytes at the end of the probe buffer
  260. /// Demuxer will use avio_open, no opened file should be provided by the caller.
  261. #define AVFMT_NOFILE 0x0001
  262. #define AVFMT_NEEDNUMBER 0x0002 /**< Needs '%d' in filename. */
  263. #define AVFMT_SHOW_IDS 0x0008 /**< Show format stream IDs numbers. */
  264. #define AVFMT_RAWPICTURE 0x0020 /**< Format wants AVPicture structure for
  265. raw picture data. */
  266. #define AVFMT_GLOBALHEADER 0x0040 /**< Format wants global header. */
  267. #define AVFMT_NOTIMESTAMPS 0x0080 /**< Format does not need / have any timestamps. */
  268. #define AVFMT_GENERIC_INDEX 0x0100 /**< Use generic index building code. */
  269. #define AVFMT_TS_DISCONT 0x0200 /**< Format allows timestamp discontinuities. Note, muxers always require valid (monotone) timestamps */
  270. #define AVFMT_VARIABLE_FPS 0x0400 /**< Format allows variable fps. */
  271. #define AVFMT_NODIMENSIONS 0x0800 /**< Format does not need width/height */
  272. #define AVFMT_NOSTREAMS 0x1000 /**< Format does not require any streams */
  273. #define AVFMT_NOBINSEARCH 0x2000 /**< Format does not allow to fallback to binary search via read_timestamp */
  274. #define AVFMT_NOGENSEARCH 0x4000 /**< Format does not allow to fallback to generic search */
  275. #define AVFMT_NO_BYTE_SEEK 0x8000 /**< Format does not allow seeking by bytes */
  276. #define AVFMT_ALLOW_FLUSH 0x10000 /**< Format allows flushing. If not set, the muxer will not receive a NULL packet in the write_packet function. */
  277. /**
  278. * @addtogroup lavf_encoding
  279. * @{
  280. */
  281. typedef struct AVOutputFormat {
  282. const char *name;
  283. /**
  284. * Descriptive name for the format, meant to be more human-readable
  285. * than name. You should use the NULL_IF_CONFIG_SMALL() macro
  286. * to define it.
  287. */
  288. const char *long_name;
  289. const char *mime_type;
  290. const char *extensions; /**< comma-separated filename extensions */
  291. /* output support */
  292. enum CodecID audio_codec; /**< default audio codec */
  293. enum CodecID video_codec; /**< default video codec */
  294. enum CodecID subtitle_codec; /**< default subtitle codec */
  295. /**
  296. * can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_RAWPICTURE,
  297. * AVFMT_GLOBALHEADER, AVFMT_NOTIMESTAMPS, AVFMT_VARIABLE_FPS,
  298. * AVFMT_NODIMENSIONS, AVFMT_NOSTREAMS, AVFMT_ALLOW_FLUSH
  299. */
  300. int flags;
  301. /**
  302. * List of supported codec_id-codec_tag pairs, ordered by "better
  303. * choice first". The arrays are all terminated by CODEC_ID_NONE.
  304. */
  305. const struct AVCodecTag * const *codec_tag;
  306. const AVClass *priv_class; ///< AVClass for the private context
  307. /*****************************************************************
  308. * No fields below this line are part of the public API. They
  309. * may not be used outside of libavformat and can be changed and
  310. * removed at will.
  311. * New public fields should be added right above.
  312. *****************************************************************
  313. */
  314. struct AVOutputFormat *next;
  315. /**
  316. * size of private data so that it can be allocated in the wrapper
  317. */
  318. int priv_data_size;
  319. int (*write_header)(struct AVFormatContext *);
  320. /**
  321. * Write a packet. If AVFMT_ALLOW_FLUSH is set in flags,
  322. * pkt can be NULL in order to flush data buffered in the muxer.
  323. * When flushing, return 0 if there still is more data to flush,
  324. * or 1 if everything was flushed and there is no more buffered
  325. * data.
  326. */
  327. int (*write_packet)(struct AVFormatContext *, AVPacket *pkt);
  328. int (*write_trailer)(struct AVFormatContext *);
  329. /**
  330. * Currently only used to set pixel format if not YUV420P.
  331. */
  332. int (*interleave_packet)(struct AVFormatContext *, AVPacket *out,
  333. AVPacket *in, int flush);
  334. /**
  335. * Test if the given codec can be stored in this container.
  336. *
  337. * @return 1 if the codec is supported, 0 if it is not.
  338. * A negative number if unknown.
  339. */
  340. int (*query_codec)(enum CodecID id, int std_compliance);
  341. } AVOutputFormat;
  342. /**
  343. * @}
  344. */
  345. /**
  346. * @addtogroup lavf_decoding
  347. * @{
  348. */
  349. typedef struct AVInputFormat {
  350. /**
  351. * A comma separated list of short names for the format. New names
  352. * may be appended with a minor bump.
  353. */
  354. const char *name;
  355. /**
  356. * Descriptive name for the format, meant to be more human-readable
  357. * than name. You should use the NULL_IF_CONFIG_SMALL() macro
  358. * to define it.
  359. */
  360. const char *long_name;
  361. /**
  362. * Can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_SHOW_IDS,
  363. * AVFMT_GENERIC_INDEX, AVFMT_TS_DISCONT, AVFMT_NOBINSEARCH,
  364. * AVFMT_NOGENSEARCH, AVFMT_NO_BYTE_SEEK.
  365. */
  366. int flags;
  367. /**
  368. * If extensions are defined, then no probe is done. You should
  369. * usually not use extension format guessing because it is not
  370. * reliable enough
  371. */
  372. const char *extensions;
  373. const struct AVCodecTag * const *codec_tag;
  374. const AVClass *priv_class; ///< AVClass for the private context
  375. /*****************************************************************
  376. * No fields below this line are part of the public API. They
  377. * may not be used outside of libavformat and can be changed and
  378. * removed at will.
  379. * New public fields should be added right above.
  380. *****************************************************************
  381. */
  382. struct AVInputFormat *next;
  383. /**
  384. * Raw demuxers store their codec ID here.
  385. */
  386. int raw_codec_id;
  387. /**
  388. * Size of private data so that it can be allocated in the wrapper.
  389. */
  390. int priv_data_size;
  391. /**
  392. * Tell if a given file has a chance of being parsed as this format.
  393. * The buffer provided is guaranteed to be AVPROBE_PADDING_SIZE bytes
  394. * big so you do not have to check for that unless you need more.
  395. */
  396. int (*read_probe)(AVProbeData *);
  397. /**
  398. * Read the format header and initialize the AVFormatContext
  399. * structure. Return 0 if OK. Only used in raw format right
  400. * now. 'avformat_new_stream' should be called to create new streams.
  401. */
  402. int (*read_header)(struct AVFormatContext *);
  403. /**
  404. * Read one packet and put it in 'pkt'. pts and flags are also
  405. * set. 'avformat_new_stream' can be called only if the flag
  406. * AVFMTCTX_NOHEADER is used and only in the calling thread (not in a
  407. * background thread).
  408. * @return 0 on success, < 0 on error.
  409. * When returning an error, pkt must not have been allocated
  410. * or must be freed before returning
  411. */
  412. int (*read_packet)(struct AVFormatContext *, AVPacket *pkt);
  413. /**
  414. * Close the stream. The AVFormatContext and AVStreams are not
  415. * freed by this function
  416. */
  417. int (*read_close)(struct AVFormatContext *);
  418. /**
  419. * Seek to a given timestamp relative to the frames in
  420. * stream component stream_index.
  421. * @param stream_index Must not be -1.
  422. * @param flags Selects which direction should be preferred if no exact
  423. * match is available.
  424. * @return >= 0 on success (but not necessarily the new offset)
  425. */
  426. int (*read_seek)(struct AVFormatContext *,
  427. int stream_index, int64_t timestamp, int flags);
  428. /**
  429. * Get the next timestamp in stream[stream_index].time_base units.
  430. * @return the timestamp or AV_NOPTS_VALUE if an error occurred
  431. */
  432. int64_t (*read_timestamp)(struct AVFormatContext *s, int stream_index,
  433. int64_t *pos, int64_t pos_limit);
  434. /**
  435. * Start/resume playing - only meaningful if using a network-based format
  436. * (RTSP).
  437. */
  438. int (*read_play)(struct AVFormatContext *);
  439. /**
  440. * Pause playing - only meaningful if using a network-based format
  441. * (RTSP).
  442. */
  443. int (*read_pause)(struct AVFormatContext *);
  444. /**
  445. * Seek to timestamp ts.
  446. * Seeking will be done so that the point from which all active streams
  447. * can be presented successfully will be closest to ts and within min/max_ts.
  448. * Active streams are all streams that have AVStream.discard < AVDISCARD_ALL.
  449. */
  450. int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
  451. } AVInputFormat;
  452. /**
  453. * @}
  454. */
  455. enum AVStreamParseType {
  456. AVSTREAM_PARSE_NONE,
  457. AVSTREAM_PARSE_FULL, /**< full parsing and repack */
  458. AVSTREAM_PARSE_HEADERS, /**< Only parse headers, do not repack. */
  459. AVSTREAM_PARSE_TIMESTAMPS, /**< full parsing and interpolation of timestamps for frames not starting on a packet boundary */
  460. AVSTREAM_PARSE_FULL_ONCE, /**< full parsing and repack of the first frame only, only implemented for H.264 currently */
  461. };
  462. typedef struct AVIndexEntry {
  463. int64_t pos;
  464. int64_t timestamp;
  465. #define AVINDEX_KEYFRAME 0x0001
  466. int flags:2;
  467. 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).
  468. int min_distance; /**< Minimum distance between this and the previous keyframe, used to avoid unneeded searching. */
  469. } AVIndexEntry;
  470. #define AV_DISPOSITION_DEFAULT 0x0001
  471. #define AV_DISPOSITION_DUB 0x0002
  472. #define AV_DISPOSITION_ORIGINAL 0x0004
  473. #define AV_DISPOSITION_COMMENT 0x0008
  474. #define AV_DISPOSITION_LYRICS 0x0010
  475. #define AV_DISPOSITION_KARAOKE 0x0020
  476. /**
  477. * Track should be used during playback by default.
  478. * Useful for subtitle track that should be displayed
  479. * even when user did not explicitly ask for subtitles.
  480. */
  481. #define AV_DISPOSITION_FORCED 0x0040
  482. #define AV_DISPOSITION_HEARING_IMPAIRED 0x0080 /**< stream for hearing impaired audiences */
  483. #define AV_DISPOSITION_VISUAL_IMPAIRED 0x0100 /**< stream for visual impaired audiences */
  484. #define AV_DISPOSITION_CLEAN_EFFECTS 0x0200 /**< stream without voice */
  485. /**
  486. * Stream structure.
  487. * New fields can be added to the end with minor version bumps.
  488. * Removal, reordering and changes to existing fields require a major
  489. * version bump.
  490. * sizeof(AVStream) must not be used outside libav*.
  491. */
  492. typedef struct AVStream {
  493. int index; /**< stream index in AVFormatContext */
  494. int id; /**< format-specific stream ID */
  495. AVCodecContext *codec; /**< codec context */
  496. /**
  497. * Real base framerate of the stream.
  498. * This is the lowest framerate with which all timestamps can be
  499. * represented accurately (it is the least common multiple of all
  500. * framerates in the stream). Note, this value is just a guess!
  501. * For example, if the time base is 1/90000 and all frames have either
  502. * approximately 3600 or 1800 timer ticks, then r_frame_rate will be 50/1.
  503. */
  504. AVRational r_frame_rate;
  505. void *priv_data;
  506. /**
  507. * encoding: pts generation when outputting stream
  508. */
  509. struct AVFrac pts;
  510. /**
  511. * This is the fundamental unit of time (in seconds) in terms
  512. * of which frame timestamps are represented. For fixed-fps content,
  513. * time base should be 1/framerate and timestamp increments should be 1.
  514. * decoding: set by libavformat
  515. * encoding: set by libavformat in av_write_header
  516. */
  517. AVRational time_base;
  518. enum AVDiscard discard; ///< Selects which packets can be discarded at will and do not need to be demuxed.
  519. /**
  520. * Decoding: pts of the first frame of the stream, in stream time base.
  521. * Only set this if you are absolutely 100% sure that the value you set
  522. * it to really is the pts of the first frame.
  523. * This may be undefined (AV_NOPTS_VALUE).
  524. */
  525. int64_t start_time;
  526. /**
  527. * Decoding: duration of the stream, in stream time base.
  528. * If a source file does not specify a duration, but does specify
  529. * a bitrate, this value will be estimated from bitrate and file size.
  530. */
  531. int64_t duration;
  532. int64_t nb_frames; ///< number of frames in this stream if known or 0
  533. int disposition; /**< AV_DISPOSITION_* bit field */
  534. /**
  535. * sample aspect ratio (0 if unknown)
  536. * - encoding: Set by user.
  537. * - decoding: Set by libavformat.
  538. */
  539. AVRational sample_aspect_ratio;
  540. AVDictionary *metadata;
  541. /**
  542. * Average framerate
  543. */
  544. AVRational avg_frame_rate;
  545. /*****************************************************************
  546. * All fields below this line are not part of the public API. They
  547. * may not be used outside of libavformat and can be changed and
  548. * removed at will.
  549. * New public fields should be added right above.
  550. *****************************************************************
  551. */
  552. /**
  553. * Number of frames that have been demuxed during av_find_stream_info()
  554. */
  555. int codec_info_nb_frames;
  556. /**
  557. * Stream information used internally by av_find_stream_info()
  558. */
  559. #define MAX_STD_TIMEBASES (60*12+5)
  560. struct {
  561. int64_t last_dts;
  562. int64_t duration_gcd;
  563. int duration_count;
  564. double duration_error[MAX_STD_TIMEBASES];
  565. int64_t codec_info_duration;
  566. int nb_decoded_frames;
  567. } *info;
  568. const uint8_t *cur_ptr;
  569. int cur_len;
  570. AVPacket cur_pkt;
  571. // Timestamp generation support:
  572. /**
  573. * Timestamp corresponding to the last dts sync point.
  574. *
  575. * Initialized when AVCodecParserContext.dts_sync_point >= 0 and
  576. * a DTS is received from the underlying container. Otherwise set to
  577. * AV_NOPTS_VALUE by default.
  578. */
  579. int64_t reference_dts;
  580. int64_t first_dts;
  581. int64_t cur_dts;
  582. int last_IP_duration;
  583. int64_t last_IP_pts;
  584. /**
  585. * Number of packets to buffer for codec probing
  586. */
  587. #define MAX_PROBE_PACKETS 2500
  588. int probe_packets;
  589. /**
  590. * last packet in packet_buffer for this stream when muxing.
  591. */
  592. struct AVPacketList *last_in_packet_buffer;
  593. AVProbeData probe_data;
  594. #define MAX_REORDER_DELAY 16
  595. int64_t pts_buffer[MAX_REORDER_DELAY+1];
  596. /* av_read_frame() support */
  597. enum AVStreamParseType need_parsing;
  598. struct AVCodecParserContext *parser;
  599. AVIndexEntry *index_entries; /**< Only used if the format does not
  600. support seeking natively. */
  601. int nb_index_entries;
  602. unsigned int index_entries_allocated_size;
  603. int pts_wrap_bits; /**< number of bits in pts (used for wrapping control) */
  604. } AVStream;
  605. #define AV_PROGRAM_RUNNING 1
  606. /**
  607. * New fields can be added to the end with minor version bumps.
  608. * Removal, reordering and changes to existing fields require a major
  609. * version bump.
  610. * sizeof(AVProgram) must not be used outside libav*.
  611. */
  612. typedef struct AVProgram {
  613. int id;
  614. int flags;
  615. enum AVDiscard discard; ///< selects which program to discard and which to feed to the caller
  616. unsigned int *stream_index;
  617. unsigned int nb_stream_indexes;
  618. AVDictionary *metadata;
  619. } AVProgram;
  620. #define AVFMTCTX_NOHEADER 0x0001 /**< signal that no header is present
  621. (streams are added dynamically) */
  622. typedef struct AVChapter {
  623. int id; ///< unique ID to identify the chapter
  624. AVRational time_base; ///< time base in which the start/end timestamps are specified
  625. int64_t start, end; ///< chapter start/end time in time_base units
  626. AVDictionary *metadata;
  627. } AVChapter;
  628. /**
  629. * Format I/O context.
  630. * New fields can be added to the end with minor version bumps.
  631. * Removal, reordering and changes to existing fields require a major
  632. * version bump.
  633. * sizeof(AVFormatContext) must not be used outside libav*, use
  634. * avformat_alloc_context() to create an AVFormatContext.
  635. */
  636. typedef struct AVFormatContext {
  637. /**
  638. * A class for logging and AVOptions. Set by avformat_alloc_context().
  639. * Exports (de)muxer private options if they exist.
  640. */
  641. const AVClass *av_class;
  642. /**
  643. * Can only be iformat or oformat, not both at the same time.
  644. *
  645. * decoding: set by avformat_open_input().
  646. * encoding: set by the user.
  647. */
  648. struct AVInputFormat *iformat;
  649. struct AVOutputFormat *oformat;
  650. /**
  651. * Format private data. This is an AVOptions-enabled struct
  652. * if and only if iformat/oformat.priv_class is not NULL.
  653. */
  654. void *priv_data;
  655. /*
  656. * I/O context.
  657. *
  658. * decoding: either set by the user before avformat_open_input() (then
  659. * the user must close it manually) or set by avformat_open_input().
  660. * encoding: set by the user.
  661. *
  662. * Do NOT set this field if AVFMT_NOFILE flag is set in
  663. * iformat/oformat.flags. In such a case, the (de)muxer will handle
  664. * I/O in some other way and this field will be NULL.
  665. */
  666. AVIOContext *pb;
  667. /**
  668. * A list of all streams in the file. New streams are created with
  669. * avformat_new_stream().
  670. *
  671. * decoding: streams are created by libavformat in avformat_open_input().
  672. * If AVFMTCTX_NOHEADER is set in ctx_flags, then new streams may also
  673. * appear in av_read_frame().
  674. * encoding: streams are created by the user before avformat_write_header().
  675. */
  676. unsigned int nb_streams;
  677. AVStream **streams;
  678. char filename[1024]; /**< input or output filename */
  679. /* stream info */
  680. int ctx_flags; /**< Format-specific flags, see AVFMTCTX_xx */
  681. /**
  682. * Decoding: position of the first frame of the component, in
  683. * AV_TIME_BASE fractional seconds. NEVER set this value directly:
  684. * It is deduced from the AVStream values.
  685. */
  686. int64_t start_time;
  687. /**
  688. * Decoding: duration of the stream, in AV_TIME_BASE fractional
  689. * seconds. Only set this value if you know none of the individual stream
  690. * durations and also do not set any of them. This is deduced from the
  691. * AVStream values if not set.
  692. */
  693. int64_t duration;
  694. /**
  695. * Decoding: total stream bitrate in bit/s, 0 if not
  696. * available. Never set it directly if the file_size and the
  697. * duration are known as Libav can compute it automatically.
  698. */
  699. int bit_rate;
  700. unsigned int packet_size;
  701. int max_delay;
  702. int flags;
  703. #define AVFMT_FLAG_GENPTS 0x0001 ///< Generate missing pts even if it requires parsing future frames.
  704. #define AVFMT_FLAG_IGNIDX 0x0002 ///< Ignore index.
  705. #define AVFMT_FLAG_NONBLOCK 0x0004 ///< Do not block when reading packets from input.
  706. #define AVFMT_FLAG_IGNDTS 0x0008 ///< Ignore DTS on frames that contain both DTS & PTS
  707. #define AVFMT_FLAG_NOFILLIN 0x0010 ///< Do not infer any values from other values, just return what is stored in the container
  708. #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
  709. #define AVFMT_FLAG_CUSTOM_IO 0x0080 ///< The caller has supplied a custom AVIOContext, don't avio_close() it.
  710. #define AVFMT_FLAG_DISCARD_CORRUPT 0x0100 ///< Discard frames marked corrupted
  711. /**
  712. * decoding: size of data to probe; encoding: unused.
  713. */
  714. unsigned int probesize;
  715. /**
  716. * decoding: maximum time (in AV_TIME_BASE units) during which the input should
  717. * be analyzed in avformat_find_stream_info().
  718. */
  719. int max_analyze_duration;
  720. const uint8_t *key;
  721. int keylen;
  722. unsigned int nb_programs;
  723. AVProgram **programs;
  724. /**
  725. * Forced video codec_id.
  726. * Demuxing: Set by user.
  727. */
  728. enum CodecID video_codec_id;
  729. /**
  730. * Forced audio codec_id.
  731. * Demuxing: Set by user.
  732. */
  733. enum CodecID audio_codec_id;
  734. /**
  735. * Forced subtitle codec_id.
  736. * Demuxing: Set by user.
  737. */
  738. enum CodecID subtitle_codec_id;
  739. /**
  740. * Maximum amount of memory in bytes to use for the index of each stream.
  741. * If the index exceeds this size, entries will be discarded as
  742. * needed to maintain a smaller size. This can lead to slower or less
  743. * accurate seeking (depends on demuxer).
  744. * Demuxers for which a full in-memory index is mandatory will ignore
  745. * this.
  746. * muxing : unused
  747. * demuxing: set by user
  748. */
  749. unsigned int max_index_size;
  750. /**
  751. * Maximum amount of memory in bytes to use for buffering frames
  752. * obtained from realtime capture devices.
  753. */
  754. unsigned int max_picture_buffer;
  755. unsigned int nb_chapters;
  756. AVChapter **chapters;
  757. /**
  758. * Flags to enable debugging.
  759. */
  760. int debug;
  761. #define FF_FDEBUG_TS 0x0001
  762. AVDictionary *metadata;
  763. /**
  764. * Start time of the stream in real world time, in microseconds
  765. * since the unix epoch (00:00 1st January 1970). That is, pts=0
  766. * in the stream was captured at this real world time.
  767. * - encoding: Set by user.
  768. * - decoding: Unused.
  769. */
  770. int64_t start_time_realtime;
  771. /**
  772. * decoding: number of frames used to probe fps
  773. */
  774. int fps_probe_size;
  775. /**
  776. * Error recognition; higher values will detect more errors but may
  777. * misdetect some more or less valid parts as errors.
  778. * - encoding: unused
  779. * - decoding: Set by user.
  780. */
  781. int error_recognition;
  782. /**
  783. * Custom interrupt callbacks for the I/O layer.
  784. *
  785. * decoding: set by the user before avformat_open_input().
  786. * encoding: set by the user before avformat_write_header()
  787. * (mainly useful for AVFMT_NOFILE formats). The callback
  788. * should also be passed to avio_open2() if it's used to
  789. * open the file.
  790. */
  791. AVIOInterruptCB interrupt_callback;
  792. /*****************************************************************
  793. * All fields below this line are not part of the public API. They
  794. * may not be used outside of libavformat and can be changed and
  795. * removed at will.
  796. * New public fields should be added right above.
  797. *****************************************************************
  798. */
  799. /**
  800. * Raw packets from the demuxer, prior to parsing and decoding.
  801. * This buffer is used for buffering packets until the codec can
  802. * be identified, as parsing cannot be done without knowing the
  803. * codec.
  804. */
  805. struct AVPacketList *raw_packet_buffer;
  806. struct AVPacketList *raw_packet_buffer_end;
  807. /**
  808. * Remaining size available for raw_packet_buffer, in bytes.
  809. */
  810. #define RAW_PACKET_BUFFER_SIZE 2500000
  811. int raw_packet_buffer_remaining_size;
  812. /**
  813. * This buffer is only needed when packets were already buffered but
  814. * not decoded, for example to get the codec parameters in MPEG
  815. * streams.
  816. */
  817. struct AVPacketList *packet_buffer;
  818. struct AVPacketList *packet_buffer_end;
  819. /* av_read_frame() support */
  820. AVStream *cur_st;
  821. /* av_seek_frame() support */
  822. int64_t data_offset; /**< offset of the first packet */
  823. } AVFormatContext;
  824. typedef struct AVPacketList {
  825. AVPacket pkt;
  826. struct AVPacketList *next;
  827. } AVPacketList;
  828. /**
  829. * @defgroup lavf_core Core functions
  830. * @ingroup libavf
  831. *
  832. * Functions for querying libavformat capabilities, allocating core structures,
  833. * etc.
  834. * @{
  835. */
  836. /**
  837. * Return the LIBAVFORMAT_VERSION_INT constant.
  838. */
  839. unsigned avformat_version(void);
  840. /**
  841. * Return the libavformat build-time configuration.
  842. */
  843. const char *avformat_configuration(void);
  844. /**
  845. * Return the libavformat license.
  846. */
  847. const char *avformat_license(void);
  848. /**
  849. * Initialize libavformat and register all the muxers, demuxers and
  850. * protocols. If you do not call this function, then you can select
  851. * exactly which formats you want to support.
  852. *
  853. * @see av_register_input_format()
  854. * @see av_register_output_format()
  855. * @see av_register_protocol()
  856. */
  857. void av_register_all(void);
  858. void av_register_input_format(AVInputFormat *format);
  859. void av_register_output_format(AVOutputFormat *format);
  860. /**
  861. * Do global initialization of network components. This is optional,
  862. * but recommended, since it avoids the overhead of implicitly
  863. * doing the setup for each session.
  864. *
  865. * Calling this function will become mandatory if using network
  866. * protocols at some major version bump.
  867. */
  868. int avformat_network_init(void);
  869. /**
  870. * Undo the initialization done by avformat_network_init.
  871. */
  872. int avformat_network_deinit(void);
  873. /**
  874. * If f is NULL, returns the first registered input format,
  875. * if f is non-NULL, returns the next registered input format after f
  876. * or NULL if f is the last one.
  877. */
  878. AVInputFormat *av_iformat_next(AVInputFormat *f);
  879. /**
  880. * If f is NULL, returns the first registered output format,
  881. * if f is non-NULL, returns the next registered output format after f
  882. * or NULL if f is the last one.
  883. */
  884. AVOutputFormat *av_oformat_next(AVOutputFormat *f);
  885. /**
  886. * Allocate an AVFormatContext.
  887. * avformat_free_context() can be used to free the context and everything
  888. * allocated by the framework within it.
  889. */
  890. AVFormatContext *avformat_alloc_context(void);
  891. /**
  892. * Free an AVFormatContext and all its streams.
  893. * @param s context to free
  894. */
  895. void avformat_free_context(AVFormatContext *s);
  896. /**
  897. * Get the AVClass for AVFormatContext. It can be used in combination with
  898. * AV_OPT_SEARCH_FAKE_OBJ for examining options.
  899. *
  900. * @see av_opt_find().
  901. */
  902. const AVClass *avformat_get_class(void);
  903. /**
  904. * Add a new stream to a media file.
  905. *
  906. * When demuxing, it is called by the demuxer in read_header(). If the
  907. * flag AVFMTCTX_NOHEADER is set in s.ctx_flags, then it may also
  908. * be called in read_packet().
  909. *
  910. * When muxing, should be called by the user before avformat_write_header().
  911. *
  912. * @param c If non-NULL, the AVCodecContext corresponding to the new stream
  913. * will be initialized to use this codec. This is needed for e.g. codec-specific
  914. * defaults to be set, so codec should be provided if it is known.
  915. *
  916. * @return newly created stream or NULL on error.
  917. */
  918. AVStream *avformat_new_stream(AVFormatContext *s, AVCodec *c);
  919. AVProgram *av_new_program(AVFormatContext *s, int id);
  920. /**
  921. * @}
  922. */
  923. /**
  924. * @addtogroup lavf_decoding
  925. * @{
  926. */
  927. /**
  928. * Find AVInputFormat based on the short name of the input format.
  929. */
  930. AVInputFormat *av_find_input_format(const char *short_name);
  931. /**
  932. * Guess the file format.
  933. *
  934. * @param is_opened Whether the file is already opened; determines whether
  935. * demuxers with or without AVFMT_NOFILE are probed.
  936. */
  937. AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened);
  938. /**
  939. * Guess the file format.
  940. *
  941. * @param is_opened Whether the file is already opened; determines whether
  942. * demuxers with or without AVFMT_NOFILE are probed.
  943. * @param score_max A probe score larger that this is required to accept a
  944. * detection, the variable is set to the actual detection
  945. * score afterwards.
  946. * If the score is <= AVPROBE_SCORE_MAX / 4 it is recommended
  947. * to retry with a larger probe buffer.
  948. */
  949. AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max);
  950. /**
  951. * Probe a bytestream to determine the input format. Each time a probe returns
  952. * with a score that is too low, the probe buffer size is increased and another
  953. * attempt is made. When the maximum probe size is reached, the input format
  954. * with the highest score is returned.
  955. *
  956. * @param pb the bytestream to probe
  957. * @param fmt the input format is put here
  958. * @param filename the filename of the stream
  959. * @param logctx the log context
  960. * @param offset the offset within the bytestream to probe from
  961. * @param max_probe_size the maximum probe buffer size (zero for default)
  962. * @return 0 in case of success, a negative value corresponding to an
  963. * AVERROR code otherwise
  964. */
  965. int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt,
  966. const char *filename, void *logctx,
  967. unsigned int offset, unsigned int max_probe_size);
  968. /**
  969. * Open an input stream and read the header. The codecs are not opened.
  970. * The stream must be closed with av_close_input_file().
  971. *
  972. * @param ps Pointer to user-supplied AVFormatContext (allocated by avformat_alloc_context).
  973. * May be a pointer to NULL, in which case an AVFormatContext is allocated by this
  974. * function and written into ps.
  975. * Note that a user-supplied AVFormatContext will be freed on failure.
  976. * @param filename Name of the stream to open.
  977. * @param fmt If non-NULL, this parameter forces a specific input format.
  978. * Otherwise the format is autodetected.
  979. * @param options A dictionary filled with AVFormatContext and demuxer-private options.
  980. * On return this parameter will be destroyed and replaced with a dict containing
  981. * options that were not found. May be NULL.
  982. *
  983. * @return 0 on success, a negative AVERROR on failure.
  984. *
  985. * @note If you want to use custom IO, preallocate the format context and set its pb field.
  986. */
  987. int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options);
  988. /**
  989. * Read packets of a media file to get stream information. This
  990. * is useful for file formats with no headers such as MPEG. This
  991. * function also computes the real framerate in case of MPEG-2 repeat
  992. * frame mode.
  993. * The logical file position is not changed by this function;
  994. * examined packets may be buffered for later processing.
  995. *
  996. * @param ic media file handle
  997. * @param options If non-NULL, an ic.nb_streams long array of pointers to
  998. * dictionaries, where i-th member contains options for
  999. * codec corresponding to i-th stream.
  1000. * On return each dictionary will be filled with options that were not found.
  1001. * @return >=0 if OK, AVERROR_xxx on error
  1002. *
  1003. * @note this function isn't guaranteed to open all the codecs, so
  1004. * options being non-empty at return is a perfectly normal behavior.
  1005. *
  1006. * @todo Let the user decide somehow what information is needed so that
  1007. * we do not waste time getting stuff the user does not need.
  1008. */
  1009. int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options);
  1010. /**
  1011. * Find the "best" stream in the file.
  1012. * The best stream is determined according to various heuristics as the most
  1013. * likely to be what the user expects.
  1014. * If the decoder parameter is non-NULL, av_find_best_stream will find the
  1015. * default decoder for the stream's codec; streams for which no decoder can
  1016. * be found are ignored.
  1017. *
  1018. * @param ic media file handle
  1019. * @param type stream type: video, audio, subtitles, etc.
  1020. * @param wanted_stream_nb user-requested stream number,
  1021. * or -1 for automatic selection
  1022. * @param related_stream try to find a stream related (eg. in the same
  1023. * program) to this one, or -1 if none
  1024. * @param decoder_ret if non-NULL, returns the decoder for the
  1025. * selected stream
  1026. * @param flags flags; none are currently defined
  1027. * @return the non-negative stream number in case of success,
  1028. * AVERROR_STREAM_NOT_FOUND if no stream with the requested type
  1029. * could be found,
  1030. * AVERROR_DECODER_NOT_FOUND if streams were found but no decoder
  1031. * @note If av_find_best_stream returns successfully and decoder_ret is not
  1032. * NULL, then *decoder_ret is guaranteed to be set to a valid AVCodec.
  1033. */
  1034. int av_find_best_stream(AVFormatContext *ic,
  1035. enum AVMediaType type,
  1036. int wanted_stream_nb,
  1037. int related_stream,
  1038. AVCodec **decoder_ret,
  1039. int flags);
  1040. /**
  1041. * Read a transport packet from a media file.
  1042. *
  1043. * This function is obsolete and should never be used.
  1044. * Use av_read_frame() instead.
  1045. *
  1046. * @param s media file handle
  1047. * @param pkt is filled
  1048. * @return 0 if OK, AVERROR_xxx on error
  1049. */
  1050. int av_read_packet(AVFormatContext *s, AVPacket *pkt);
  1051. /**
  1052. * Return the next frame of a stream.
  1053. * This function returns what is stored in the file, and does not validate
  1054. * that what is there are valid frames for the decoder. It will split what is
  1055. * stored in the file into frames and return one for each call. It will not
  1056. * omit invalid data between valid frames so as to give the decoder the maximum
  1057. * information possible for decoding.
  1058. *
  1059. * The returned packet is valid
  1060. * until the next av_read_frame() or until av_close_input_file() and
  1061. * must be freed with av_free_packet. For video, the packet contains
  1062. * exactly one frame. For audio, it contains an integer number of
  1063. * frames if each frame has a known fixed size (e.g. PCM or ADPCM
  1064. * data). If the audio frames have a variable size (e.g. MPEG audio),
  1065. * then it contains one frame.
  1066. *
  1067. * pkt->pts, pkt->dts and pkt->duration are always set to correct
  1068. * values in AVStream.time_base units (and guessed if the format cannot
  1069. * provide them). pkt->pts can be AV_NOPTS_VALUE if the video format
  1070. * has B-frames, so it is better to rely on pkt->dts if you do not
  1071. * decompress the payload.
  1072. *
  1073. * @return 0 if OK, < 0 on error or end of file
  1074. */
  1075. int av_read_frame(AVFormatContext *s, AVPacket *pkt);
  1076. /**
  1077. * Seek to the keyframe at timestamp.
  1078. * 'timestamp' in 'stream_index'.
  1079. * @param stream_index If stream_index is (-1), a default
  1080. * stream is selected, and timestamp is automatically converted
  1081. * from AV_TIME_BASE units to the stream specific time_base.
  1082. * @param timestamp Timestamp in AVStream.time_base units
  1083. * or, if no stream is specified, in AV_TIME_BASE units.
  1084. * @param flags flags which select direction and seeking mode
  1085. * @return >= 0 on success
  1086. */
  1087. int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp,
  1088. int flags);
  1089. /**
  1090. * Seek to timestamp ts.
  1091. * Seeking will be done so that the point from which all active streams
  1092. * can be presented successfully will be closest to ts and within min/max_ts.
  1093. * Active streams are all streams that have AVStream.discard < AVDISCARD_ALL.
  1094. *
  1095. * If flags contain AVSEEK_FLAG_BYTE, then all timestamps are in bytes and
  1096. * are the file position (this may not be supported by all demuxers).
  1097. * If flags contain AVSEEK_FLAG_FRAME, then all timestamps are in frames
  1098. * in the stream with stream_index (this may not be supported by all demuxers).
  1099. * Otherwise all timestamps are in units of the stream selected by stream_index
  1100. * or if stream_index is -1, in AV_TIME_BASE units.
  1101. * If flags contain AVSEEK_FLAG_ANY, then non-keyframes are treated as
  1102. * keyframes (this may not be supported by all demuxers).
  1103. *
  1104. * @param stream_index index of the stream which is used as time base reference
  1105. * @param min_ts smallest acceptable timestamp
  1106. * @param ts target timestamp
  1107. * @param max_ts largest acceptable timestamp
  1108. * @param flags flags
  1109. * @return >=0 on success, error code otherwise
  1110. *
  1111. * @note This is part of the new seek API which is still under construction.
  1112. * Thus do not use this yet. It may change at any time, do not expect
  1113. * ABI compatibility yet!
  1114. */
  1115. int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
  1116. /**
  1117. * Start playing a network-based stream (e.g. RTSP stream) at the
  1118. * current position.
  1119. */
  1120. int av_read_play(AVFormatContext *s);
  1121. /**
  1122. * Pause a network-based stream (e.g. RTSP stream).
  1123. *
  1124. * Use av_read_play() to resume it.
  1125. */
  1126. int av_read_pause(AVFormatContext *s);
  1127. #if FF_API_CLOSE_INPUT_FILE
  1128. /**
  1129. * @deprecated use avformat_close_input()
  1130. * Close a media file (but not its codecs).
  1131. *
  1132. * @param s media file handle
  1133. */
  1134. attribute_deprecated
  1135. void av_close_input_file(AVFormatContext *s);
  1136. #endif
  1137. /**
  1138. * Close an opened input AVFormatContext. Free it and all its contents
  1139. * and set *s to NULL.
  1140. */
  1141. void avformat_close_input(AVFormatContext **s);
  1142. /**
  1143. * @}
  1144. */
  1145. #define AVSEEK_FLAG_BACKWARD 1 ///< seek backward
  1146. #define AVSEEK_FLAG_BYTE 2 ///< seeking based on position in bytes
  1147. #define AVSEEK_FLAG_ANY 4 ///< seek to any frame, even non-keyframes
  1148. #define AVSEEK_FLAG_FRAME 8 ///< seeking based on frame number
  1149. /**
  1150. * @addtogroup lavf_encoding
  1151. * @{
  1152. */
  1153. /**
  1154. * Allocate the stream private data and write the stream header to
  1155. * an output media file.
  1156. *
  1157. * @param s Media file handle, must be allocated with avformat_alloc_context().
  1158. * Its oformat field must be set to the desired output format;
  1159. * Its pb field must be set to an already openened AVIOContext.
  1160. * @param options An AVDictionary filled with AVFormatContext and muxer-private options.
  1161. * On return this parameter will be destroyed and replaced with a dict containing
  1162. * options that were not found. May be NULL.
  1163. *
  1164. * @return 0 on success, negative AVERROR on failure.
  1165. *
  1166. * @see av_opt_find, av_dict_set, avio_open, av_oformat_next.
  1167. */
  1168. int avformat_write_header(AVFormatContext *s, AVDictionary **options);
  1169. /**
  1170. * Write a packet to an output media file.
  1171. *
  1172. * The packet shall contain one audio or video frame.
  1173. * The packet must be correctly interleaved according to the container
  1174. * specification, if not then av_interleaved_write_frame must be used.
  1175. *
  1176. * @param s media file handle
  1177. * @param pkt The packet, which contains the stream_index, buf/buf_size,
  1178. * dts/pts, ...
  1179. * This can be NULL (at any time, not just at the end), in
  1180. * order to immediately flush data buffered within the muxer,
  1181. * for muxers that buffer up data internally before writing it
  1182. * to the output.
  1183. * @return < 0 on error, = 0 if OK, 1 if flushed and there is no more data to flush
  1184. */
  1185. int av_write_frame(AVFormatContext *s, AVPacket *pkt);
  1186. /**
  1187. * Write a packet to an output media file ensuring correct interleaving.
  1188. *
  1189. * The packet must contain one audio or video frame.
  1190. * If the packets are already correctly interleaved, the application should
  1191. * call av_write_frame() instead as it is slightly faster. It is also important
  1192. * to keep in mind that completely non-interleaved input will need huge amounts
  1193. * of memory to interleave with this, so it is preferable to interleave at the
  1194. * demuxer level.
  1195. *
  1196. * @param s media file handle
  1197. * @param pkt The packet containing the data to be written. Libavformat takes
  1198. * ownership of the data and will free it when it sees fit using the packet's
  1199. * @ref AVPacket.destruct "destruct" field. The caller must not access the data
  1200. * after this function returns, as it may already be freed.
  1201. * Packet's @ref AVPacket.stream_index "stream_index" field must be set to the
  1202. * index of the corresponding stream in @ref AVFormatContext.streams
  1203. * "s.streams".
  1204. * It is very strongly recommended that timing information (@ref AVPacket.pts
  1205. * "pts", @ref AVPacket.dts "dts" @ref AVPacket.duration "duration") is set to
  1206. * correct values.
  1207. *
  1208. * @return 0 on success, a negative AVERROR on error.
  1209. */
  1210. int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt);
  1211. /**
  1212. * Interleave a packet per dts in an output media file.
  1213. *
  1214. * Packets with pkt->destruct == av_destruct_packet will be freed inside this
  1215. * function, so they cannot be used after it. Note that calling av_free_packet()
  1216. * on them is still safe.
  1217. *
  1218. * @param s media file handle
  1219. * @param out the interleaved packet will be output here
  1220. * @param pkt the input packet
  1221. * @param flush 1 if no further packets are available as input and all
  1222. * remaining packets should be output
  1223. * @return 1 if a packet was output, 0 if no packet could be output,
  1224. * < 0 if an error occurred
  1225. */
  1226. int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
  1227. AVPacket *pkt, int flush);
  1228. /**
  1229. * Write the stream trailer to an output media file and free the
  1230. * file private data.
  1231. *
  1232. * May only be called after a successful call to av_write_header.
  1233. *
  1234. * @param s media file handle
  1235. * @return 0 if OK, AVERROR_xxx on error
  1236. */
  1237. int av_write_trailer(AVFormatContext *s);
  1238. /**
  1239. * Return the output format in the list of registered output formats
  1240. * which best matches the provided parameters, or return NULL if
  1241. * there is no match.
  1242. *
  1243. * @param short_name if non-NULL checks if short_name matches with the
  1244. * names of the registered formats
  1245. * @param filename if non-NULL checks if filename terminates with the
  1246. * extensions of the registered formats
  1247. * @param mime_type if non-NULL checks if mime_type matches with the
  1248. * MIME type of the registered formats
  1249. */
  1250. AVOutputFormat *av_guess_format(const char *short_name,
  1251. const char *filename,
  1252. const char *mime_type);
  1253. /**
  1254. * Guess the codec ID based upon muxer and filename.
  1255. */
  1256. enum CodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name,
  1257. const char *filename, const char *mime_type,
  1258. enum AVMediaType type);
  1259. /**
  1260. * @}
  1261. */
  1262. /**
  1263. * @defgroup lavf_misc Utility functions
  1264. * @ingroup libavf
  1265. * @{
  1266. *
  1267. * Miscelaneous utility functions related to both muxing and demuxing
  1268. * (or neither).
  1269. */
  1270. /**
  1271. * Send a nice hexadecimal dump of a buffer to the specified file stream.
  1272. *
  1273. * @param f The file stream pointer where the dump should be sent to.
  1274. * @param buf buffer
  1275. * @param size buffer size
  1276. *
  1277. * @see av_hex_dump_log, av_pkt_dump2, av_pkt_dump_log2
  1278. */
  1279. void av_hex_dump(FILE *f, uint8_t *buf, int size);
  1280. /**
  1281. * Send a nice hexadecimal dump of a buffer to the log.
  1282. *
  1283. * @param avcl A pointer to an arbitrary struct of which the first field is a
  1284. * pointer to an AVClass struct.
  1285. * @param level The importance level of the message, lower values signifying
  1286. * higher importance.
  1287. * @param buf buffer
  1288. * @param size buffer size
  1289. *
  1290. * @see av_hex_dump, av_pkt_dump2, av_pkt_dump_log2
  1291. */
  1292. void av_hex_dump_log(void *avcl, int level, uint8_t *buf, int size);
  1293. /**
  1294. * Send a nice dump of a packet to the specified file stream.
  1295. *
  1296. * @param f The file stream pointer where the dump should be sent to.
  1297. * @param pkt packet to dump
  1298. * @param dump_payload True if the payload must be displayed, too.
  1299. * @param st AVStream that the packet belongs to
  1300. */
  1301. void av_pkt_dump2(FILE *f, AVPacket *pkt, int dump_payload, AVStream *st);
  1302. /**
  1303. * Send a nice dump of a packet to the log.
  1304. *
  1305. * @param avcl A pointer to an arbitrary struct of which the first field is a
  1306. * pointer to an AVClass struct.
  1307. * @param level The importance level of the message, lower values signifying
  1308. * higher importance.
  1309. * @param pkt packet to dump
  1310. * @param dump_payload True if the payload must be displayed, too.
  1311. * @param st AVStream that the packet belongs to
  1312. */
  1313. void av_pkt_dump_log2(void *avcl, int level, AVPacket *pkt, int dump_payload,
  1314. AVStream *st);
  1315. /**
  1316. * Get the CodecID for the given codec tag tag.
  1317. * If no codec id is found returns CODEC_ID_NONE.
  1318. *
  1319. * @param tags list of supported codec_id-codec_tag pairs, as stored
  1320. * in AVInputFormat.codec_tag and AVOutputFormat.codec_tag
  1321. */
  1322. enum CodecID av_codec_get_id(const struct AVCodecTag * const *tags, unsigned int tag);
  1323. /**
  1324. * Get the codec tag for the given codec id id.
  1325. * If no codec tag is found returns 0.
  1326. *
  1327. * @param tags list of supported codec_id-codec_tag pairs, as stored
  1328. * in AVInputFormat.codec_tag and AVOutputFormat.codec_tag
  1329. */
  1330. unsigned int av_codec_get_tag(const struct AVCodecTag * const *tags, enum CodecID id);
  1331. int av_find_default_stream_index(AVFormatContext *s);
  1332. /**
  1333. * Get the index for a specific timestamp.
  1334. * @param flags if AVSEEK_FLAG_BACKWARD then the returned index will correspond
  1335. * to the timestamp which is <= the requested one, if backward
  1336. * is 0, then it will be >=
  1337. * if AVSEEK_FLAG_ANY seek to any frame, only keyframes otherwise
  1338. * @return < 0 if no such timestamp could be found
  1339. */
  1340. int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags);
  1341. /**
  1342. * Add an index entry into a sorted list. Update the entry if the list
  1343. * already contains it.
  1344. *
  1345. * @param timestamp timestamp in the time base of the given stream
  1346. */
  1347. int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp,
  1348. int size, int distance, int flags);
  1349. /**
  1350. * Split a URL string into components.
  1351. *
  1352. * The pointers to buffers for storing individual components may be null,
  1353. * in order to ignore that component. Buffers for components not found are
  1354. * set to empty strings. If the port is not found, it is set to a negative
  1355. * value.
  1356. *
  1357. * @param proto the buffer for the protocol
  1358. * @param proto_size the size of the proto buffer
  1359. * @param authorization the buffer for the authorization
  1360. * @param authorization_size the size of the authorization buffer
  1361. * @param hostname the buffer for the host name
  1362. * @param hostname_size the size of the hostname buffer
  1363. * @param port_ptr a pointer to store the port number in
  1364. * @param path the buffer for the path
  1365. * @param path_size the size of the path buffer
  1366. * @param url the URL to split
  1367. */
  1368. void av_url_split(char *proto, int proto_size,
  1369. char *authorization, int authorization_size,
  1370. char *hostname, int hostname_size,
  1371. int *port_ptr,
  1372. char *path, int path_size,
  1373. const char *url);
  1374. void av_dump_format(AVFormatContext *ic,
  1375. int index,
  1376. const char *url,
  1377. int is_output);
  1378. /**
  1379. * Get the current time in microseconds.
  1380. */
  1381. int64_t av_gettime(void);
  1382. /**
  1383. * Return in 'buf' the path with '%d' replaced by a number.
  1384. *
  1385. * Also handles the '%0nd' format where 'n' is the total number
  1386. * of digits and '%%'.
  1387. *
  1388. * @param buf destination buffer
  1389. * @param buf_size destination buffer size
  1390. * @param path numbered sequence string
  1391. * @param number frame number
  1392. * @return 0 if OK, -1 on format error
  1393. */
  1394. int av_get_frame_filename(char *buf, int buf_size,
  1395. const char *path, int number);
  1396. /**
  1397. * Check whether filename actually is a numbered sequence generator.
  1398. *
  1399. * @param filename possible numbered sequence string
  1400. * @return 1 if a valid numbered sequence string, 0 otherwise
  1401. */
  1402. int av_filename_number_test(const char *filename);
  1403. /**
  1404. * Generate an SDP for an RTP session.
  1405. *
  1406. * @param ac array of AVFormatContexts describing the RTP streams. If the
  1407. * array is composed by only one context, such context can contain
  1408. * multiple AVStreams (one AVStream per RTP stream). Otherwise,
  1409. * all the contexts in the array (an AVCodecContext per RTP stream)
  1410. * must contain only one AVStream.
  1411. * @param n_files number of AVCodecContexts contained in ac
  1412. * @param buf buffer where the SDP will be stored (must be allocated by
  1413. * the caller)
  1414. * @param size the size of the buffer
  1415. * @return 0 if OK, AVERROR_xxx on error
  1416. */
  1417. int av_sdp_create(AVFormatContext *ac[], int n_files, char *buf, int size);
  1418. /**
  1419. * Return a positive value if the given filename has one of the given
  1420. * extensions, 0 otherwise.
  1421. *
  1422. * @param extensions a comma-separated list of filename extensions
  1423. */
  1424. int av_match_ext(const char *filename, const char *extensions);
  1425. /**
  1426. * Test if the given container can store a codec.
  1427. *
  1428. * @param std_compliance standards compliance level, one of FF_COMPLIANCE_*
  1429. *
  1430. * @return 1 if codec with ID codec_id can be stored in ofmt, 0 if it cannot.
  1431. * A negative number if this information is not available.
  1432. */
  1433. int avformat_query_codec(AVOutputFormat *ofmt, enum CodecID codec_id, int std_compliance);
  1434. /**
  1435. * @defgroup riff_fourcc RIFF FourCCs
  1436. * @{
  1437. * Get the tables mapping RIFF FourCCs to libavcodec CodecIDs. The tables are
  1438. * meant to be passed to av_codec_get_id()/av_codec_get_tag() as in the
  1439. * following code:
  1440. * @code
  1441. * uint32_t tag = MKTAG('H', '2', '6', '4');
  1442. * const struct AVCodecTag *table[] = { avformat_get_riff_video_tags(), 0 };
  1443. * enum CodecID id = av_codec_get_id(table, tag);
  1444. * @endcode
  1445. */
  1446. /**
  1447. * @return the table mapping RIFF FourCCs for video to libavcodec CodecID.
  1448. */
  1449. const struct AVCodecTag *avformat_get_riff_video_tags(void);
  1450. /**
  1451. * @return the table mapping RIFF FourCCs for audio to CodecID.
  1452. */
  1453. const struct AVCodecTag *avformat_get_riff_audio_tags(void);
  1454. /**
  1455. * @}
  1456. */
  1457. /**
  1458. * @}
  1459. */
  1460. #endif /* AVFORMAT_AVFORMAT_H */