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.

532 lines
19KB

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