avio.h 30 KB

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