avio.h 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835
  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 public fields can be added with minor version bumps.
  140. * Removal, reordering and changes to existing public fields require
  141. * a major 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 eof_reached; /**< true if was unable to read due to error or eof */
  227. int error; /**< contains the error code or 0 if no error happened */
  228. int write_flag; /**< true if open for writing */
  229. int max_packet_size;
  230. int min_packet_size; /**< Try to buffer at least this amount of data
  231. before flushing it. */
  232. unsigned long checksum;
  233. unsigned char *checksum_ptr;
  234. unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
  235. /**
  236. * Pause or resume playback for network streaming protocols - e.g. MMS.
  237. */
  238. int (*read_pause)(void *opaque, int pause);
  239. /**
  240. * Seek to a given timestamp in stream with the specified stream_index.
  241. * Needed for some network streaming protocols which don't support seeking
  242. * to byte position.
  243. */
  244. int64_t (*read_seek)(void *opaque, int stream_index,
  245. int64_t timestamp, int flags);
  246. /**
  247. * A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
  248. */
  249. int seekable;
  250. /**
  251. * avio_read and avio_write should if possible be satisfied directly
  252. * instead of going through a buffer, and avio_seek will always
  253. * call the underlying seek function directly.
  254. */
  255. int direct;
  256. /**
  257. * ',' separated list of allowed protocols.
  258. */
  259. const char *protocol_whitelist;
  260. /**
  261. * ',' separated list of disallowed protocols.
  262. */
  263. const char *protocol_blacklist;
  264. /**
  265. * A callback that is used instead of write_packet.
  266. */
  267. int (*write_data_type)(void *opaque, uint8_t *buf, int buf_size,
  268. enum AVIODataMarkerType type, int64_t time);
  269. /**
  270. * If set, don't call write_data_type separately for AVIO_DATA_MARKER_BOUNDARY_POINT,
  271. * but ignore them and treat them as AVIO_DATA_MARKER_UNKNOWN (to avoid needlessly
  272. * small chunks of data returned from the callback).
  273. */
  274. int ignore_boundary_point;
  275. #if FF_API_AVIOCONTEXT_WRITTEN
  276. /**
  277. * @deprecated field utilized privately by libavformat. For a public
  278. * statistic of how many bytes were written out, see
  279. * AVIOContext::bytes_written.
  280. */
  281. attribute_deprecated
  282. int64_t written;
  283. #endif
  284. /**
  285. * Maximum reached position before a backward seek in the write buffer,
  286. * used keeping track of already written data for a later flush.
  287. */
  288. unsigned char *buf_ptr_max;
  289. /**
  290. * Read-only statistic of bytes read for this AVIOContext.
  291. */
  292. int64_t bytes_read;
  293. /**
  294. * Read-only statistic of bytes written for this AVIOContext.
  295. */
  296. int64_t bytes_written;
  297. } AVIOContext;
  298. /**
  299. * Return the name of the protocol that will handle the passed URL.
  300. *
  301. * NULL is returned if no protocol could be found for the given URL.
  302. *
  303. * @return Name of the protocol or NULL.
  304. */
  305. const char *avio_find_protocol_name(const char *url);
  306. /**
  307. * Return AVIO_FLAG_* access flags corresponding to the access permissions
  308. * of the resource in url, or a negative value corresponding to an
  309. * AVERROR code in case of failure. The returned access flags are
  310. * masked by the value in flags.
  311. *
  312. * @note This function is intrinsically unsafe, in the sense that the
  313. * checked resource may change its existence or permission status from
  314. * one call to another. Thus you should not trust the returned value,
  315. * unless you are sure that no other processes are accessing the
  316. * checked resource.
  317. */
  318. int avio_check(const char *url, int flags);
  319. /**
  320. * Open directory for reading.
  321. *
  322. * @param s directory read context. Pointer to a NULL pointer must be passed.
  323. * @param url directory to be listed.
  324. * @param options A dictionary filled with protocol-private options. On return
  325. * this parameter will be destroyed and replaced with a dictionary
  326. * containing options that were not found. May be NULL.
  327. * @return >=0 on success or negative on error.
  328. */
  329. int avio_open_dir(AVIODirContext **s, const char *url, AVDictionary **options);
  330. /**
  331. * Get next directory entry.
  332. *
  333. * Returned entry must be freed with avio_free_directory_entry(). In particular
  334. * it may outlive AVIODirContext.
  335. *
  336. * @param s directory read context.
  337. * @param[out] next next entry or NULL when no more entries.
  338. * @return >=0 on success or negative on error. End of list is not considered an
  339. * error.
  340. */
  341. int avio_read_dir(AVIODirContext *s, AVIODirEntry **next);
  342. /**
  343. * Close directory.
  344. *
  345. * @note Entries created using avio_read_dir() are not deleted and must be
  346. * freeded with avio_free_directory_entry().
  347. *
  348. * @param s directory read context.
  349. * @return >=0 on success or negative on error.
  350. */
  351. int avio_close_dir(AVIODirContext **s);
  352. /**
  353. * Free entry allocated by avio_read_dir().
  354. *
  355. * @param entry entry to be freed.
  356. */
  357. void avio_free_directory_entry(AVIODirEntry **entry);
  358. /**
  359. * Allocate and initialize an AVIOContext for buffered I/O. It must be later
  360. * freed with avio_context_free().
  361. *
  362. * @param buffer Memory block for input/output operations via AVIOContext.
  363. * The buffer must be allocated with av_malloc() and friends.
  364. * It may be freed and replaced with a new buffer by libavformat.
  365. * AVIOContext.buffer holds the buffer currently in use,
  366. * which must be later freed with av_free().
  367. * @param buffer_size The buffer size is very important for performance.
  368. * For protocols with fixed blocksize it should be set to this blocksize.
  369. * For others a typical size is a cache page, e.g. 4kb.
  370. * @param write_flag Set to 1 if the buffer should be writable, 0 otherwise.
  371. * @param opaque An opaque pointer to user-specific data.
  372. * @param read_packet A function for refilling the buffer, may be NULL.
  373. * For stream protocols, must never return 0 but rather
  374. * a proper AVERROR code.
  375. * @param write_packet A function for writing the buffer contents, may be NULL.
  376. * The function may not change the input buffers content.
  377. * @param seek A function for seeking to specified byte position, may be NULL.
  378. *
  379. * @return Allocated AVIOContext or NULL on failure.
  380. */
  381. AVIOContext *avio_alloc_context(
  382. unsigned char *buffer,
  383. int buffer_size,
  384. int write_flag,
  385. void *opaque,
  386. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  387. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  388. int64_t (*seek)(void *opaque, int64_t offset, int whence));
  389. /**
  390. * Free the supplied IO context and everything associated with it.
  391. *
  392. * @param s Double pointer to the IO context. This function will write NULL
  393. * into s.
  394. */
  395. void avio_context_free(AVIOContext **s);
  396. void avio_w8(AVIOContext *s, int b);
  397. void avio_write(AVIOContext *s, const unsigned char *buf, int size);
  398. void avio_wl64(AVIOContext *s, uint64_t val);
  399. void avio_wb64(AVIOContext *s, uint64_t val);
  400. void avio_wl32(AVIOContext *s, unsigned int val);
  401. void avio_wb32(AVIOContext *s, unsigned int val);
  402. void avio_wl24(AVIOContext *s, unsigned int val);
  403. void avio_wb24(AVIOContext *s, unsigned int val);
  404. void avio_wl16(AVIOContext *s, unsigned int val);
  405. void avio_wb16(AVIOContext *s, unsigned int val);
  406. /**
  407. * Write a NULL-terminated string.
  408. * @return number of bytes written.
  409. */
  410. int avio_put_str(AVIOContext *s, const char *str);
  411. /**
  412. * Convert an UTF-8 string to UTF-16LE and write it.
  413. * @param s the AVIOContext
  414. * @param str NULL-terminated UTF-8 string
  415. *
  416. * @return number of bytes written.
  417. */
  418. int avio_put_str16le(AVIOContext *s, const char *str);
  419. /**
  420. * Convert an UTF-8 string to UTF-16BE and write it.
  421. * @param s the AVIOContext
  422. * @param str NULL-terminated UTF-8 string
  423. *
  424. * @return number of bytes written.
  425. */
  426. int avio_put_str16be(AVIOContext *s, const char *str);
  427. /**
  428. * Mark the written bytestream as a specific type.
  429. *
  430. * Zero-length ranges are omitted from the output.
  431. *
  432. * @param time the stream time the current bytestream pos corresponds to
  433. * (in AV_TIME_BASE units), or AV_NOPTS_VALUE if unknown or not
  434. * applicable
  435. * @param type the kind of data written starting at the current pos
  436. */
  437. void avio_write_marker(AVIOContext *s, int64_t time, enum AVIODataMarkerType type);
  438. /**
  439. * ORing this as the "whence" parameter to a seek function causes it to
  440. * return the filesize without seeking anywhere. Supporting this is optional.
  441. * If it is not supported then the seek function will return <0.
  442. */
  443. #define AVSEEK_SIZE 0x10000
  444. /**
  445. * Passing this flag as the "whence" parameter to a seek function causes it to
  446. * seek by any means (like reopening and linear reading) or other normally unreasonable
  447. * means that can be extremely slow.
  448. * This may be ignored by the seek code.
  449. */
  450. #define AVSEEK_FORCE 0x20000
  451. /**
  452. * fseek() equivalent for AVIOContext.
  453. * @return new position or AVERROR.
  454. */
  455. int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
  456. /**
  457. * Skip given number of bytes forward
  458. * @return new position or AVERROR.
  459. */
  460. int64_t avio_skip(AVIOContext *s, int64_t offset);
  461. /**
  462. * ftell() equivalent for AVIOContext.
  463. * @return position or AVERROR.
  464. */
  465. static av_always_inline int64_t avio_tell(AVIOContext *s)
  466. {
  467. return avio_seek(s, 0, SEEK_CUR);
  468. }
  469. /**
  470. * Get the filesize.
  471. * @return filesize or AVERROR
  472. */
  473. int64_t avio_size(AVIOContext *s);
  474. /**
  475. * Similar to feof() but also returns nonzero on read errors.
  476. * @return non zero if and only if at end of file or a read error happened when reading.
  477. */
  478. int avio_feof(AVIOContext *s);
  479. /**
  480. * Writes a formatted string to the context.
  481. * @return number of bytes written, < 0 on error.
  482. */
  483. int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);
  484. /**
  485. * Write a NULL terminated array of strings to the context.
  486. * Usually you don't need to use this function directly but its macro wrapper,
  487. * avio_print.
  488. */
  489. void avio_print_string_array(AVIOContext *s, const char *strings[]);
  490. /**
  491. * Write strings (const char *) to the context.
  492. * This is a convenience macro around avio_print_string_array and it
  493. * automatically creates the string array from the variable argument list.
  494. * For simple string concatenations this function is more performant than using
  495. * avio_printf since it does not need a temporary buffer.
  496. */
  497. #define avio_print(s, ...) \
  498. avio_print_string_array(s, (const char*[]){__VA_ARGS__, NULL})
  499. /**
  500. * Force flushing of buffered data.
  501. *
  502. * For write streams, force the buffered data to be immediately written to the output,
  503. * without to wait to fill the internal buffer.
  504. *
  505. * For read streams, discard all currently buffered data, and advance the
  506. * reported file position to that of the underlying stream. This does not
  507. * read new data, and does not perform any seeks.
  508. */
  509. void avio_flush(AVIOContext *s);
  510. /**
  511. * Read size bytes from AVIOContext into buf.
  512. * @return number of bytes read or AVERROR
  513. */
  514. int avio_read(AVIOContext *s, unsigned char *buf, int size);
  515. /**
  516. * Read size bytes from AVIOContext into buf. Unlike avio_read(), this is allowed
  517. * to read fewer bytes than requested. The missing bytes can be read in the next
  518. * call. This always tries to read at least 1 byte.
  519. * Useful to reduce latency in certain cases.
  520. * @return number of bytes read or AVERROR
  521. */
  522. int avio_read_partial(AVIOContext *s, unsigned char *buf, int size);
  523. /**
  524. * @name Functions for reading from AVIOContext
  525. * @{
  526. *
  527. * @note return 0 if EOF, so you cannot use it if EOF handling is
  528. * necessary
  529. */
  530. int avio_r8 (AVIOContext *s);
  531. unsigned int avio_rl16(AVIOContext *s);
  532. unsigned int avio_rl24(AVIOContext *s);
  533. unsigned int avio_rl32(AVIOContext *s);
  534. uint64_t avio_rl64(AVIOContext *s);
  535. unsigned int avio_rb16(AVIOContext *s);
  536. unsigned int avio_rb24(AVIOContext *s);
  537. unsigned int avio_rb32(AVIOContext *s);
  538. uint64_t avio_rb64(AVIOContext *s);
  539. /**
  540. * @}
  541. */
  542. /**
  543. * Read a string from pb into buf. The reading will terminate when either
  544. * a NULL character was encountered, maxlen bytes have been read, or nothing
  545. * more can be read from pb. The result is guaranteed to be NULL-terminated, it
  546. * will be truncated if buf is too small.
  547. * Note that the string is not interpreted or validated in any way, it
  548. * might get truncated in the middle of a sequence for multi-byte encodings.
  549. *
  550. * @return number of bytes read (is always <= maxlen).
  551. * If reading ends on EOF or error, the return value will be one more than
  552. * bytes actually read.
  553. */
  554. int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen);
  555. /**
  556. * Read a UTF-16 string from pb and convert it to UTF-8.
  557. * The reading will terminate when either a null or invalid character was
  558. * encountered or maxlen bytes have been read.
  559. * @return number of bytes read (is always <= maxlen)
  560. */
  561. int avio_get_str16le(AVIOContext *pb, int maxlen, char *buf, int buflen);
  562. int avio_get_str16be(AVIOContext *pb, int maxlen, char *buf, int buflen);
  563. /**
  564. * @name URL open modes
  565. * The flags argument to avio_open must be one of the following
  566. * constants, optionally ORed with other flags.
  567. * @{
  568. */
  569. #define AVIO_FLAG_READ 1 /**< read-only */
  570. #define AVIO_FLAG_WRITE 2 /**< write-only */
  571. #define AVIO_FLAG_READ_WRITE (AVIO_FLAG_READ|AVIO_FLAG_WRITE) /**< read-write pseudo flag */
  572. /**
  573. * @}
  574. */
  575. /**
  576. * Use non-blocking mode.
  577. * If this flag is set, operations on the context will return
  578. * AVERROR(EAGAIN) if they can not be performed immediately.
  579. * If this flag is not set, operations on the context will never return
  580. * AVERROR(EAGAIN).
  581. * Note that this flag does not affect the opening/connecting of the
  582. * context. Connecting a protocol will always block if necessary (e.g. on
  583. * network protocols) but never hang (e.g. on busy devices).
  584. * Warning: non-blocking protocols is work-in-progress; this flag may be
  585. * silently ignored.
  586. */
  587. #define AVIO_FLAG_NONBLOCK 8
  588. /**
  589. * Use direct mode.
  590. * avio_read and avio_write should if possible be satisfied directly
  591. * instead of going through a buffer, and avio_seek will always
  592. * call the underlying seek function directly.
  593. */
  594. #define AVIO_FLAG_DIRECT 0x8000
  595. /**
  596. * Create and initialize a AVIOContext for accessing the
  597. * resource indicated by url.
  598. * @note When the resource indicated by url has been opened in
  599. * read+write mode, the AVIOContext can be used only for writing.
  600. *
  601. * @param s Used to return the pointer to the created AVIOContext.
  602. * In case of failure the pointed to value is set to NULL.
  603. * @param url resource to access
  604. * @param flags flags which control how the resource indicated by url
  605. * is to be opened
  606. * @return >= 0 in case of success, a negative value corresponding to an
  607. * AVERROR code in case of failure
  608. */
  609. int avio_open(AVIOContext **s, const char *url, int flags);
  610. /**
  611. * Create and initialize a AVIOContext for accessing the
  612. * resource indicated by url.
  613. * @note When the resource indicated by url has been opened in
  614. * read+write mode, the AVIOContext can be used only for writing.
  615. *
  616. * @param s Used to return the pointer to the created AVIOContext.
  617. * In case of failure the pointed to value is set to NULL.
  618. * @param url resource to access
  619. * @param flags flags which control how the resource indicated by url
  620. * is to be opened
  621. * @param int_cb an interrupt callback to be used at the protocols level
  622. * @param options A dictionary filled with protocol-private options. On return
  623. * this parameter will be destroyed and replaced with a dict containing options
  624. * that were not found. May be NULL.
  625. * @return >= 0 in case of success, a negative value corresponding to an
  626. * AVERROR code in case of failure
  627. */
  628. int avio_open2(AVIOContext **s, const char *url, int flags,
  629. const AVIOInterruptCB *int_cb, AVDictionary **options);
  630. /**
  631. * Close the resource accessed by the AVIOContext s and free it.
  632. * This function can only be used if s was opened by avio_open().
  633. *
  634. * The internal buffer is automatically flushed before closing the
  635. * resource.
  636. *
  637. * @return 0 on success, an AVERROR < 0 on error.
  638. * @see avio_closep
  639. */
  640. int avio_close(AVIOContext *s);
  641. /**
  642. * Close the resource accessed by the AVIOContext *s, free it
  643. * and set the pointer pointing to it to NULL.
  644. * This function can only be used if s was opened by avio_open().
  645. *
  646. * The internal buffer is automatically flushed before closing the
  647. * resource.
  648. *
  649. * @return 0 on success, an AVERROR < 0 on error.
  650. * @see avio_close
  651. */
  652. int avio_closep(AVIOContext **s);
  653. /**
  654. * Open a write only memory stream.
  655. *
  656. * @param s new IO context
  657. * @return zero if no error.
  658. */
  659. int avio_open_dyn_buf(AVIOContext **s);
  660. /**
  661. * Return the written size and a pointer to the buffer.
  662. * The AVIOContext stream is left intact.
  663. * The buffer must NOT be freed.
  664. * No padding is added to the buffer.
  665. *
  666. * @param s IO context
  667. * @param pbuffer pointer to a byte buffer
  668. * @return the length of the byte buffer
  669. */
  670. int avio_get_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
  671. /**
  672. * Return the written size and a pointer to the buffer. The buffer
  673. * must be freed with av_free().
  674. * Padding of AV_INPUT_BUFFER_PADDING_SIZE is added to the buffer.
  675. *
  676. * @param s IO context
  677. * @param pbuffer pointer to a byte buffer
  678. * @return the length of the byte buffer
  679. */
  680. int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
  681. /**
  682. * Iterate through names of available protocols.
  683. *
  684. * @param opaque A private pointer representing current protocol.
  685. * It must be a pointer to NULL on first iteration and will
  686. * be updated by successive calls to avio_enum_protocols.
  687. * @param output If set to 1, iterate over output protocols,
  688. * otherwise over input protocols.
  689. *
  690. * @return A static string containing the name of current protocol or NULL
  691. */
  692. const char *avio_enum_protocols(void **opaque, int output);
  693. /**
  694. * Get AVClass by names of available protocols.
  695. *
  696. * @return A AVClass of input protocol name or NULL
  697. */
  698. const AVClass *avio_protocol_get_class(const char *name);
  699. /**
  700. * Pause and resume playing - only meaningful if using a network streaming
  701. * protocol (e.g. MMS).
  702. *
  703. * @param h IO context from which to call the read_pause function pointer
  704. * @param pause 1 for pause, 0 for resume
  705. */
  706. int avio_pause(AVIOContext *h, int pause);
  707. /**
  708. * Seek to a given timestamp relative to some component stream.
  709. * Only meaningful if using a network streaming protocol (e.g. MMS.).
  710. *
  711. * @param h IO context from which to call the seek function pointers
  712. * @param stream_index The stream index that the timestamp is relative to.
  713. * If stream_index is (-1) the timestamp should be in AV_TIME_BASE
  714. * units from the beginning of the presentation.
  715. * If a stream_index >= 0 is used and the protocol does not support
  716. * seeking based on component streams, the call will fail.
  717. * @param timestamp timestamp in AVStream.time_base units
  718. * or if there is no stream specified then in AV_TIME_BASE units.
  719. * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
  720. * and AVSEEK_FLAG_ANY. The protocol may silently ignore
  721. * AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
  722. * fail if used and not supported.
  723. * @return >= 0 on success
  724. * @see AVInputFormat::read_seek
  725. */
  726. int64_t avio_seek_time(AVIOContext *h, int stream_index,
  727. int64_t timestamp, int flags);
  728. /* Avoid a warning. The header can not be included because it breaks c++. */
  729. struct AVBPrint;
  730. /**
  731. * Read contents of h into print buffer, up to max_size bytes, or up to EOF.
  732. *
  733. * @return 0 for success (max_size bytes read or EOF reached), negative error
  734. * code otherwise
  735. */
  736. int avio_read_to_bprint(AVIOContext *h, struct AVBPrint *pb, size_t max_size);
  737. /**
  738. * Accept and allocate a client context on a server context.
  739. * @param s the server context
  740. * @param c the client context, must be unallocated
  741. * @return >= 0 on success or a negative value corresponding
  742. * to an AVERROR on failure
  743. */
  744. int avio_accept(AVIOContext *s, AVIOContext **c);
  745. /**
  746. * Perform one step of the protocol handshake to accept a new client.
  747. * This function must be called on a client returned by avio_accept() before
  748. * using it as a read/write context.
  749. * It is separate from avio_accept() because it may block.
  750. * A step of the handshake is defined by places where the application may
  751. * decide to change the proceedings.
  752. * For example, on a protocol with a request header and a reply header, each
  753. * one can constitute a step because the application may use the parameters
  754. * from the request to change parameters in the reply; or each individual
  755. * chunk of the request can constitute a step.
  756. * If the handshake is already finished, avio_handshake() does nothing and
  757. * returns 0 immediately.
  758. *
  759. * @param c the client context to perform the handshake on
  760. * @return 0 on a complete and successful handshake
  761. * > 0 if the handshake progressed, but is not complete
  762. * < 0 for an AVERROR code
  763. */
  764. int avio_handshake(AVIOContext *c);
  765. #endif /* AVFORMAT_AVIO_H */