avio.h 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867
  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_AVIO_H
  21. #define AVFORMAT_AVIO_H
  22. /**
  23. * @file
  24. * @ingroup lavf_io
  25. * Buffered I/O operations
  26. */
  27. #include <stdint.h>
  28. #include "libavutil/common.h"
  29. #include "libavutil/dict.h"
  30. #include "libavutil/log.h"
  31. #include "libavformat/version.h"
  32. /**
  33. * Seeking works like for a local file.
  34. */
  35. #define AVIO_SEEKABLE_NORMAL (1 << 0)
  36. /**
  37. * Seeking by timestamp with avio_seek_time() is possible.
  38. */
  39. #define AVIO_SEEKABLE_TIME (1 << 1)
  40. /**
  41. * Callback for checking whether to abort blocking functions.
  42. * AVERROR_EXIT is returned in this case by the interrupted
  43. * function. During blocking operations, callback is called with
  44. * opaque as parameter. If the callback returns 1, the
  45. * blocking operation will be aborted.
  46. *
  47. * No members can be added to this struct without a major bump, if
  48. * new elements have been added after this struct in AVFormatContext
  49. * or AVIOContext.
  50. */
  51. typedef struct AVIOInterruptCB {
  52. int (*callback)(void*);
  53. void *opaque;
  54. } AVIOInterruptCB;
  55. /**
  56. * Directory entry types.
  57. */
  58. enum AVIODirEntryType {
  59. AVIO_ENTRY_UNKNOWN,
  60. AVIO_ENTRY_BLOCK_DEVICE,
  61. AVIO_ENTRY_CHARACTER_DEVICE,
  62. AVIO_ENTRY_DIRECTORY,
  63. AVIO_ENTRY_NAMED_PIPE,
  64. AVIO_ENTRY_SYMBOLIC_LINK,
  65. AVIO_ENTRY_SOCKET,
  66. AVIO_ENTRY_FILE,
  67. AVIO_ENTRY_SERVER,
  68. AVIO_ENTRY_SHARE,
  69. AVIO_ENTRY_WORKGROUP,
  70. };
  71. /**
  72. * Describes single entry of the directory.
  73. *
  74. * Only name and type fields are guaranteed be set.
  75. * Rest of fields are protocol or/and platform dependent and might be unknown.
  76. */
  77. typedef struct AVIODirEntry {
  78. char *name; /**< Filename */
  79. int type; /**< Type of the entry */
  80. int utf8; /**< Set to 1 when name is encoded with UTF-8, 0 otherwise.
  81. Name can be encoded with UTF-8 even though 0 is set. */
  82. int64_t size; /**< File size in bytes, -1 if unknown. */
  83. int64_t modification_timestamp; /**< Time of last modification in microseconds since unix
  84. epoch, -1 if unknown. */
  85. int64_t access_timestamp; /**< Time of last access in microseconds since unix epoch,
  86. -1 if unknown. */
  87. int64_t status_change_timestamp; /**< Time of last status change in microseconds since unix
  88. epoch, -1 if unknown. */
  89. int64_t user_id; /**< User ID of owner, -1 if unknown. */
  90. int64_t group_id; /**< Group ID of owner, -1 if unknown. */
  91. int64_t filemode; /**< Unix file mode, -1 if unknown. */
  92. } AVIODirEntry;
  93. typedef struct AVIODirContext {
  94. struct URLContext *url_context;
  95. } AVIODirContext;
  96. /**
  97. * Different data types that can be returned via the AVIO
  98. * write_data_type callback.
  99. */
  100. enum AVIODataMarkerType {
  101. /**
  102. * Header data; this needs to be present for the stream to be decodeable.
  103. */
  104. AVIO_DATA_MARKER_HEADER,
  105. /**
  106. * A point in the output bytestream where a decoder can start decoding
  107. * (i.e. a keyframe). A demuxer/decoder given the data flagged with
  108. * AVIO_DATA_MARKER_HEADER, followed by any AVIO_DATA_MARKER_SYNC_POINT,
  109. * should give decodeable results.
  110. */
  111. AVIO_DATA_MARKER_SYNC_POINT,
  112. /**
  113. * A point in the output bytestream where a demuxer can start parsing
  114. * (for non self synchronizing bytestream formats). That is, any
  115. * non-keyframe packet start point.
  116. */
  117. AVIO_DATA_MARKER_BOUNDARY_POINT,
  118. /**
  119. * This is any, unlabelled data. It can either be a muxer not marking
  120. * any positions at all, it can be an actual boundary/sync point
  121. * that the muxer chooses not to mark, or a later part of a packet/fragment
  122. * that is cut into multiple write callbacks due to limited IO buffer size.
  123. */
  124. AVIO_DATA_MARKER_UNKNOWN,
  125. /**
  126. * Trailer data, which doesn't contain actual content, but only for
  127. * finalizing the output file.
  128. */
  129. AVIO_DATA_MARKER_TRAILER,
  130. /**
  131. * A point in the output bytestream where the underlying AVIOContext might
  132. * flush the buffer depending on latency or buffering requirements. Typically
  133. * means the end of a packet.
  134. */
  135. AVIO_DATA_MARKER_FLUSH_POINT,
  136. };
  137. /**
  138. * Bytestream IO Context.
  139. * New fields can be added to the end with minor version bumps.
  140. * Removal, reordering and changes to existing fields require a major
  141. * version bump.
  142. * sizeof(AVIOContext) must not be used outside libav*.
  143. *
  144. * @note None of the function pointers in AVIOContext should be called
  145. * directly, they should only be set by the client application
  146. * when implementing custom I/O. Normally these are set to the
  147. * function pointers specified in avio_alloc_context()
  148. */
  149. typedef struct AVIOContext {
  150. /**
  151. * A class for private options.
  152. *
  153. * If this AVIOContext is created by avio_open2(), av_class is set and
  154. * passes the options down to protocols.
  155. *
  156. * If this AVIOContext is manually allocated, then av_class may be set by
  157. * the caller.
  158. *
  159. * warning -- this field can be NULL, be sure to not pass this AVIOContext
  160. * to any av_opt_* functions in that case.
  161. */
  162. const AVClass *av_class;
  163. /*
  164. * The following shows the relationship between buffer, buf_ptr,
  165. * buf_ptr_max, buf_end, buf_size, and pos, when reading and when writing
  166. * (since AVIOContext is used for both):
  167. *
  168. **********************************************************************************
  169. * READING
  170. **********************************************************************************
  171. *
  172. * | buffer_size |
  173. * |---------------------------------------|
  174. * | |
  175. *
  176. * buffer buf_ptr buf_end
  177. * +---------------+-----------------------+
  178. * |/ / / / / / / /|/ / / / / / /| |
  179. * read buffer: |/ / consumed / | to be read /| |
  180. * |/ / / / / / / /|/ / / / / / /| |
  181. * +---------------+-----------------------+
  182. *
  183. * pos
  184. * +-------------------------------------------+-----------------+
  185. * input file: | | |
  186. * +-------------------------------------------+-----------------+
  187. *
  188. *
  189. **********************************************************************************
  190. * WRITING
  191. **********************************************************************************
  192. *
  193. * | buffer_size |
  194. * |--------------------------------------|
  195. * | |
  196. *
  197. * buf_ptr_max
  198. * buffer (buf_ptr) buf_end
  199. * +-----------------------+--------------+
  200. * |/ / / / / / / / / / / /| |
  201. * write buffer: | / / to be flushed / / | |
  202. * |/ / / / / / / / / / / /| |
  203. * +-----------------------+--------------+
  204. * buf_ptr can be in this
  205. * due to a backward seek
  206. *
  207. * pos
  208. * +-------------+----------------------------------------------+
  209. * output file: | | |
  210. * +-------------+----------------------------------------------+
  211. *
  212. */
  213. unsigned char *buffer; /**< Start of the buffer. */
  214. int buffer_size; /**< Maximum buffer size */
  215. unsigned char *buf_ptr; /**< Current position in the buffer */
  216. unsigned char *buf_end; /**< End of the data, may be less than
  217. buffer+buffer_size if the read function returned
  218. less data than requested, e.g. for streams where
  219. no more data has been received yet. */
  220. void *opaque; /**< A private pointer, passed to the read/write/seek/...
  221. functions. */
  222. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
  223. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
  224. int64_t (*seek)(void *opaque, int64_t offset, int whence);
  225. int64_t pos; /**< position in the file of the current buffer */
  226. int must_flush; /**< unused */
  227. int eof_reached; /**< true if eof reached */
  228. int write_flag; /**< true if open for writing */
  229. int max_packet_size;
  230. unsigned long checksum;
  231. unsigned char *checksum_ptr;
  232. unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
  233. int error; /**< contains the error code or 0 if no error happened */
  234. /**
  235. * Pause or resume playback for network streaming protocols - e.g. MMS.
  236. */
  237. int (*read_pause)(void *opaque, int pause);
  238. /**
  239. * Seek to a given timestamp in stream with the specified stream_index.
  240. * Needed for some network streaming protocols which don't support seeking
  241. * to byte position.
  242. */
  243. int64_t (*read_seek)(void *opaque, int stream_index,
  244. int64_t timestamp, int flags);
  245. /**
  246. * A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
  247. */
  248. int seekable;
  249. /**
  250. * max filesize, used to limit allocations
  251. * This field is internal to libavformat and access from outside is not allowed.
  252. */
  253. int64_t maxsize;
  254. /**
  255. * avio_read and avio_write should if possible be satisfied directly
  256. * instead of going through a buffer, and avio_seek will always
  257. * call the underlying seek function directly.
  258. */
  259. int direct;
  260. /**
  261. * Bytes read statistic
  262. * This field is internal to libavformat and access from outside is not allowed.
  263. */
  264. int64_t bytes_read;
  265. /**
  266. * seek statistic
  267. * This field is internal to libavformat and access from outside is not allowed.
  268. */
  269. int seek_count;
  270. /**
  271. * writeout statistic
  272. * This field is internal to libavformat and access from outside is not allowed.
  273. */
  274. int writeout_count;
  275. /**
  276. * Original buffer size
  277. * used internally after probing and ensure seekback to reset the buffer size
  278. * This field is internal to libavformat and access from outside is not allowed.
  279. */
  280. int orig_buffer_size;
  281. /**
  282. * Threshold to favor readahead over seek.
  283. * This is current internal only, do not use from outside.
  284. */
  285. int short_seek_threshold;
  286. /**
  287. * ',' separated list of allowed protocols.
  288. */
  289. const char *protocol_whitelist;
  290. /**
  291. * ',' separated list of disallowed protocols.
  292. */
  293. const char *protocol_blacklist;
  294. /**
  295. * A callback that is used instead of write_packet.
  296. */
  297. int (*write_data_type)(void *opaque, uint8_t *buf, int buf_size,
  298. enum AVIODataMarkerType type, int64_t time);
  299. /**
  300. * If set, don't call write_data_type separately for AVIO_DATA_MARKER_BOUNDARY_POINT,
  301. * but ignore them and treat them as AVIO_DATA_MARKER_UNKNOWN (to avoid needlessly
  302. * small chunks of data returned from the callback).
  303. */
  304. int ignore_boundary_point;
  305. /**
  306. * Internal, not meant to be used from outside of AVIOContext.
  307. */
  308. enum AVIODataMarkerType current_type;
  309. int64_t last_time;
  310. /**
  311. * A callback that is used instead of short_seek_threshold.
  312. * This is current internal only, do not use from outside.
  313. */
  314. int (*short_seek_get)(void *opaque);
  315. int64_t written;
  316. /**
  317. * Maximum reached position before a backward seek in the write buffer,
  318. * used keeping track of already written data for a later flush.
  319. */
  320. unsigned char *buf_ptr_max;
  321. /**
  322. * Try to buffer at least this amount of data before flushing it
  323. */
  324. int min_packet_size;
  325. } AVIOContext;
  326. /**
  327. * Return the name of the protocol that will handle the passed URL.
  328. *
  329. * NULL is returned if no protocol could be found for the given URL.
  330. *
  331. * @return Name of the protocol or NULL.
  332. */
  333. const char *avio_find_protocol_name(const char *url);
  334. /**
  335. * Return AVIO_FLAG_* access flags corresponding to the access permissions
  336. * of the resource in url, or a negative value corresponding to an
  337. * AVERROR code in case of failure. The returned access flags are
  338. * masked by the value in flags.
  339. *
  340. * @note This function is intrinsically unsafe, in the sense that the
  341. * checked resource may change its existence or permission status from
  342. * one call to another. Thus you should not trust the returned value,
  343. * unless you are sure that no other processes are accessing the
  344. * checked resource.
  345. */
  346. int avio_check(const char *url, int flags);
  347. /**
  348. * Move or rename a resource.
  349. *
  350. * @note url_src and url_dst should share the same protocol and authority.
  351. *
  352. * @param url_src url to resource to be moved
  353. * @param url_dst new url to resource if the operation succeeded
  354. * @return >=0 on success or negative on error.
  355. */
  356. int avpriv_io_move(const char *url_src, const char *url_dst);
  357. /**
  358. * Delete a resource.
  359. *
  360. * @param url resource to be deleted.
  361. * @return >=0 on success or negative on error.
  362. */
  363. int avpriv_io_delete(const char *url);
  364. /**
  365. * Open directory for reading.
  366. *
  367. * @param s directory read context. Pointer to a NULL pointer must be passed.
  368. * @param url directory to be listed.
  369. * @param options A dictionary filled with protocol-private options. On return
  370. * this parameter will be destroyed and replaced with a dictionary
  371. * containing options that were not found. May be NULL.
  372. * @return >=0 on success or negative on error.
  373. */
  374. int avio_open_dir(AVIODirContext **s, const char *url, AVDictionary **options);
  375. /**
  376. * Get next directory entry.
  377. *
  378. * Returned entry must be freed with avio_free_directory_entry(). In particular
  379. * it may outlive AVIODirContext.
  380. *
  381. * @param s directory read context.
  382. * @param[out] next next entry or NULL when no more entries.
  383. * @return >=0 on success or negative on error. End of list is not considered an
  384. * error.
  385. */
  386. int avio_read_dir(AVIODirContext *s, AVIODirEntry **next);
  387. /**
  388. * Close directory.
  389. *
  390. * @note Entries created using avio_read_dir() are not deleted and must be
  391. * freeded with avio_free_directory_entry().
  392. *
  393. * @param s directory read context.
  394. * @return >=0 on success or negative on error.
  395. */
  396. int avio_close_dir(AVIODirContext **s);
  397. /**
  398. * Free entry allocated by avio_read_dir().
  399. *
  400. * @param entry entry to be freed.
  401. */
  402. void avio_free_directory_entry(AVIODirEntry **entry);
  403. /**
  404. * Allocate and initialize an AVIOContext for buffered I/O. It must be later
  405. * freed with avio_context_free().
  406. *
  407. * @param buffer Memory block for input/output operations via AVIOContext.
  408. * The buffer must be allocated with av_malloc() and friends.
  409. * It may be freed and replaced with a new buffer by libavformat.
  410. * AVIOContext.buffer holds the buffer currently in use,
  411. * which must be later freed with av_free().
  412. * @param buffer_size The buffer size is very important for performance.
  413. * For protocols with fixed blocksize it should be set to this blocksize.
  414. * For others a typical size is a cache page, e.g. 4kb.
  415. * @param write_flag Set to 1 if the buffer should be writable, 0 otherwise.
  416. * @param opaque An opaque pointer to user-specific data.
  417. * @param read_packet A function for refilling the buffer, may be NULL.
  418. * @param write_packet A function for writing the buffer contents, may be NULL.
  419. * The function may not change the input buffers content.
  420. * @param seek A function for seeking to specified byte position, may be NULL.
  421. *
  422. * @return Allocated AVIOContext or NULL on failure.
  423. */
  424. AVIOContext *avio_alloc_context(
  425. unsigned char *buffer,
  426. int buffer_size,
  427. int write_flag,
  428. void *opaque,
  429. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  430. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  431. int64_t (*seek)(void *opaque, int64_t offset, int whence));
  432. /**
  433. * Free the supplied IO context and everything associated with it.
  434. *
  435. * @param s Double pointer to the IO context. This function will write NULL
  436. * into s.
  437. */
  438. void avio_context_free(AVIOContext **s);
  439. void avio_w8(AVIOContext *s, int b);
  440. void avio_write(AVIOContext *s, const unsigned char *buf, int size);
  441. void avio_wl64(AVIOContext *s, uint64_t val);
  442. void avio_wb64(AVIOContext *s, uint64_t val);
  443. void avio_wl32(AVIOContext *s, unsigned int val);
  444. void avio_wb32(AVIOContext *s, unsigned int val);
  445. void avio_wl24(AVIOContext *s, unsigned int val);
  446. void avio_wb24(AVIOContext *s, unsigned int val);
  447. void avio_wl16(AVIOContext *s, unsigned int val);
  448. void avio_wb16(AVIOContext *s, unsigned int val);
  449. /**
  450. * Write a NULL-terminated string.
  451. * @return number of bytes written.
  452. */
  453. int avio_put_str(AVIOContext *s, const char *str);
  454. /**
  455. * Convert an UTF-8 string to UTF-16LE and write it.
  456. * @param s the AVIOContext
  457. * @param str NULL-terminated UTF-8 string
  458. *
  459. * @return number of bytes written.
  460. */
  461. int avio_put_str16le(AVIOContext *s, const char *str);
  462. /**
  463. * Convert an UTF-8 string to UTF-16BE and write it.
  464. * @param s the AVIOContext
  465. * @param str NULL-terminated UTF-8 string
  466. *
  467. * @return number of bytes written.
  468. */
  469. int avio_put_str16be(AVIOContext *s, const char *str);
  470. /**
  471. * Mark the written bytestream as a specific type.
  472. *
  473. * Zero-length ranges are omitted from the output.
  474. *
  475. * @param time the stream time the current bytestream pos corresponds to
  476. * (in AV_TIME_BASE units), or AV_NOPTS_VALUE if unknown or not
  477. * applicable
  478. * @param type the kind of data written starting at the current pos
  479. */
  480. void avio_write_marker(AVIOContext *s, int64_t time, enum AVIODataMarkerType type);
  481. /**
  482. * ORing this as the "whence" parameter to a seek function causes it to
  483. * return the filesize without seeking anywhere. Supporting this is optional.
  484. * If it is not supported then the seek function will return <0.
  485. */
  486. #define AVSEEK_SIZE 0x10000
  487. /**
  488. * Passing this flag as the "whence" parameter to a seek function causes it to
  489. * seek by any means (like reopening and linear reading) or other normally unreasonable
  490. * means that can be extremely slow.
  491. * This may be ignored by the seek code.
  492. */
  493. #define AVSEEK_FORCE 0x20000
  494. /**
  495. * fseek() equivalent for AVIOContext.
  496. * @return new position or AVERROR.
  497. */
  498. int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
  499. /**
  500. * Skip given number of bytes forward
  501. * @return new position or AVERROR.
  502. */
  503. int64_t avio_skip(AVIOContext *s, int64_t offset);
  504. /**
  505. * ftell() equivalent for AVIOContext.
  506. * @return position or AVERROR.
  507. */
  508. static av_always_inline int64_t avio_tell(AVIOContext *s)
  509. {
  510. return avio_seek(s, 0, SEEK_CUR);
  511. }
  512. /**
  513. * Get the filesize.
  514. * @return filesize or AVERROR
  515. */
  516. int64_t avio_size(AVIOContext *s);
  517. /**
  518. * feof() equivalent for AVIOContext.
  519. * @return non zero if and only if end of file
  520. */
  521. int avio_feof(AVIOContext *s);
  522. #if FF_API_URL_FEOF
  523. /**
  524. * @deprecated use avio_feof()
  525. */
  526. attribute_deprecated
  527. int url_feof(AVIOContext *s);
  528. #endif
  529. /** @warning Writes up to 4 KiB per call */
  530. int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);
  531. /**
  532. * Force flushing of buffered data.
  533. *
  534. * For write streams, force the buffered data to be immediately written to the output,
  535. * without to wait to fill the internal buffer.
  536. *
  537. * For read streams, discard all currently buffered data, and advance the
  538. * reported file position to that of the underlying stream. This does not
  539. * read new data, and does not perform any seeks.
  540. */
  541. void avio_flush(AVIOContext *s);
  542. /**
  543. * Read size bytes from AVIOContext into buf.
  544. * @return number of bytes read or AVERROR
  545. */
  546. int avio_read(AVIOContext *s, unsigned char *buf, int size);
  547. /**
  548. * Read size bytes from AVIOContext into buf. Unlike avio_read(), this is allowed
  549. * to read fewer bytes than requested. The missing bytes can be read in the next
  550. * call. This always tries to read at least 1 byte.
  551. * Useful to reduce latency in certain cases.
  552. * @return number of bytes read or AVERROR
  553. */
  554. int avio_read_partial(AVIOContext *s, unsigned char *buf, int size);
  555. /**
  556. * @name Functions for reading from AVIOContext
  557. * @{
  558. *
  559. * @note return 0 if EOF, so you cannot use it if EOF handling is
  560. * necessary
  561. */
  562. int avio_r8 (AVIOContext *s);
  563. unsigned int avio_rl16(AVIOContext *s);
  564. unsigned int avio_rl24(AVIOContext *s);
  565. unsigned int avio_rl32(AVIOContext *s);
  566. uint64_t avio_rl64(AVIOContext *s);
  567. unsigned int avio_rb16(AVIOContext *s);
  568. unsigned int avio_rb24(AVIOContext *s);
  569. unsigned int avio_rb32(AVIOContext *s);
  570. uint64_t avio_rb64(AVIOContext *s);
  571. /**
  572. * @}
  573. */
  574. /**
  575. * Read a string from pb into buf. The reading will terminate when either
  576. * a NULL character was encountered, maxlen bytes have been read, or nothing
  577. * more can be read from pb. The result is guaranteed to be NULL-terminated, it
  578. * will be truncated if buf is too small.
  579. * Note that the string is not interpreted or validated in any way, it
  580. * might get truncated in the middle of a sequence for multi-byte encodings.
  581. *
  582. * @return number of bytes read (is always <= maxlen).
  583. * If reading ends on EOF or error, the return value will be one more than
  584. * bytes actually read.
  585. */
  586. int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen);
  587. /**
  588. * Read a UTF-16 string from pb and convert it to UTF-8.
  589. * The reading will terminate when either a null or invalid character was
  590. * encountered or maxlen bytes have been read.
  591. * @return number of bytes read (is always <= maxlen)
  592. */
  593. int avio_get_str16le(AVIOContext *pb, int maxlen, char *buf, int buflen);
  594. int avio_get_str16be(AVIOContext *pb, int maxlen, char *buf, int buflen);
  595. /**
  596. * @name URL open modes
  597. * The flags argument to avio_open must be one of the following
  598. * constants, optionally ORed with other flags.
  599. * @{
  600. */
  601. #define AVIO_FLAG_READ 1 /**< read-only */
  602. #define AVIO_FLAG_WRITE 2 /**< write-only */
  603. #define AVIO_FLAG_READ_WRITE (AVIO_FLAG_READ|AVIO_FLAG_WRITE) /**< read-write pseudo flag */
  604. /**
  605. * @}
  606. */
  607. /**
  608. * Use non-blocking mode.
  609. * If this flag is set, operations on the context will return
  610. * AVERROR(EAGAIN) if they can not be performed immediately.
  611. * If this flag is not set, operations on the context will never return
  612. * AVERROR(EAGAIN).
  613. * Note that this flag does not affect the opening/connecting of the
  614. * context. Connecting a protocol will always block if necessary (e.g. on
  615. * network protocols) but never hang (e.g. on busy devices).
  616. * Warning: non-blocking protocols is work-in-progress; this flag may be
  617. * silently ignored.
  618. */
  619. #define AVIO_FLAG_NONBLOCK 8
  620. /**
  621. * Use direct mode.
  622. * avio_read and avio_write should if possible be satisfied directly
  623. * instead of going through a buffer, and avio_seek will always
  624. * call the underlying seek function directly.
  625. */
  626. #define AVIO_FLAG_DIRECT 0x8000
  627. /**
  628. * Create and initialize a AVIOContext for accessing the
  629. * resource indicated by url.
  630. * @note When the resource indicated by url has been opened in
  631. * read+write mode, the AVIOContext can be used only for writing.
  632. *
  633. * @param s Used to return the pointer to the created AVIOContext.
  634. * In case of failure the pointed to value is set to NULL.
  635. * @param url resource to access
  636. * @param flags flags which control how the resource indicated by url
  637. * is to be opened
  638. * @return >= 0 in case of success, a negative value corresponding to an
  639. * AVERROR code in case of failure
  640. */
  641. int avio_open(AVIOContext **s, const char *url, int flags);
  642. /**
  643. * Create and initialize a AVIOContext for accessing the
  644. * resource indicated by url.
  645. * @note When the resource indicated by url has been opened in
  646. * read+write mode, the AVIOContext can be used only for writing.
  647. *
  648. * @param s Used to return the pointer to the created AVIOContext.
  649. * In case of failure the pointed to value is set to NULL.
  650. * @param url resource to access
  651. * @param flags flags which control how the resource indicated by url
  652. * is to be opened
  653. * @param int_cb an interrupt callback to be used at the protocols level
  654. * @param options A dictionary filled with protocol-private options. On return
  655. * this parameter will be destroyed and replaced with a dict containing options
  656. * that were not found. May be NULL.
  657. * @return >= 0 in case of success, a negative value corresponding to an
  658. * AVERROR code in case of failure
  659. */
  660. int avio_open2(AVIOContext **s, const char *url, int flags,
  661. const AVIOInterruptCB *int_cb, AVDictionary **options);
  662. /**
  663. * Close the resource accessed by the AVIOContext s and free it.
  664. * This function can only be used if s was opened by avio_open().
  665. *
  666. * The internal buffer is automatically flushed before closing the
  667. * resource.
  668. *
  669. * @return 0 on success, an AVERROR < 0 on error.
  670. * @see avio_closep
  671. */
  672. int avio_close(AVIOContext *s);
  673. /**
  674. * Close the resource accessed by the AVIOContext *s, free it
  675. * and set the pointer pointing to it to NULL.
  676. * This function can only be used if s was opened by avio_open().
  677. *
  678. * The internal buffer is automatically flushed before closing the
  679. * resource.
  680. *
  681. * @return 0 on success, an AVERROR < 0 on error.
  682. * @see avio_close
  683. */
  684. int avio_closep(AVIOContext **s);
  685. /**
  686. * Open a write only memory stream.
  687. *
  688. * @param s new IO context
  689. * @return zero if no error.
  690. */
  691. int avio_open_dyn_buf(AVIOContext **s);
  692. /**
  693. * Return the written size and a pointer to the buffer.
  694. * The AVIOContext stream is left intact.
  695. * The buffer must NOT be freed.
  696. * No padding is added to the buffer.
  697. *
  698. * @param s IO context
  699. * @param pbuffer pointer to a byte buffer
  700. * @return the length of the byte buffer
  701. */
  702. int avio_get_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
  703. /**
  704. * Return the written size and a pointer to the buffer. The buffer
  705. * must be freed with av_free().
  706. * Padding of AV_INPUT_BUFFER_PADDING_SIZE is added to the buffer.
  707. *
  708. * @param s IO context
  709. * @param pbuffer pointer to a byte buffer
  710. * @return the length of the byte buffer
  711. */
  712. int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
  713. /**
  714. * Iterate through names of available protocols.
  715. *
  716. * @param opaque A private pointer representing current protocol.
  717. * It must be a pointer to NULL on first iteration and will
  718. * be updated by successive calls to avio_enum_protocols.
  719. * @param output If set to 1, iterate over output protocols,
  720. * otherwise over input protocols.
  721. *
  722. * @return A static string containing the name of current protocol or NULL
  723. */
  724. const char *avio_enum_protocols(void **opaque, int output);
  725. /**
  726. * Pause and resume playing - only meaningful if using a network streaming
  727. * protocol (e.g. MMS).
  728. *
  729. * @param h IO context from which to call the read_pause function pointer
  730. * @param pause 1 for pause, 0 for resume
  731. */
  732. int avio_pause(AVIOContext *h, int pause);
  733. /**
  734. * Seek to a given timestamp relative to some component stream.
  735. * Only meaningful if using a network streaming protocol (e.g. MMS.).
  736. *
  737. * @param h IO context from which to call the seek function pointers
  738. * @param stream_index The stream index that the timestamp is relative to.
  739. * If stream_index is (-1) the timestamp should be in AV_TIME_BASE
  740. * units from the beginning of the presentation.
  741. * If a stream_index >= 0 is used and the protocol does not support
  742. * seeking based on component streams, the call will fail.
  743. * @param timestamp timestamp in AVStream.time_base units
  744. * or if there is no stream specified then in AV_TIME_BASE units.
  745. * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
  746. * and AVSEEK_FLAG_ANY. The protocol may silently ignore
  747. * AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
  748. * fail if used and not supported.
  749. * @return >= 0 on success
  750. * @see AVInputFormat::read_seek
  751. */
  752. int64_t avio_seek_time(AVIOContext *h, int stream_index,
  753. int64_t timestamp, int flags);
  754. /* Avoid a warning. The header can not be included because it breaks c++. */
  755. struct AVBPrint;
  756. /**
  757. * Read contents of h into print buffer, up to max_size bytes, or up to EOF.
  758. *
  759. * @return 0 for success (max_size bytes read or EOF reached), negative error
  760. * code otherwise
  761. */
  762. int avio_read_to_bprint(AVIOContext *h, struct AVBPrint *pb, size_t max_size);
  763. /**
  764. * Accept and allocate a client context on a server context.
  765. * @param s the server context
  766. * @param c the client context, must be unallocated
  767. * @return >= 0 on success or a negative value corresponding
  768. * to an AVERROR on failure
  769. */
  770. int avio_accept(AVIOContext *s, AVIOContext **c);
  771. /**
  772. * Perform one step of the protocol handshake to accept a new client.
  773. * This function must be called on a client returned by avio_accept() before
  774. * using it as a read/write context.
  775. * It is separate from avio_accept() because it may block.
  776. * A step of the handshake is defined by places where the application may
  777. * decide to change the proceedings.
  778. * For example, on a protocol with a request header and a reply header, each
  779. * one can constitute a step because the application may use the parameters
  780. * from the request to change parameters in the reply; or each individual
  781. * chunk of the request can constitute a step.
  782. * If the handshake is already finished, avio_handshake() does nothing and
  783. * returns 0 immediately.
  784. *
  785. * @param c the client context to perform the handshake on
  786. * @return 0 on a complete and successful handshake
  787. * > 0 if the handshake progressed, but is not complete
  788. * < 0 for an AVERROR code
  789. */
  790. int avio_handshake(AVIOContext *c);
  791. #endif /* AVFORMAT_AVIO_H */