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.

452 lines
16KB

  1. /*
  2. * copyright (c) 2001 Fabrice Bellard
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVFORMAT_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. * Bytestream IO Context.
  50. * New fields can be added to the end with minor version bumps.
  51. * Removal, reordering and changes to existing fields require a major
  52. * version bump.
  53. * sizeof(AVIOContext) must not be used outside libav*.
  54. *
  55. * @note None of the function pointers in AVIOContext should be called
  56. * directly, they should only be set by the client application
  57. * when implementing custom I/O. Normally these are set to the
  58. * function pointers specified in avio_alloc_context()
  59. */
  60. typedef struct AVIOContext {
  61. /**
  62. * A class for private options.
  63. *
  64. * If this AVIOContext is created by avio_open2(), av_class is set and
  65. * passes the options down to protocols.
  66. *
  67. * If this AVIOContext is manually allocated, then av_class may be set by
  68. * the caller.
  69. *
  70. * warning -- this field can be NULL, be sure to not pass this AVIOContext
  71. * to any av_opt_* functions in that case.
  72. */
  73. const AVClass *av_class;
  74. unsigned char *buffer; /**< Start of the buffer. */
  75. int buffer_size; /**< Maximum buffer size */
  76. unsigned char *buf_ptr; /**< Current position in the buffer */
  77. unsigned char *buf_end; /**< End of the data, may be less than
  78. buffer+buffer_size if the read function returned
  79. less data than requested, e.g. for streams where
  80. no more data has been received yet. */
  81. void *opaque; /**< A private pointer, passed to the read/write/seek/...
  82. functions. */
  83. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
  84. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
  85. int64_t (*seek)(void *opaque, int64_t offset, int whence);
  86. int64_t pos; /**< position in the file of the current buffer */
  87. int must_flush; /**< true if the next seek should flush */
  88. int eof_reached; /**< true if eof reached */
  89. int write_flag; /**< true if open for writing */
  90. int max_packet_size;
  91. unsigned long checksum;
  92. unsigned char *checksum_ptr;
  93. unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
  94. int error; /**< contains the error code or 0 if no error happened */
  95. /**
  96. * Pause or resume playback for network streaming protocols - e.g. MMS.
  97. */
  98. int (*read_pause)(void *opaque, int pause);
  99. /**
  100. * Seek to a given timestamp in stream with the specified stream_index.
  101. * Needed for some network streaming protocols which don't support seeking
  102. * to byte position.
  103. */
  104. int64_t (*read_seek)(void *opaque, int stream_index,
  105. int64_t timestamp, int flags);
  106. /**
  107. * A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
  108. */
  109. int seekable;
  110. } AVIOContext;
  111. /* unbuffered I/O */
  112. /**
  113. * Return AVIO_FLAG_* access flags corresponding to the access permissions
  114. * of the resource in url, or a negative value corresponding to an
  115. * AVERROR code in case of failure. The returned access flags are
  116. * masked by the value in flags.
  117. *
  118. * @note This function is intrinsically unsafe, in the sense that the
  119. * checked resource may change its existence or permission status from
  120. * one call to another. Thus you should not trust the returned value,
  121. * unless you are sure that no other processes are accessing the
  122. * checked resource.
  123. */
  124. int avio_check(const char *url, int flags);
  125. /**
  126. * Allocate and initialize an AVIOContext for buffered I/O. It must be later
  127. * freed with av_free().
  128. *
  129. * @param buffer Memory block for input/output operations via AVIOContext.
  130. * The buffer must be allocated with av_malloc() and friends.
  131. * @param buffer_size The buffer size is very important for performance.
  132. * For protocols with fixed blocksize it should be set to this blocksize.
  133. * For others a typical size is a cache page, e.g. 4kb.
  134. * @param write_flag Set to 1 if the buffer should be writable, 0 otherwise.
  135. * @param opaque An opaque pointer to user-specific data.
  136. * @param read_packet A function for refilling the buffer, may be NULL.
  137. * @param write_packet A function for writing the buffer contents, may be NULL.
  138. * @param seek A function for seeking to specified byte position, may be NULL.
  139. *
  140. * @return Allocated AVIOContext or NULL on failure.
  141. */
  142. AVIOContext *avio_alloc_context(
  143. unsigned char *buffer,
  144. int buffer_size,
  145. int write_flag,
  146. void *opaque,
  147. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  148. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  149. int64_t (*seek)(void *opaque, int64_t offset, int whence));
  150. void avio_w8(AVIOContext *s, int b);
  151. void avio_write(AVIOContext *s, const unsigned char *buf, int size);
  152. void avio_wl64(AVIOContext *s, uint64_t val);
  153. void avio_wb64(AVIOContext *s, uint64_t val);
  154. void avio_wl32(AVIOContext *s, unsigned int val);
  155. void avio_wb32(AVIOContext *s, unsigned int val);
  156. void avio_wl24(AVIOContext *s, unsigned int val);
  157. void avio_wb24(AVIOContext *s, unsigned int val);
  158. void avio_wl16(AVIOContext *s, unsigned int val);
  159. void avio_wb16(AVIOContext *s, unsigned int val);
  160. /**
  161. * Write a NULL-terminated string.
  162. * @return number of bytes written.
  163. */
  164. int avio_put_str(AVIOContext *s, const char *str);
  165. /**
  166. * Convert an UTF-8 string to UTF-16LE and write it.
  167. * @param s the AVIOContext
  168. * @param str NULL-terminated UTF-8 string
  169. *
  170. * @return number of bytes written.
  171. */
  172. int avio_put_str16le(AVIOContext *s, const char *str);
  173. /**
  174. * Convert an UTF-8 string to UTF-16BE and write it.
  175. * @param s the AVIOContext
  176. * @param str NULL-terminated UTF-8 string
  177. *
  178. * @return number of bytes written.
  179. */
  180. int avio_put_str16be(AVIOContext *s, const char *str);
  181. /**
  182. * Passing this as the "whence" parameter to a seek function causes it to
  183. * return the filesize without seeking anywhere. Supporting this is optional.
  184. * If it is not supported then the seek function will return <0.
  185. */
  186. #define AVSEEK_SIZE 0x10000
  187. /**
  188. * Oring this flag as into the "whence" parameter to a seek function causes it to
  189. * seek by any means (like reopening and linear reading) or other normally unreasonble
  190. * means that can be extreemly slow.
  191. * This may be ignored by the seek code.
  192. */
  193. #define AVSEEK_FORCE 0x20000
  194. /**
  195. * fseek() equivalent for AVIOContext.
  196. * @return new position or AVERROR.
  197. */
  198. int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
  199. /**
  200. * Skip given number of bytes forward
  201. * @return new position or AVERROR.
  202. */
  203. static av_always_inline int64_t avio_skip(AVIOContext *s, int64_t offset)
  204. {
  205. return avio_seek(s, offset, SEEK_CUR);
  206. }
  207. /**
  208. * ftell() equivalent for AVIOContext.
  209. * @return position or AVERROR.
  210. */
  211. static av_always_inline int64_t avio_tell(AVIOContext *s)
  212. {
  213. return avio_seek(s, 0, SEEK_CUR);
  214. }
  215. /**
  216. * Get the filesize.
  217. * @return filesize or AVERROR
  218. */
  219. int64_t avio_size(AVIOContext *s);
  220. /** @warning currently size is limited */
  221. int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);
  222. void avio_flush(AVIOContext *s);
  223. /**
  224. * Read size bytes from AVIOContext into buf.
  225. * @return number of bytes read or AVERROR
  226. */
  227. int avio_read(AVIOContext *s, unsigned char *buf, int size);
  228. /**
  229. * @name Functions for reading from AVIOContext
  230. * @{
  231. *
  232. * @note return 0 if EOF, so you cannot use it if EOF handling is
  233. * necessary
  234. */
  235. int avio_r8 (AVIOContext *s);
  236. unsigned int avio_rl16(AVIOContext *s);
  237. unsigned int avio_rl24(AVIOContext *s);
  238. unsigned int avio_rl32(AVIOContext *s);
  239. uint64_t avio_rl64(AVIOContext *s);
  240. unsigned int avio_rb16(AVIOContext *s);
  241. unsigned int avio_rb24(AVIOContext *s);
  242. unsigned int avio_rb32(AVIOContext *s);
  243. uint64_t avio_rb64(AVIOContext *s);
  244. /**
  245. * @}
  246. */
  247. /**
  248. * Read a string from pb into buf. The reading will terminate when either
  249. * a NULL character was encountered, maxlen bytes have been read, or nothing
  250. * more can be read from pb. The result is guaranteed to be NULL-terminated, it
  251. * will be truncated if buf is too small.
  252. * Note that the string is not interpreted or validated in any way, it
  253. * might get truncated in the middle of a sequence for multi-byte encodings.
  254. *
  255. * @return number of bytes read (is always <= maxlen).
  256. * If reading ends on EOF or error, the return value will be one more than
  257. * bytes actually read.
  258. */
  259. int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen);
  260. /**
  261. * Read a UTF-16 string from pb and convert it to UTF-8.
  262. * The reading will terminate when either a null or invalid character was
  263. * encountered or maxlen bytes have been read.
  264. * @return number of bytes read (is always <= maxlen)
  265. */
  266. int avio_get_str16le(AVIOContext *pb, int maxlen, char *buf, int buflen);
  267. int avio_get_str16be(AVIOContext *pb, int maxlen, char *buf, int buflen);
  268. /**
  269. * @name URL open modes
  270. * The flags argument to avio_open must be one of the following
  271. * constants, optionally ORed with other flags.
  272. * @{
  273. */
  274. #define AVIO_FLAG_READ 1 /**< read-only */
  275. #define AVIO_FLAG_WRITE 2 /**< write-only */
  276. #define AVIO_FLAG_READ_WRITE (AVIO_FLAG_READ|AVIO_FLAG_WRITE) /**< read-write pseudo flag */
  277. /**
  278. * @}
  279. */
  280. /**
  281. * Use non-blocking mode.
  282. * If this flag is set, operations on the context will return
  283. * AVERROR(EAGAIN) if they can not be performed immediately.
  284. * If this flag is not set, operations on the context will never return
  285. * AVERROR(EAGAIN).
  286. * Note that this flag does not affect the opening/connecting of the
  287. * context. Connecting a protocol will always block if necessary (e.g. on
  288. * network protocols) but never hang (e.g. on busy devices).
  289. * Warning: non-blocking protocols is work-in-progress; this flag may be
  290. * silently ignored.
  291. */
  292. #define AVIO_FLAG_NONBLOCK 8
  293. /**
  294. * Create and initialize a AVIOContext for accessing the
  295. * resource indicated by url.
  296. * @note When the resource indicated by url has been opened in
  297. * read+write mode, the AVIOContext can be used only for writing.
  298. *
  299. * @param s Used to return the pointer to the created AVIOContext.
  300. * In case of failure the pointed to value is set to NULL.
  301. * @param url resource to access
  302. * @param flags flags which control how the resource indicated by url
  303. * is to be opened
  304. * @return 0 in case of success, a negative value corresponding to an
  305. * AVERROR code in case of failure
  306. */
  307. int avio_open(AVIOContext **s, const char *url, int flags);
  308. /**
  309. * Create and initialize a AVIOContext for accessing the
  310. * resource indicated by url.
  311. * @note When the resource indicated by url has been opened in
  312. * read+write mode, the AVIOContext can be used only for writing.
  313. *
  314. * @param s Used to return the pointer to the created AVIOContext.
  315. * In case of failure the pointed to value is set to NULL.
  316. * @param url resource to access
  317. * @param flags flags which control how the resource indicated by url
  318. * is to be opened
  319. * @param int_cb an interrupt callback to be used at the protocols level
  320. * @param options A dictionary filled with protocol-private options. On return
  321. * this parameter will be destroyed and replaced with a dict containing options
  322. * that were not found. May be NULL.
  323. * @return 0 in case of success, a negative value corresponding to an
  324. * AVERROR code in case of failure
  325. */
  326. int avio_open2(AVIOContext **s, const char *url, int flags,
  327. const AVIOInterruptCB *int_cb, AVDictionary **options);
  328. /**
  329. * Close the resource accessed by the AVIOContext s and free it.
  330. * This function can only be used if s was opened by avio_open().
  331. *
  332. * The internal buffer is automatically flushed before closing the
  333. * resource.
  334. *
  335. * @return 0 on success, an AVERROR < 0 on error.
  336. * @see avio_closep
  337. */
  338. int avio_close(AVIOContext *s);
  339. /**
  340. * Close the resource accessed by the AVIOContext *s, free it
  341. * and set the pointer pointing to it to NULL.
  342. * This function can only be used if s was opened by avio_open().
  343. *
  344. * The internal buffer is automatically flushed before closing the
  345. * resource.
  346. *
  347. * @return 0 on success, an AVERROR < 0 on error.
  348. * @see avio_close
  349. */
  350. int avio_closep(AVIOContext **s);
  351. /**
  352. * Open a write only memory stream.
  353. *
  354. * @param s new IO context
  355. * @return zero if no error.
  356. */
  357. int avio_open_dyn_buf(AVIOContext **s);
  358. /**
  359. * Return the written size and a pointer to the buffer. The buffer
  360. * must be freed with av_free().
  361. * Padding of AV_INPUT_BUFFER_PADDING_SIZE is added to the buffer.
  362. *
  363. * @param s IO context
  364. * @param pbuffer pointer to a byte buffer
  365. * @return the length of the byte buffer
  366. */
  367. int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
  368. /**
  369. * Iterate through names of available protocols.
  370. *
  371. * @param opaque A private pointer representing current protocol.
  372. * It must be a pointer to NULL on first iteration and will
  373. * be updated by successive calls to avio_enum_protocols.
  374. * @param output If set to 1, iterate over output protocols,
  375. * otherwise over input protocols.
  376. *
  377. * @return A static string containing the name of current protocol or NULL
  378. */
  379. const char *avio_enum_protocols(void **opaque, int output);
  380. /**
  381. * Pause and resume playing - only meaningful if using a network streaming
  382. * protocol (e.g. MMS).
  383. *
  384. * @param h IO context from which to call the read_pause function pointer
  385. * @param pause 1 for pause, 0 for resume
  386. */
  387. int avio_pause(AVIOContext *h, int pause);
  388. /**
  389. * Seek to a given timestamp relative to some component stream.
  390. * Only meaningful if using a network streaming protocol (e.g. MMS.).
  391. *
  392. * @param h IO context from which to call the seek function pointers
  393. * @param stream_index The stream index that the timestamp is relative to.
  394. * If stream_index is (-1) the timestamp should be in AV_TIME_BASE
  395. * units from the beginning of the presentation.
  396. * If a stream_index >= 0 is used and the protocol does not support
  397. * seeking based on component streams, the call will fail with ENOTSUP.
  398. * @param timestamp timestamp in AVStream.time_base units
  399. * or if there is no stream specified then in AV_TIME_BASE units.
  400. * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
  401. * and AVSEEK_FLAG_ANY. The protocol may silently ignore
  402. * AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
  403. * fail with ENOTSUP if used and not supported.
  404. * @return >= 0 on success
  405. * @see AVInputFormat::read_seek
  406. */
  407. int64_t avio_seek_time(AVIOContext *h, int stream_index,
  408. int64_t timestamp, int flags);
  409. #endif /* AVFORMAT_AVIO_H */