avformat.h 56 KB

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