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.

1943 lines
67KB

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