You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

814 lines
29KB

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