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.

1917 lines
70KB

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