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.

482 lines
17KB

  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. * 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. /**
  111. * max filesize, used to limit allocations
  112. * This field is internal to libavformat and access from outside is not allowed.
  113. */
  114. int64_t maxsize;
  115. /**
  116. * avio_read and avio_write should if possible be satisfied directly
  117. * instead of going through a buffer, and avio_seek will always
  118. * call the underlying seek function directly.
  119. */
  120. int direct;
  121. /**
  122. * Bytes read statistic
  123. * This field is internal to libavformat and access from outside is not allowed.
  124. */
  125. int64_t bytes_read;
  126. /**
  127. * seek statistic
  128. * This field is internal to libavformat and access from outside is not allowed.
  129. */
  130. int seek_count;
  131. /**
  132. * writeout statistic
  133. * This field is internal to libavformat and access from outside is not allowed.
  134. */
  135. int writeout_count;
  136. } AVIOContext;
  137. /* unbuffered I/O */
  138. /**
  139. * Return AVIO_FLAG_* access flags corresponding to the access permissions
  140. * of the resource in url, or a negative value corresponding to an
  141. * AVERROR code in case of failure. The returned access flags are
  142. * masked by the value in flags.
  143. *
  144. * @note This function is intrinsically unsafe, in the sense that the
  145. * checked resource may change its existence or permission status from
  146. * one call to another. Thus you should not trust the returned value,
  147. * unless you are sure that no other processes are accessing the
  148. * checked resource.
  149. */
  150. int avio_check(const char *url, int flags);
  151. /**
  152. * Allocate and initialize an AVIOContext for buffered I/O. It must be later
  153. * freed with av_free().
  154. *
  155. * @param buffer Memory block for input/output operations via AVIOContext.
  156. * The buffer must be allocated with av_malloc() and friends.
  157. * @param buffer_size The buffer size is very important for performance.
  158. * For protocols with fixed blocksize it should be set to this blocksize.
  159. * For others a typical size is a cache page, e.g. 4kb.
  160. * @param write_flag Set to 1 if the buffer should be writable, 0 otherwise.
  161. * @param opaque An opaque pointer to user-specific data.
  162. * @param read_packet A function for refilling the buffer, may be NULL.
  163. * @param write_packet A function for writing the buffer contents, may be NULL.
  164. * The function may not change the input buffers content.
  165. * @param seek A function for seeking to specified byte position, may be NULL.
  166. *
  167. * @return Allocated AVIOContext or NULL on failure.
  168. */
  169. AVIOContext *avio_alloc_context(
  170. unsigned char *buffer,
  171. int buffer_size,
  172. int write_flag,
  173. void *opaque,
  174. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  175. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  176. int64_t (*seek)(void *opaque, int64_t offset, int whence));
  177. void avio_w8(AVIOContext *s, int b);
  178. void avio_write(AVIOContext *s, const unsigned char *buf, int size);
  179. void avio_wl64(AVIOContext *s, uint64_t val);
  180. void avio_wb64(AVIOContext *s, uint64_t val);
  181. void avio_wl32(AVIOContext *s, unsigned int val);
  182. void avio_wb32(AVIOContext *s, unsigned int val);
  183. void avio_wl24(AVIOContext *s, unsigned int val);
  184. void avio_wb24(AVIOContext *s, unsigned int val);
  185. void avio_wl16(AVIOContext *s, unsigned int val);
  186. void avio_wb16(AVIOContext *s, unsigned int val);
  187. /**
  188. * Write a NULL-terminated string.
  189. * @return number of bytes written.
  190. */
  191. int avio_put_str(AVIOContext *s, const char *str);
  192. /**
  193. * Convert an UTF-8 string to UTF-16LE and write it.
  194. * @return number of bytes written.
  195. */
  196. int avio_put_str16le(AVIOContext *s, const char *str);
  197. /**
  198. * Passing this as the "whence" parameter to a seek function causes it to
  199. * return the filesize without seeking anywhere. Supporting this is optional.
  200. * If it is not supported then the seek function will return <0.
  201. */
  202. #define AVSEEK_SIZE 0x10000
  203. /**
  204. * Oring this flag as into the "whence" parameter to a seek function causes it to
  205. * seek by any means (like reopening and linear reading) or other normally unreasonable
  206. * means that can be extremely slow.
  207. * This may be ignored by the seek code.
  208. */
  209. #define AVSEEK_FORCE 0x20000
  210. /**
  211. * fseek() equivalent for AVIOContext.
  212. * @return new position or AVERROR.
  213. */
  214. int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
  215. /**
  216. * Skip given number of bytes forward
  217. * @return new position or AVERROR.
  218. */
  219. int64_t avio_skip(AVIOContext *s, int64_t offset);
  220. /**
  221. * ftell() equivalent for AVIOContext.
  222. * @return position or AVERROR.
  223. */
  224. static av_always_inline int64_t avio_tell(AVIOContext *s)
  225. {
  226. return avio_seek(s, 0, SEEK_CUR);
  227. }
  228. /**
  229. * Get the filesize.
  230. * @return filesize or AVERROR
  231. */
  232. int64_t avio_size(AVIOContext *s);
  233. /**
  234. * feof() equivalent for AVIOContext.
  235. * @return non zero if and only if end of file
  236. */
  237. int url_feof(AVIOContext *s);
  238. /** @warning currently size is limited */
  239. int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);
  240. /**
  241. * Force flushing of buffered data to the output s.
  242. *
  243. * Force the buffered data to be immediately written to the output,
  244. * without to wait to fill the internal buffer.
  245. */
  246. void avio_flush(AVIOContext *s);
  247. /**
  248. * Read size bytes from AVIOContext into buf.
  249. * @return number of bytes read or AVERROR
  250. */
  251. int avio_read(AVIOContext *s, unsigned char *buf, int size);
  252. /**
  253. * @name Functions for reading from AVIOContext
  254. * @{
  255. *
  256. * @note return 0 if EOF, so you cannot use it if EOF handling is
  257. * necessary
  258. */
  259. int avio_r8 (AVIOContext *s);
  260. unsigned int avio_rl16(AVIOContext *s);
  261. unsigned int avio_rl24(AVIOContext *s);
  262. unsigned int avio_rl32(AVIOContext *s);
  263. uint64_t avio_rl64(AVIOContext *s);
  264. unsigned int avio_rb16(AVIOContext *s);
  265. unsigned int avio_rb24(AVIOContext *s);
  266. unsigned int avio_rb32(AVIOContext *s);
  267. uint64_t avio_rb64(AVIOContext *s);
  268. /**
  269. * @}
  270. */
  271. /**
  272. * Read a string from pb into buf. The reading will terminate when either
  273. * a NULL character was encountered, maxlen bytes have been read, or nothing
  274. * more can be read from pb. The result is guaranteed to be NULL-terminated, it
  275. * will be truncated if buf is too small.
  276. * Note that the string is not interpreted or validated in any way, it
  277. * might get truncated in the middle of a sequence for multi-byte encodings.
  278. *
  279. * @return number of bytes read (is always <= maxlen).
  280. * If reading ends on EOF or error, the return value will be one more than
  281. * bytes actually read.
  282. */
  283. int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen);
  284. /**
  285. * Read a UTF-16 string from pb and convert it to UTF-8.
  286. * The reading will terminate when either a null or invalid character was
  287. * encountered or maxlen bytes have been read.
  288. * @return number of bytes read (is always <= maxlen)
  289. */
  290. int avio_get_str16le(AVIOContext *pb, int maxlen, char *buf, int buflen);
  291. int avio_get_str16be(AVIOContext *pb, int maxlen, char *buf, int buflen);
  292. /**
  293. * @name URL open modes
  294. * The flags argument to avio_open must be one of the following
  295. * constants, optionally ORed with other flags.
  296. * @{
  297. */
  298. #define AVIO_FLAG_READ 1 /**< read-only */
  299. #define AVIO_FLAG_WRITE 2 /**< write-only */
  300. #define AVIO_FLAG_READ_WRITE (AVIO_FLAG_READ|AVIO_FLAG_WRITE) /**< read-write pseudo flag */
  301. /**
  302. * @}
  303. */
  304. /**
  305. * Use non-blocking mode.
  306. * If this flag is set, operations on the context will return
  307. * AVERROR(EAGAIN) if they can not be performed immediately.
  308. * If this flag is not set, operations on the context will never return
  309. * AVERROR(EAGAIN).
  310. * Note that this flag does not affect the opening/connecting of the
  311. * context. Connecting a protocol will always block if necessary (e.g. on
  312. * network protocols) but never hang (e.g. on busy devices).
  313. * Warning: non-blocking protocols is work-in-progress; this flag may be
  314. * silently ignored.
  315. */
  316. #define AVIO_FLAG_NONBLOCK 8
  317. /**
  318. * Use direct mode.
  319. * avio_read and avio_write should if possible be satisfied directly
  320. * instead of going through a buffer, and avio_seek will always
  321. * call the underlying seek function directly.
  322. */
  323. #define AVIO_FLAG_DIRECT 0x8000
  324. /**
  325. * Create and initialize a AVIOContext for accessing the
  326. * resource indicated by url.
  327. * @note When the resource indicated by url has been opened in
  328. * read+write mode, the AVIOContext can be used only for writing.
  329. *
  330. * @param s Used to return the pointer to the created AVIOContext.
  331. * In case of failure the pointed to value is set to NULL.
  332. * @param flags flags which control how the resource indicated by url
  333. * is to be opened
  334. * @return >= 0 in case of success, a negative value corresponding to an
  335. * AVERROR code in case of failure
  336. */
  337. int avio_open(AVIOContext **s, const char *url, int flags);
  338. /**
  339. * Create and initialize a AVIOContext for accessing the
  340. * resource indicated by url.
  341. * @note When the resource indicated by url has been opened in
  342. * read+write mode, the AVIOContext can be used only for writing.
  343. *
  344. * @param s Used to return the pointer to the created AVIOContext.
  345. * In case of failure the pointed to value is set to NULL.
  346. * @param flags flags which control how the resource indicated by url
  347. * is to be opened
  348. * @param int_cb an interrupt callback to be used at the protocols level
  349. * @param options A dictionary filled with protocol-private options. On return
  350. * this parameter will be destroyed and replaced with a dict containing options
  351. * that were not found. May be NULL.
  352. * @return >= 0 in case of success, a negative value corresponding to an
  353. * AVERROR code in case of failure
  354. */
  355. int avio_open2(AVIOContext **s, const char *url, int flags,
  356. const AVIOInterruptCB *int_cb, AVDictionary **options);
  357. /**
  358. * Close the resource accessed by the AVIOContext s and free it.
  359. * This function can only be used if s was opened by avio_open().
  360. *
  361. * The internal buffer is automatically flushed before closing the
  362. * resource.
  363. *
  364. * @return 0 on success, an AVERROR < 0 on error.
  365. * @see avio_closep
  366. */
  367. int avio_close(AVIOContext *s);
  368. /**
  369. * Close the resource accessed by the AVIOContext *s, free it
  370. * and set the pointer pointing to it to NULL.
  371. * This function can only be used if s was opened by avio_open().
  372. *
  373. * The internal buffer is automatically flushed before closing the
  374. * resource.
  375. *
  376. * @return 0 on success, an AVERROR < 0 on error.
  377. * @see avio_close
  378. */
  379. int avio_closep(AVIOContext **s);
  380. /**
  381. * Open a write only memory stream.
  382. *
  383. * @param s new IO context
  384. * @return zero if no error.
  385. */
  386. int avio_open_dyn_buf(AVIOContext **s);
  387. /**
  388. * Return the written size and a pointer to the buffer. The buffer
  389. * must be freed with av_free().
  390. * Padding of FF_INPUT_BUFFER_PADDING_SIZE is added to the buffer.
  391. *
  392. * @param s IO context
  393. * @param pbuffer pointer to a byte buffer
  394. * @return the length of the byte buffer
  395. */
  396. int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
  397. /**
  398. * Iterate through names of available protocols.
  399. *
  400. * @param opaque A private pointer representing current protocol.
  401. * It must be a pointer to NULL on first iteration and will
  402. * be updated by successive calls to avio_enum_protocols.
  403. * @param output If set to 1, iterate over output protocols,
  404. * otherwise over input protocols.
  405. *
  406. * @return A static string containing the name of current protocol or NULL
  407. */
  408. const char *avio_enum_protocols(void **opaque, int output);
  409. /**
  410. * Pause and resume playing - only meaningful if using a network streaming
  411. * protocol (e.g. MMS).
  412. * @param pause 1 for pause, 0 for resume
  413. */
  414. int avio_pause(AVIOContext *h, int pause);
  415. /**
  416. * Seek to a given timestamp relative to some component stream.
  417. * Only meaningful if using a network streaming protocol (e.g. MMS.).
  418. * @param stream_index The stream index that the timestamp is relative to.
  419. * If stream_index is (-1) the timestamp should be in AV_TIME_BASE
  420. * units from the beginning of the presentation.
  421. * If a stream_index >= 0 is used and the protocol does not support
  422. * seeking based on component streams, the call will fail.
  423. * @param timestamp timestamp in AVStream.time_base units
  424. * or if there is no stream specified then in AV_TIME_BASE units.
  425. * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
  426. * and AVSEEK_FLAG_ANY. The protocol may silently ignore
  427. * AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
  428. * fail if used and not supported.
  429. * @return >= 0 on success
  430. * @see AVInputFormat::read_seek
  431. */
  432. int64_t avio_seek_time(AVIOContext *h, int stream_index,
  433. int64_t timestamp, int flags);
  434. #endif /* AVFORMAT_AVIO_H */