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.

516 lines
18KB

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