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.

1569 lines
56KB

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