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.

1612 lines
58KB

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