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.

1782 lines
64KB

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