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.

1878 lines
65KB

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