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.

1560 lines
55KB

  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. /**
  416. * Stream structure.
  417. * New fields can be added to the end with minor version bumps.
  418. * Removal, reordering and changes to existing fields require a major
  419. * version bump.
  420. * sizeof(AVStream) must not be used outside libav*.
  421. */
  422. typedef struct AVStream {
  423. int index; /**< stream index in AVFormatContext */
  424. int id; /**< format-specific stream ID */
  425. AVCodecContext *codec; /**< codec context */
  426. /**
  427. * Real base framerate of the stream.
  428. * This is the lowest framerate with which all timestamps can be
  429. * represented accurately (it is the least common multiple of all
  430. * framerates in the stream). Note, this value is just a guess!
  431. * For example, if the time base is 1/90000 and all frames have either
  432. * approximately 3600 or 1800 timer ticks, then r_frame_rate will be 50/1.
  433. */
  434. AVRational r_frame_rate;
  435. void *priv_data;
  436. /* internal data used in av_find_stream_info() */
  437. int64_t first_dts;
  438. /**
  439. * encoding: pts generation when outputting stream
  440. */
  441. struct AVFrac pts;
  442. /**
  443. * This is the fundamental unit of time (in seconds) in terms
  444. * of which frame timestamps are represented. For fixed-fps content,
  445. * time base should be 1/framerate and timestamp increments should be 1.
  446. */
  447. AVRational time_base;
  448. int pts_wrap_bits; /**< number of bits in pts (used for wrapping control) */
  449. /* ffmpeg.c private use */
  450. int stream_copy; /**< If set, just copy stream. */
  451. enum AVDiscard discard; ///< Selects which packets can be discarded at will and do not need to be demuxed.
  452. //FIXME move stuff to a flags field?
  453. /**
  454. * Quality, as it has been removed from AVCodecContext and put in AVVideoFrame.
  455. * MN: dunno if that is the right place for it
  456. */
  457. float quality;
  458. /**
  459. * Decoding: pts of the first frame of the stream, in stream time base.
  460. * Only set this if you are absolutely 100% sure that the value you set
  461. * it to really is the pts of the first frame.
  462. * This may be undefined (AV_NOPTS_VALUE).
  463. * @note The ASF header does NOT contain a correct start_time the ASF
  464. * demuxer must NOT set this.
  465. */
  466. int64_t start_time;
  467. /**
  468. * Decoding: duration of the stream, in stream time base.
  469. * If a source file does not specify a duration, but does specify
  470. * a bitrate, this value will be estimated from bitrate and file size.
  471. */
  472. int64_t duration;
  473. #if FF_API_OLD_METADATA
  474. attribute_deprecated char language[4]; /**< ISO 639-2/B 3-letter language code (empty string if undefined) */
  475. #endif
  476. /* av_read_frame() support */
  477. enum AVStreamParseType need_parsing;
  478. struct AVCodecParserContext *parser;
  479. int64_t cur_dts;
  480. int last_IP_duration;
  481. int64_t last_IP_pts;
  482. /* av_seek_frame() support */
  483. AVIndexEntry *index_entries; /**< Only used if the format does not
  484. support seeking natively. */
  485. int nb_index_entries;
  486. unsigned int index_entries_allocated_size;
  487. int64_t nb_frames; ///< number of frames in this stream if known or 0
  488. #if FF_API_LAVF_UNUSED
  489. attribute_deprecated int64_t unused[4+1];
  490. #endif
  491. #if FF_API_OLD_METADATA
  492. attribute_deprecated char *filename; /**< source filename of the stream */
  493. #endif
  494. int disposition; /**< AV_DISPOSITION_* bit field */
  495. AVProbeData probe_data;
  496. #define MAX_REORDER_DELAY 16
  497. int64_t pts_buffer[MAX_REORDER_DELAY+1];
  498. /**
  499. * sample aspect ratio (0 if unknown)
  500. * - encoding: Set by user.
  501. * - decoding: Set by libavformat.
  502. */
  503. AVRational sample_aspect_ratio;
  504. AVMetadata *metadata;
  505. /* Intended mostly for av_read_frame() support. Not supposed to be used by */
  506. /* external applications; try to use something else if at all possible. */
  507. const uint8_t *cur_ptr;
  508. int cur_len;
  509. AVPacket cur_pkt;
  510. // Timestamp generation support:
  511. /**
  512. * Timestamp corresponding to the last dts sync point.
  513. *
  514. * Initialized when AVCodecParserContext.dts_sync_point >= 0 and
  515. * a DTS is received from the underlying container. Otherwise set to
  516. * AV_NOPTS_VALUE by default.
  517. */
  518. int64_t reference_dts;
  519. /**
  520. * Number of packets to buffer for codec probing
  521. * NOT PART OF PUBLIC API
  522. */
  523. #define MAX_PROBE_PACKETS 2500
  524. int probe_packets;
  525. /**
  526. * last packet in packet_buffer for this stream when muxing.
  527. * used internally, NOT PART OF PUBLIC API, dont read or write from outside of libav*
  528. */
  529. struct AVPacketList *last_in_packet_buffer;
  530. /**
  531. * Average framerate
  532. */
  533. AVRational avg_frame_rate;
  534. /**
  535. * Number of frames that have been demuxed during av_find_stream_info()
  536. */
  537. int codec_info_nb_frames;
  538. /**
  539. * Stream informations used internally by av_find_stream_info()
  540. */
  541. #define MAX_STD_TIMEBASES (60*12+5)
  542. struct {
  543. int64_t last_dts;
  544. int64_t duration_gcd;
  545. int duration_count;
  546. double duration_error[MAX_STD_TIMEBASES];
  547. int64_t codec_info_duration;
  548. } *info;
  549. } AVStream;
  550. #define AV_PROGRAM_RUNNING 1
  551. /**
  552. * New fields can be added to the end with minor version bumps.
  553. * Removal, reordering and changes to existing fields require a major
  554. * version bump.
  555. * sizeof(AVProgram) must not be used outside libav*.
  556. */
  557. typedef struct AVProgram {
  558. int id;
  559. #if FF_API_OLD_METADATA
  560. attribute_deprecated char *provider_name; ///< network name for DVB streams
  561. attribute_deprecated char *name; ///< service name for DVB streams
  562. #endif
  563. int flags;
  564. enum AVDiscard discard; ///< selects which program to discard and which to feed to the caller
  565. unsigned int *stream_index;
  566. unsigned int nb_stream_indexes;
  567. AVMetadata *metadata;
  568. } AVProgram;
  569. #define AVFMTCTX_NOHEADER 0x0001 /**< signal that no header is present
  570. (streams are added dynamically) */
  571. typedef struct AVChapter {
  572. int id; ///< unique ID to identify the chapter
  573. AVRational time_base; ///< time base in which the start/end timestamps are specified
  574. int64_t start, end; ///< chapter start/end time in time_base units
  575. #if FF_API_OLD_METADATA
  576. attribute_deprecated char *title; ///< chapter title
  577. #endif
  578. AVMetadata *metadata;
  579. } AVChapter;
  580. #if FF_API_MAX_STREAMS
  581. #define MAX_STREAMS 20
  582. #endif
  583. /**
  584. * Format I/O context.
  585. * New fields can be added to the end with minor version bumps.
  586. * Removal, reordering and changes to existing fields require a major
  587. * version bump.
  588. * sizeof(AVFormatContext) must not be used outside libav*.
  589. */
  590. typedef struct AVFormatContext {
  591. const AVClass *av_class; /**< Set by avformat_alloc_context. */
  592. /* Can only be iformat or oformat, not both at the same time. */
  593. struct AVInputFormat *iformat;
  594. struct AVOutputFormat *oformat;
  595. void *priv_data;
  596. ByteIOContext *pb;
  597. unsigned int nb_streams;
  598. #if FF_API_MAX_STREAMS
  599. AVStream *streams[MAX_STREAMS];
  600. #else
  601. AVStream **streams;
  602. #endif
  603. char filename[1024]; /**< input or output filename */
  604. /* stream info */
  605. int64_t timestamp;
  606. #if FF_API_OLD_METADATA
  607. attribute_deprecated char title[512];
  608. attribute_deprecated char author[512];
  609. attribute_deprecated char copyright[512];
  610. attribute_deprecated char comment[512];
  611. attribute_deprecated char album[512];
  612. attribute_deprecated int year; /**< ID3 year, 0 if none */
  613. attribute_deprecated int track; /**< track number, 0 if none */
  614. attribute_deprecated char genre[32]; /**< ID3 genre */
  615. #endif
  616. int ctx_flags; /**< Format-specific flags, see AVFMTCTX_xx */
  617. /* private data for pts handling (do not modify directly). */
  618. /**
  619. * This buffer is only needed when packets were already buffered but
  620. * not decoded, for example to get the codec parameters in MPEG
  621. * streams.
  622. */
  623. struct AVPacketList *packet_buffer;
  624. /**
  625. * Decoding: position of the first frame of the component, in
  626. * AV_TIME_BASE fractional seconds. NEVER set this value directly:
  627. * It is deduced from the AVStream values.
  628. */
  629. int64_t start_time;
  630. /**
  631. * Decoding: duration of the stream, in AV_TIME_BASE fractional
  632. * seconds. Only set this value if you know none of the individual stream
  633. * durations and also dont set any of them. This is deduced from the
  634. * AVStream values if not set.
  635. */
  636. int64_t duration;
  637. /**
  638. * decoding: total file size, 0 if unknown
  639. */
  640. int64_t file_size;
  641. /**
  642. * Decoding: total stream bitrate in bit/s, 0 if not
  643. * available. Never set it directly if the file_size and the
  644. * duration are known as FFmpeg can compute it automatically.
  645. */
  646. int bit_rate;
  647. /* av_read_frame() support */
  648. AVStream *cur_st;
  649. #if FF_API_LAVF_UNUSED
  650. const uint8_t *cur_ptr_deprecated;
  651. int cur_len_deprecated;
  652. AVPacket cur_pkt_deprecated;
  653. #endif
  654. /* av_seek_frame() support */
  655. int64_t data_offset; /**< offset of the first packet */
  656. int index_built;
  657. int mux_rate;
  658. unsigned int packet_size;
  659. int preload;
  660. int max_delay;
  661. #define AVFMT_NOOUTPUTLOOP -1
  662. #define AVFMT_INFINITEOUTPUTLOOP 0
  663. /**
  664. * number of times to loop output in formats that support it
  665. */
  666. int loop_output;
  667. int flags;
  668. #define AVFMT_FLAG_GENPTS 0x0001 ///< Generate missing pts even if it requires parsing future frames.
  669. #define AVFMT_FLAG_IGNIDX 0x0002 ///< Ignore index.
  670. #define AVFMT_FLAG_NONBLOCK 0x0004 ///< Do not block when reading packets from input.
  671. #define AVFMT_FLAG_IGNDTS 0x0008 ///< Ignore DTS on frames that contain both DTS & PTS
  672. #define AVFMT_FLAG_NOFILLIN 0x0010 ///< Do not infer any values from other values, just return what is stored in the container
  673. #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
  674. #define AVFMT_FLAG_RTP_HINT 0x0040 ///< Add RTP hinting to the output file
  675. int loop_input;
  676. /**
  677. * decoding: size of data to probe; encoding: unused.
  678. */
  679. unsigned int probesize;
  680. /**
  681. * Maximum time (in AV_TIME_BASE units) during which the input should
  682. * be analyzed in av_find_stream_info().
  683. */
  684. int max_analyze_duration;
  685. const uint8_t *key;
  686. int keylen;
  687. unsigned int nb_programs;
  688. AVProgram **programs;
  689. /**
  690. * Forced video codec_id.
  691. * Demuxing: Set by user.
  692. */
  693. enum CodecID video_codec_id;
  694. /**
  695. * Forced audio codec_id.
  696. * Demuxing: Set by user.
  697. */
  698. enum CodecID audio_codec_id;
  699. /**
  700. * Forced subtitle codec_id.
  701. * Demuxing: Set by user.
  702. */
  703. enum CodecID subtitle_codec_id;
  704. /**
  705. * Maximum amount of memory in bytes to use for the index of each stream.
  706. * If the index exceeds this size, entries will be discarded as
  707. * needed to maintain a smaller size. This can lead to slower or less
  708. * accurate seeking (depends on demuxer).
  709. * Demuxers for which a full in-memory index is mandatory will ignore
  710. * this.
  711. * muxing : unused
  712. * demuxing: set by user
  713. */
  714. unsigned int max_index_size;
  715. /**
  716. * Maximum amount of memory in bytes to use for buffering frames
  717. * obtained from realtime capture devices.
  718. */
  719. unsigned int max_picture_buffer;
  720. unsigned int nb_chapters;
  721. AVChapter **chapters;
  722. /**
  723. * Flags to enable debugging.
  724. */
  725. int debug;
  726. #define FF_FDEBUG_TS 0x0001
  727. /**
  728. * Raw packets from the demuxer, prior to parsing and decoding.
  729. * This buffer is used for buffering packets until the codec can
  730. * be identified, as parsing cannot be done without knowing the
  731. * codec.
  732. */
  733. struct AVPacketList *raw_packet_buffer;
  734. struct AVPacketList *raw_packet_buffer_end;
  735. struct AVPacketList *packet_buffer_end;
  736. AVMetadata *metadata;
  737. /**
  738. * Remaining size available for raw_packet_buffer, in bytes.
  739. * NOT PART OF PUBLIC API
  740. */
  741. #define RAW_PACKET_BUFFER_SIZE 2500000
  742. int raw_packet_buffer_remaining_size;
  743. /**
  744. * Start time of the stream in real world time, in microseconds
  745. * since the unix epoch (00:00 1st January 1970). That is, pts=0
  746. * in the stream was captured at this real world time.
  747. * - encoding: Set by user.
  748. * - decoding: Unused.
  749. */
  750. int64_t start_time_realtime;
  751. } AVFormatContext;
  752. typedef struct AVPacketList {
  753. AVPacket pkt;
  754. struct AVPacketList *next;
  755. } AVPacketList;
  756. #if FF_API_FIRST_FORMAT
  757. attribute_deprecated extern AVInputFormat *first_iformat;
  758. attribute_deprecated extern AVOutputFormat *first_oformat;
  759. #endif
  760. /**
  761. * If f is NULL, returns the first registered input format,
  762. * if f is non-NULL, returns the next registered input format after f
  763. * or NULL if f is the last one.
  764. */
  765. AVInputFormat *av_iformat_next(AVInputFormat *f);
  766. /**
  767. * If f is NULL, returns the first registered output format,
  768. * if f is non-NULL, returns the next registered output format after f
  769. * or NULL if f is the last one.
  770. */
  771. AVOutputFormat *av_oformat_next(AVOutputFormat *f);
  772. enum CodecID av_guess_image2_codec(const char *filename);
  773. /* XXX: Use automatic init with either ELF sections or C file parser */
  774. /* modules. */
  775. /* utils.c */
  776. void av_register_input_format(AVInputFormat *format);
  777. void av_register_output_format(AVOutputFormat *format);
  778. #if FF_API_GUESS_FORMAT
  779. attribute_deprecated AVOutputFormat *guess_stream_format(const char *short_name,
  780. const char *filename,
  781. const char *mime_type);
  782. /**
  783. * @deprecated Use av_guess_format() instead.
  784. */
  785. attribute_deprecated AVOutputFormat *guess_format(const char *short_name,
  786. const char *filename,
  787. const char *mime_type);
  788. #endif
  789. /**
  790. * Return the output format in the list of registered output formats
  791. * which best matches the provided parameters, or return NULL if
  792. * there is no match.
  793. *
  794. * @param short_name if non-NULL checks if short_name matches with the
  795. * names of the registered formats
  796. * @param filename if non-NULL checks if filename terminates with the
  797. * extensions of the registered formats
  798. * @param mime_type if non-NULL checks if mime_type matches with the
  799. * MIME type of the registered formats
  800. */
  801. AVOutputFormat *av_guess_format(const char *short_name,
  802. const char *filename,
  803. const char *mime_type);
  804. /**
  805. * Guess the codec ID based upon muxer and filename.
  806. */
  807. enum CodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name,
  808. const char *filename, const char *mime_type,
  809. enum AVMediaType type);
  810. /**
  811. * Send a nice hexadecimal dump of a buffer to the specified file stream.
  812. *
  813. * @param f The file stream pointer where the dump should be sent to.
  814. * @param buf buffer
  815. * @param size buffer size
  816. *
  817. * @see av_hex_dump_log, av_pkt_dump, av_pkt_dump_log
  818. */
  819. void av_hex_dump(FILE *f, uint8_t *buf, int size);
  820. /**
  821. * Send a nice hexadecimal dump of a buffer to the log.
  822. *
  823. * @param avcl A pointer to an arbitrary struct of which the first field is a
  824. * pointer to an AVClass struct.
  825. * @param level The importance level of the message, lower values signifying
  826. * higher importance.
  827. * @param buf buffer
  828. * @param size buffer size
  829. *
  830. * @see av_hex_dump, av_pkt_dump, av_pkt_dump_log
  831. */
  832. void av_hex_dump_log(void *avcl, int level, uint8_t *buf, int size);
  833. /**
  834. * Send a nice dump of a packet to the specified file stream.
  835. *
  836. * @param f The file stream pointer where the dump should be sent to.
  837. * @param pkt packet to dump
  838. * @param dump_payload True if the payload must be displayed, too.
  839. */
  840. void av_pkt_dump(FILE *f, AVPacket *pkt, int dump_payload);
  841. /**
  842. * Send a nice dump of a packet to the log.
  843. *
  844. * @param avcl A pointer to an arbitrary struct of which the first field is a
  845. * pointer to an AVClass struct.
  846. * @param level The importance level of the message, lower values signifying
  847. * higher importance.
  848. * @param pkt packet to dump
  849. * @param dump_payload True if the payload must be displayed, too.
  850. */
  851. void av_pkt_dump_log(void *avcl, int level, AVPacket *pkt, int dump_payload);
  852. /**
  853. * Initialize libavformat and register all the muxers, demuxers and
  854. * protocols. If you do not call this function, then you can select
  855. * exactly which formats you want to support.
  856. *
  857. * @see av_register_input_format()
  858. * @see av_register_output_format()
  859. * @see av_register_protocol()
  860. */
  861. void av_register_all(void);
  862. /**
  863. * Get the CodecID for the given codec tag tag.
  864. * If no codec id is found returns CODEC_ID_NONE.
  865. *
  866. * @param tags list of supported codec_id-codec_tag pairs, as stored
  867. * in AVInputFormat.codec_tag and AVOutputFormat.codec_tag
  868. */
  869. enum CodecID av_codec_get_id(const struct AVCodecTag * const *tags, unsigned int tag);
  870. /**
  871. * Get the codec tag for the given codec id id.
  872. * If no codec tag is found returns 0.
  873. *
  874. * @param tags list of supported codec_id-codec_tag pairs, as stored
  875. * in AVInputFormat.codec_tag and AVOutputFormat.codec_tag
  876. */
  877. unsigned int av_codec_get_tag(const struct AVCodecTag * const *tags, enum CodecID id);
  878. /* media file input */
  879. /**
  880. * Find AVInputFormat based on the short name of the input format.
  881. */
  882. AVInputFormat *av_find_input_format(const char *short_name);
  883. /**
  884. * Guess the file format.
  885. *
  886. * @param is_opened Whether the file is already opened; determines whether
  887. * demuxers with or without AVFMT_NOFILE are probed.
  888. */
  889. AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened);
  890. /**
  891. * Guess the file format.
  892. *
  893. * @param is_opened Whether the file is already opened; determines whether
  894. * demuxers with or without AVFMT_NOFILE are probed.
  895. * @param score_max A probe score larger that this is required to accept a
  896. * detection, the variable is set to the actual detection
  897. * score afterwards.
  898. * If the score is <= AVPROBE_SCORE_MAX / 4 it is recommended
  899. * to retry with a larger probe buffer.
  900. */
  901. AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max);
  902. /**
  903. * Allocate all the structures needed to read an input stream.
  904. * This does not open the needed codecs for decoding the stream[s].
  905. */
  906. int av_open_input_stream(AVFormatContext **ic_ptr,
  907. ByteIOContext *pb, const char *filename,
  908. AVInputFormat *fmt, AVFormatParameters *ap);
  909. /**
  910. * Open a media file as input. The codecs are not opened. Only the file
  911. * header (if present) is read.
  912. *
  913. * @param ic_ptr The opened media file handle is put here.
  914. * @param filename filename to open
  915. * @param fmt If non-NULL, force the file format to use.
  916. * @param buf_size optional buffer size (zero if default is OK)
  917. * @param ap Additional parameters needed when opening the file
  918. * (NULL if default).
  919. * @return 0 if OK, AVERROR_xxx otherwise
  920. */
  921. int av_open_input_file(AVFormatContext **ic_ptr, const char *filename,
  922. AVInputFormat *fmt,
  923. int buf_size,
  924. AVFormatParameters *ap);
  925. #if FF_API_ALLOC_FORMAT_CONTEXT
  926. /**
  927. * @deprecated Use avformat_alloc_context() instead.
  928. */
  929. attribute_deprecated AVFormatContext *av_alloc_format_context(void);
  930. #endif
  931. /**
  932. * Allocate an AVFormatContext.
  933. * Can be freed with av_free() but do not forget to free everything you
  934. * explicitly allocated as well!
  935. */
  936. AVFormatContext *avformat_alloc_context(void);
  937. /**
  938. * Read packets of a media file to get stream information. This
  939. * is useful for file formats with no headers such as MPEG. This
  940. * function also computes the real framerate in case of MPEG-2 repeat
  941. * frame mode.
  942. * The logical file position is not changed by this function;
  943. * examined packets may be buffered for later processing.
  944. *
  945. * @param ic media file handle
  946. * @return >=0 if OK, AVERROR_xxx on error
  947. * @todo Let the user decide somehow what information is needed so that
  948. * we do not waste time getting stuff the user does not need.
  949. */
  950. int av_find_stream_info(AVFormatContext *ic);
  951. /**
  952. * Find the "best" stream in the file.
  953. * The best stream is determined according to various heuristics as the most
  954. * likely to be what the user expects.
  955. * If the decoder parameter is non-NULL, av_find_best_stream will find the
  956. * default decoder for the stream's codec; streams for which no decoder can
  957. * be found are ignored.
  958. *
  959. * @param ic media file handle
  960. * @param type stream type: video, audio, subtitles, etc.
  961. * @param wanted_stream_nb user-requested stream number,
  962. * or -1 for automatic selection
  963. * @param related_stream try to find a stream related (eg. in the same
  964. * program) to this one, or -1 if none
  965. * @param decoder_ret if non-NULL, returns the decoder for the
  966. * selected stream
  967. * @param flags flags; none are currently defined
  968. * @return the non-negative stream number in case of success,
  969. * AVERROR_STREAM_NOT_FOUND if no stream with the requested type
  970. * could be found,
  971. * AVERROR_DECODER_NOT_FOUND if streams were found but no decoder
  972. * @note If av_find_best_stream returns successfully and decoder_ret is not
  973. * NULL, then *decoder_ret is guaranteed to be set to a valid AVCodec.
  974. */
  975. int av_find_best_stream(AVFormatContext *ic,
  976. enum AVMediaType type,
  977. int wanted_stream_nb,
  978. int related_stream,
  979. AVCodec **decoder_ret,
  980. int flags);
  981. /**
  982. * Read a transport packet from a media file.
  983. *
  984. * This function is obsolete and should never be used.
  985. * Use av_read_frame() instead.
  986. *
  987. * @param s media file handle
  988. * @param pkt is filled
  989. * @return 0 if OK, AVERROR_xxx on error
  990. */
  991. int av_read_packet(AVFormatContext *s, AVPacket *pkt);
  992. /**
  993. * Return the next frame of a stream.
  994. * This function returns what is stored in the file, and does not validate
  995. * that what is there are valid frames for the decoder. It will split what is
  996. * stored in the file into frames and return one for each call. It will not
  997. * omit invalid data between valid frames so as to give the decoder the maximum
  998. * information possible for decoding.
  999. *
  1000. * The returned packet is valid
  1001. * until the next av_read_frame() or until av_close_input_file() and
  1002. * must be freed with av_free_packet. For video, the packet contains
  1003. * exactly one frame. For audio, it contains an integer number of
  1004. * frames if each frame has a known fixed size (e.g. PCM or ADPCM
  1005. * data). If the audio frames have a variable size (e.g. MPEG audio),
  1006. * then it contains one frame.
  1007. *
  1008. * pkt->pts, pkt->dts and pkt->duration are always set to correct
  1009. * values in AVStream.time_base units (and guessed if the format cannot
  1010. * provide them). pkt->pts can be AV_NOPTS_VALUE if the video format
  1011. * has B-frames, so it is better to rely on pkt->dts if you do not
  1012. * decompress the payload.
  1013. *
  1014. * @return 0 if OK, < 0 on error or end of file
  1015. */
  1016. int av_read_frame(AVFormatContext *s, AVPacket *pkt);
  1017. /**
  1018. * Seek to the keyframe at timestamp.
  1019. * 'timestamp' in 'stream_index'.
  1020. * @param stream_index If stream_index is (-1), a default
  1021. * stream is selected, and timestamp is automatically converted
  1022. * from AV_TIME_BASE units to the stream specific time_base.
  1023. * @param timestamp Timestamp in AVStream.time_base units
  1024. * or, if no stream is specified, in AV_TIME_BASE units.
  1025. * @param flags flags which select direction and seeking mode
  1026. * @return >= 0 on success
  1027. */
  1028. int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp,
  1029. int flags);
  1030. /**
  1031. * Seek to timestamp ts.
  1032. * Seeking will be done so that the point from which all active streams
  1033. * can be presented successfully will be closest to ts and within min/max_ts.
  1034. * Active streams are all streams that have AVStream.discard < AVDISCARD_ALL.
  1035. *
  1036. * If flags contain AVSEEK_FLAG_BYTE, then all timestamps are in bytes and
  1037. * are the file position (this may not be supported by all demuxers).
  1038. * If flags contain AVSEEK_FLAG_FRAME, then all timestamps are in frames
  1039. * in the stream with stream_index (this may not be supported by all demuxers).
  1040. * Otherwise all timestamps are in units of the stream selected by stream_index
  1041. * or if stream_index is -1, in AV_TIME_BASE units.
  1042. * If flags contain AVSEEK_FLAG_ANY, then non-keyframes are treated as
  1043. * keyframes (this may not be supported by all demuxers).
  1044. *
  1045. * @param stream_index index of the stream which is used as time base reference
  1046. * @param min_ts smallest acceptable timestamp
  1047. * @param ts target timestamp
  1048. * @param max_ts largest acceptable timestamp
  1049. * @param flags flags
  1050. * @return >=0 on success, error code otherwise
  1051. *
  1052. * @note This is part of the new seek API which is still under construction.
  1053. * Thus do not use this yet. It may change at any time, do not expect
  1054. * ABI compatibility yet!
  1055. */
  1056. int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
  1057. /**
  1058. * Start playing a network-based stream (e.g. RTSP stream) at the
  1059. * current position.
  1060. */
  1061. int av_read_play(AVFormatContext *s);
  1062. /**
  1063. * Pause a network-based stream (e.g. RTSP stream).
  1064. *
  1065. * Use av_read_play() to resume it.
  1066. */
  1067. int av_read_pause(AVFormatContext *s);
  1068. /**
  1069. * Free a AVFormatContext allocated by av_open_input_stream.
  1070. * @param s context to free
  1071. */
  1072. void av_close_input_stream(AVFormatContext *s);
  1073. /**
  1074. * Close a media file (but not its codecs).
  1075. *
  1076. * @param s media file handle
  1077. */
  1078. void av_close_input_file(AVFormatContext *s);
  1079. /**
  1080. * Add a new stream to a media file.
  1081. *
  1082. * Can only be called in the read_header() function. If the flag
  1083. * AVFMTCTX_NOHEADER is in the format context, then new streams
  1084. * can be added in read_packet too.
  1085. *
  1086. * @param s media file handle
  1087. * @param id file-format-dependent stream ID
  1088. */
  1089. AVStream *av_new_stream(AVFormatContext *s, int id);
  1090. AVProgram *av_new_program(AVFormatContext *s, int id);
  1091. /**
  1092. * Add a new chapter.
  1093. * This function is NOT part of the public API
  1094. * and should ONLY be used by demuxers.
  1095. *
  1096. * @param s media file handle
  1097. * @param id unique ID for this chapter
  1098. * @param start chapter start time in time_base units
  1099. * @param end chapter end time in time_base units
  1100. * @param title chapter title
  1101. *
  1102. * @return AVChapter or NULL on error
  1103. */
  1104. AVChapter *ff_new_chapter(AVFormatContext *s, int id, AVRational time_base,
  1105. int64_t start, int64_t end, const char *title);
  1106. /**
  1107. * Set the pts for a given stream.
  1108. *
  1109. * @param s stream
  1110. * @param pts_wrap_bits number of bits effectively used by the pts
  1111. * (used for wrap control, 33 is the value for MPEG)
  1112. * @param pts_num numerator to convert to seconds (MPEG: 1)
  1113. * @param pts_den denominator to convert to seconds (MPEG: 90000)
  1114. */
  1115. void av_set_pts_info(AVStream *s, int pts_wrap_bits,
  1116. unsigned int pts_num, unsigned int pts_den);
  1117. #define AVSEEK_FLAG_BACKWARD 1 ///< seek backward
  1118. #define AVSEEK_FLAG_BYTE 2 ///< seeking based on position in bytes
  1119. #define AVSEEK_FLAG_ANY 4 ///< seek to any frame, even non-keyframes
  1120. #define AVSEEK_FLAG_FRAME 8 ///< seeking based on frame number
  1121. int av_find_default_stream_index(AVFormatContext *s);
  1122. /**
  1123. * Get the index for a specific timestamp.
  1124. * @param flags if AVSEEK_FLAG_BACKWARD then the returned index will correspond
  1125. * to the timestamp which is <= the requested one, if backward
  1126. * is 0, then it will be >=
  1127. * if AVSEEK_FLAG_ANY seek to any frame, only keyframes otherwise
  1128. * @return < 0 if no such timestamp could be found
  1129. */
  1130. int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags);
  1131. /**
  1132. * Ensure the index uses less memory than the maximum specified in
  1133. * AVFormatContext.max_index_size by discarding entries if it grows
  1134. * too large.
  1135. * This function is not part of the public API and should only be called
  1136. * by demuxers.
  1137. */
  1138. void ff_reduce_index(AVFormatContext *s, int stream_index);
  1139. /**
  1140. * Add an index entry into a sorted list. Update the entry if the list
  1141. * already contains it.
  1142. *
  1143. * @param timestamp timestamp in the time base of the given stream
  1144. */
  1145. int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp,
  1146. int size, int distance, int flags);
  1147. /**
  1148. * Perform a binary search using av_index_search_timestamp() and
  1149. * AVInputFormat.read_timestamp().
  1150. * This is not supposed to be called directly by a user application,
  1151. * but by demuxers.
  1152. * @param target_ts target timestamp in the time base of the given stream
  1153. * @param stream_index stream number
  1154. */
  1155. int av_seek_frame_binary(AVFormatContext *s, int stream_index,
  1156. int64_t target_ts, int flags);
  1157. /**
  1158. * Update cur_dts of all streams based on the given timestamp and AVStream.
  1159. *
  1160. * Stream ref_st unchanged, others set cur_dts in their native time base.
  1161. * Only needed for timestamp wrapping or if (dts not set and pts!=dts).
  1162. * @param timestamp new dts expressed in time_base of param ref_st
  1163. * @param ref_st reference stream giving time_base of param timestamp
  1164. */
  1165. void av_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp);
  1166. /**
  1167. * Perform a binary search using read_timestamp().
  1168. * This is not supposed to be called directly by a user application,
  1169. * but by demuxers.
  1170. * @param target_ts target timestamp in the time base of the given stream
  1171. * @param stream_index stream number
  1172. */
  1173. int64_t av_gen_search(AVFormatContext *s, int stream_index,
  1174. int64_t target_ts, int64_t pos_min,
  1175. int64_t pos_max, int64_t pos_limit,
  1176. int64_t ts_min, int64_t ts_max,
  1177. int flags, int64_t *ts_ret,
  1178. int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t ));
  1179. /**
  1180. * media file output
  1181. */
  1182. int av_set_parameters(AVFormatContext *s, AVFormatParameters *ap);
  1183. /**
  1184. * Split a URL string into components.
  1185. *
  1186. * The pointers to buffers for storing individual components may be null,
  1187. * in order to ignore that component. Buffers for components not found are
  1188. * set to empty strings. If the port is not found, it is set to a negative
  1189. * value.
  1190. *
  1191. * @param proto the buffer for the protocol
  1192. * @param proto_size the size of the proto buffer
  1193. * @param authorization the buffer for the authorization
  1194. * @param authorization_size the size of the authorization buffer
  1195. * @param hostname the buffer for the host name
  1196. * @param hostname_size the size of the hostname buffer
  1197. * @param port_ptr a pointer to store the port number in
  1198. * @param path the buffer for the path
  1199. * @param path_size the size of the path buffer
  1200. * @param url the URL to split
  1201. */
  1202. void av_url_split(char *proto, int proto_size,
  1203. char *authorization, int authorization_size,
  1204. char *hostname, int hostname_size,
  1205. int *port_ptr,
  1206. char *path, int path_size,
  1207. const char *url);
  1208. /**
  1209. * Allocate the stream private data and write the stream header to an
  1210. * output media file.
  1211. *
  1212. * @param s media file handle
  1213. * @return 0 if OK, AVERROR_xxx on error
  1214. */
  1215. int av_write_header(AVFormatContext *s);
  1216. /**
  1217. * Write a packet to an output media file.
  1218. *
  1219. * The packet shall contain one audio or video frame.
  1220. * The packet must be correctly interleaved according to the container
  1221. * specification, if not then av_interleaved_write_frame must be used.
  1222. *
  1223. * @param s media file handle
  1224. * @param pkt The packet, which contains the stream_index, buf/buf_size,
  1225. dts/pts, ...
  1226. * @return < 0 on error, = 0 if OK, 1 if end of stream wanted
  1227. */
  1228. int av_write_frame(AVFormatContext *s, AVPacket *pkt);
  1229. /**
  1230. * Write a packet to an output media file ensuring correct interleaving.
  1231. *
  1232. * The packet must contain one audio or video frame.
  1233. * If the packets are already correctly interleaved, the application should
  1234. * call av_write_frame() instead as it is slightly faster. It is also important
  1235. * to keep in mind that completely non-interleaved input will need huge amounts
  1236. * of memory to interleave with this, so it is preferable to interleave at the
  1237. * demuxer level.
  1238. *
  1239. * @param s media file handle
  1240. * @param pkt The packet, which contains the stream_index, buf/buf_size,
  1241. dts/pts, ...
  1242. * @return < 0 on error, = 0 if OK, 1 if end of stream wanted
  1243. */
  1244. int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt);
  1245. /**
  1246. * Interleave a packet per dts in an output media file.
  1247. *
  1248. * Packets with pkt->destruct == av_destruct_packet will be freed inside this
  1249. * function, so they cannot be used after it. Note that calling av_free_packet()
  1250. * on them is still safe.
  1251. *
  1252. * @param s media file handle
  1253. * @param out the interleaved packet will be output here
  1254. * @param pkt the input packet
  1255. * @param flush 1 if no further packets are available as input and all
  1256. * remaining packets should be output
  1257. * @return 1 if a packet was output, 0 if no packet could be output,
  1258. * < 0 if an error occurred
  1259. */
  1260. int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
  1261. AVPacket *pkt, int flush);
  1262. /**
  1263. * Write the stream trailer to an output media file and free the
  1264. * file private data.
  1265. *
  1266. * May only be called after a successful call to av_write_header.
  1267. *
  1268. * @param s media file handle
  1269. * @return 0 if OK, AVERROR_xxx on error
  1270. */
  1271. int av_write_trailer(AVFormatContext *s);
  1272. void dump_format(AVFormatContext *ic,
  1273. int index,
  1274. const char *url,
  1275. int is_output);
  1276. #if FF_API_PARSE_FRAME_PARAM
  1277. /**
  1278. * Parse width and height out of string str.
  1279. * @deprecated Use av_parse_video_frame_size instead.
  1280. */
  1281. attribute_deprecated int parse_image_size(int *width_ptr, int *height_ptr,
  1282. const char *str);
  1283. /**
  1284. * Convert framerate from a string to a fraction.
  1285. * @deprecated Use av_parse_video_frame_rate instead.
  1286. */
  1287. attribute_deprecated int parse_frame_rate(int *frame_rate, int *frame_rate_base,
  1288. const char *arg);
  1289. #endif
  1290. /**
  1291. * Parse datestr and return a corresponding number of microseconds.
  1292. * @param datestr String representing a date or a duration.
  1293. * - If a date the syntax is:
  1294. * @code
  1295. * now|{[{YYYY-MM-DD|YYYYMMDD}[T|t| ]]{{HH[:MM[:SS[.m...]]]}|{HH[MM[SS[.m...]]]}}[Z|z]}
  1296. * @endcode
  1297. * If the value is "now" it takes the current time.
  1298. * Time is local time unless Z is appended, in which case it is
  1299. * interpreted as UTC.
  1300. * If the year-month-day part is not specified it takes the current
  1301. * year-month-day.
  1302. * @return the number of microseconds since 1st of January, 1970 up to
  1303. * the time of the parsed date or INT64_MIN if datestr cannot be
  1304. * successfully parsed.
  1305. * - If a duration the syntax is:
  1306. * @code
  1307. * [-]HH[:MM[:SS[.m...]]]
  1308. * [-]S+[.m...]
  1309. * @endcode
  1310. * @return the number of microseconds contained in a time interval
  1311. * with the specified duration or INT64_MIN if datestr cannot be
  1312. * successfully parsed.
  1313. * @param duration Flag which tells how to interpret datestr, if
  1314. * not zero datestr is interpreted as a duration, otherwise as a
  1315. * date.
  1316. */
  1317. int64_t parse_date(const char *datestr, int duration);
  1318. /**
  1319. * Get the current time in microseconds.
  1320. */
  1321. int64_t av_gettime(void);
  1322. /* ffm-specific for ffserver */
  1323. #define FFM_PACKET_SIZE 4096
  1324. int64_t ffm_read_write_index(int fd);
  1325. int ffm_write_write_index(int fd, int64_t pos);
  1326. void ffm_set_write_index(AVFormatContext *s, int64_t pos, int64_t file_size);
  1327. /**
  1328. * Attempt to find a specific tag in a URL.
  1329. *
  1330. * syntax: '?tag1=val1&tag2=val2...'. Little URL decoding is done.
  1331. * Return 1 if found.
  1332. */
  1333. int find_info_tag(char *arg, int arg_size, const char *tag1, const char *info);
  1334. /**
  1335. * Return in 'buf' the path with '%d' replaced by a number.
  1336. *
  1337. * Also handles the '%0nd' format where 'n' is the total number
  1338. * of digits and '%%'.
  1339. *
  1340. * @param buf destination buffer
  1341. * @param buf_size destination buffer size
  1342. * @param path numbered sequence string
  1343. * @param number frame number
  1344. * @return 0 if OK, -1 on format error
  1345. */
  1346. int av_get_frame_filename(char *buf, int buf_size,
  1347. const char *path, int number);
  1348. /**
  1349. * Check whether filename actually is a numbered sequence generator.
  1350. *
  1351. * @param filename possible numbered sequence string
  1352. * @return 1 if a valid numbered sequence string, 0 otherwise
  1353. */
  1354. int av_filename_number_test(const char *filename);
  1355. /**
  1356. * Generate an SDP for an RTP session.
  1357. *
  1358. * @param ac array of AVFormatContexts describing the RTP streams. If the
  1359. * array is composed by only one context, such context can contain
  1360. * multiple AVStreams (one AVStream per RTP stream). Otherwise,
  1361. * all the contexts in the array (an AVCodecContext per RTP stream)
  1362. * must contain only one AVStream.
  1363. * @param n_files number of AVCodecContexts contained in ac
  1364. * @param buff buffer where the SDP will be stored (must be allocated by
  1365. * the caller)
  1366. * @param size the size of the buffer
  1367. * @return 0 if OK, AVERROR_xxx on error
  1368. */
  1369. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size);
  1370. /**
  1371. * Return a positive value if the given filename has one of the given
  1372. * extensions, 0 otherwise.
  1373. *
  1374. * @param extensions a comma-separated list of filename extensions
  1375. */
  1376. int av_match_ext(const char *filename, const char *extensions);
  1377. #endif /* AVFORMAT_AVFORMAT_H */