avformat.h 56 KB

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