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.

1486 lines
53KB

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