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.

526 lines
18KB

  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. * unbuffered I/O operations
  25. *
  26. * @warning This file has to be considered an internal but installed
  27. * header, so it should not be directly included in your projects.
  28. */
  29. #include <stdint.h>
  30. #include "libavutil/common.h"
  31. /* unbuffered I/O */
  32. /**
  33. * URL Context.
  34. * New fields can be added to the end with minor version bumps.
  35. * Removal, reordering and changes to existing fields require a major
  36. * version bump.
  37. * sizeof(URLContext) must not be used outside libav*.
  38. */
  39. typedef struct URLContext {
  40. #if LIBAVFORMAT_VERSION_MAJOR >= 53
  41. const AVClass *av_class; ///< information for av_log(). Set by url_open().
  42. #endif
  43. struct URLProtocol *prot;
  44. int flags;
  45. int is_streamed; /**< true if streamed (no seek possible), default = false */
  46. int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */
  47. void *priv_data;
  48. char *filename; /**< specified URL */
  49. } URLContext;
  50. typedef struct URLPollEntry {
  51. URLContext *handle;
  52. int events;
  53. int revents;
  54. } URLPollEntry;
  55. #define URL_RDONLY 0
  56. #define URL_WRONLY 1
  57. #define URL_RDWR 2
  58. typedef int URLInterruptCB(void);
  59. /**
  60. * Creates an URLContext for accessing to the resource indicated by
  61. * url, and opens it using the URLProtocol up.
  62. *
  63. * @param puc pointer to the location where, in case of success, the
  64. * function puts the pointer to the created URLContext
  65. * @param flags flags which control how the resource indicated by url
  66. * is to be opened
  67. * @return 0 in case of success, a negative value corresponding to an
  68. * AVERROR code in case of failure
  69. */
  70. int url_open_protocol (URLContext **puc, struct URLProtocol *up,
  71. const char *url, int flags);
  72. /**
  73. * Creates an URLContext for accessing to the resource indicated by
  74. * url, and opens it.
  75. *
  76. * @param puc pointer to the location where, in case of success, the
  77. * function puts the pointer to the created URLContext
  78. * @param flags flags which control how the resource indicated by url
  79. * is to be opened
  80. * @return 0 in case of success, a negative value corresponding to an
  81. * AVERROR code in case of failure
  82. */
  83. int url_open(URLContext **h, const char *url, int flags);
  84. /**
  85. * Reads up to size bytes from the resource accessed by h, and stores
  86. * the read bytes in buf.
  87. *
  88. * @return The number of bytes actually read, or a negative value
  89. * corresponding to an AVERROR code in case of error. A value of zero
  90. * indicates that it is not possible to read more from the accessed
  91. * resource (except if the value of the size argument is also zero).
  92. */
  93. int url_read(URLContext *h, unsigned char *buf, int size);
  94. /**
  95. * Read as many bytes as possible (up to size), calling the
  96. * read function multiple times if necessary.
  97. * Will also retry if the read function returns AVERROR(EAGAIN).
  98. * This makes special short-read handling in applications
  99. * unnecessary, if the return value is < size then it is
  100. * certain there was either an error or the end of file was reached.
  101. */
  102. int url_read_complete(URLContext *h, unsigned char *buf, int size);
  103. int url_write(URLContext *h, unsigned char *buf, int size);
  104. /**
  105. * Changes the position that will be used by the next read/write
  106. * operation on the resource accessed by h.
  107. *
  108. * @param pos specifies the new position to set
  109. * @param whence specifies how pos should be interpreted, it must be
  110. * one of SEEK_SET (seek from the beginning), SEEK_CUR (seek from the
  111. * current position), SEEK_END (seek from the end), or AVSEEK_SIZE
  112. * (return the filesize of the requested resource, pos is ignored).
  113. * @return a negative value corresponding to an AVERROR code in case
  114. * of failure, or the resulting file position, measured in bytes from
  115. * the beginning of the file. You can use this feature together with
  116. * SEEK_CUR to read the current file position.
  117. */
  118. int64_t url_seek(URLContext *h, int64_t pos, int whence);
  119. /**
  120. * Closes the resource accessed by the URLContext h, and frees the
  121. * memory used by it.
  122. *
  123. * @return a negative value if an error condition occurred, 0
  124. * otherwise
  125. */
  126. int url_close(URLContext *h);
  127. /**
  128. * Returns a non-zero value if the resource indicated by url
  129. * exists, 0 otherwise.
  130. */
  131. int url_exist(const char *url);
  132. int64_t url_filesize(URLContext *h);
  133. /**
  134. * Return the file descriptor associated with this URL. For RTP, this
  135. * will return only the RTP file descriptor, not the RTCP file descriptor.
  136. * To get both, use rtp_get_file_handles().
  137. *
  138. * @return the file descriptor associated with this URL, or <0 on error.
  139. */
  140. int url_get_file_handle(URLContext *h);
  141. /**
  142. * Return the maximum packet size associated to packetized file
  143. * handle. If the file is not packetized (stream like HTTP or file on
  144. * disk), then 0 is returned.
  145. *
  146. * @param h file handle
  147. * @return maximum packet size in bytes
  148. */
  149. int url_get_max_packet_size(URLContext *h);
  150. void url_get_filename(URLContext *h, char *buf, int buf_size);
  151. /**
  152. * The callback is called in blocking functions to test regulary if
  153. * asynchronous interruption is needed. AVERROR(EINTR) is returned
  154. * in this case by the interrupted function. 'NULL' means no interrupt
  155. * callback is given.
  156. */
  157. void url_set_interrupt_cb(URLInterruptCB *interrupt_cb);
  158. /* not implemented */
  159. int url_poll(URLPollEntry *poll_table, int n, int timeout);
  160. /**
  161. * Pause and resume playing - only meaningful if using a network streaming
  162. * protocol (e.g. MMS).
  163. * @param pause 1 for pause, 0 for resume
  164. */
  165. int av_url_read_pause(URLContext *h, int pause);
  166. /**
  167. * Seek to a given timestamp relative to some component stream.
  168. * Only meaningful if using a network streaming protocol (e.g. MMS.).
  169. * @param stream_index The stream index that the timestamp is relative to.
  170. * If stream_index is (-1) the timestamp should be in AV_TIME_BASE
  171. * units from the beginning of the presentation.
  172. * If a stream_index >= 0 is used and the protocol does not support
  173. * seeking based on component streams, the call will fail with ENOTSUP.
  174. * @param timestamp timestamp in AVStream.time_base units
  175. * or if there is no stream specified then in AV_TIME_BASE units.
  176. * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
  177. * and AVSEEK_FLAG_ANY. The protocol may silently ignore
  178. * AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
  179. * fail with ENOTSUP if used and not supported.
  180. * @return >= 0 on success
  181. * @see AVInputFormat::read_seek
  182. */
  183. int64_t av_url_read_seek(URLContext *h, int stream_index,
  184. int64_t timestamp, int flags);
  185. /**
  186. * Passing this as the "whence" parameter to a seek function causes it to
  187. * return the filesize without seeking anywhere. Supporting this is optional.
  188. * If it is not supported then the seek function will return <0.
  189. */
  190. #define AVSEEK_SIZE 0x10000
  191. /**
  192. * Oring this flag as into the "whence" parameter to a seek function causes it to
  193. * seek by any means (like reopening and linear reading) or other normally unreasonble
  194. * means that can be extreemly slow.
  195. * This may be ignored by the seek code.
  196. */
  197. #define AVSEEK_FORCE 0x20000
  198. typedef struct URLProtocol {
  199. const char *name;
  200. int (*url_open)(URLContext *h, const char *url, int flags);
  201. int (*url_read)(URLContext *h, unsigned char *buf, int size);
  202. int (*url_write)(URLContext *h, unsigned char *buf, int size);
  203. int64_t (*url_seek)(URLContext *h, int64_t pos, int whence);
  204. int (*url_close)(URLContext *h);
  205. struct URLProtocol *next;
  206. int (*url_read_pause)(URLContext *h, int pause);
  207. int64_t (*url_read_seek)(URLContext *h, int stream_index,
  208. int64_t timestamp, int flags);
  209. int (*url_get_file_handle)(URLContext *h);
  210. } URLProtocol;
  211. #if LIBAVFORMAT_VERSION_MAJOR < 53
  212. extern URLProtocol *first_protocol;
  213. #endif
  214. extern URLInterruptCB *url_interrupt_cb;
  215. /**
  216. * If protocol is NULL, returns the first registered protocol,
  217. * if protocol is non-NULL, returns the next registered protocol after protocol,
  218. * or NULL if protocol is the last one.
  219. */
  220. URLProtocol *av_protocol_next(URLProtocol *p);
  221. #if LIBAVFORMAT_VERSION_MAJOR < 53
  222. /**
  223. * @deprecated Use av_register_protocol() instead.
  224. */
  225. attribute_deprecated int register_protocol(URLProtocol *protocol);
  226. #endif
  227. /**
  228. * Registers the URLProtocol protocol.
  229. */
  230. int av_register_protocol(URLProtocol *protocol);
  231. /**
  232. * Bytestream IO Context.
  233. * New fields can be added to the end with minor version bumps.
  234. * Removal, reordering and changes to existing fields require a major
  235. * version bump.
  236. * sizeof(ByteIOContext) must not be used outside libav*.
  237. */
  238. typedef struct {
  239. unsigned char *buffer;
  240. int buffer_size;
  241. unsigned char *buf_ptr, *buf_end;
  242. void *opaque;
  243. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
  244. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
  245. int64_t (*seek)(void *opaque, int64_t offset, int whence);
  246. int64_t pos; /**< position in the file of the current buffer */
  247. int must_flush; /**< true if the next seek should flush */
  248. int eof_reached; /**< true if eof reached */
  249. int write_flag; /**< true if open for writing */
  250. int is_streamed;
  251. int max_packet_size;
  252. unsigned long checksum;
  253. unsigned char *checksum_ptr;
  254. unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
  255. int error; ///< contains the error code or 0 if no error happened
  256. int (*read_pause)(void *opaque, int pause);
  257. int64_t (*read_seek)(void *opaque, int stream_index,
  258. int64_t timestamp, int flags);
  259. } ByteIOContext;
  260. int init_put_byte(ByteIOContext *s,
  261. unsigned char *buffer,
  262. int buffer_size,
  263. int write_flag,
  264. void *opaque,
  265. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  266. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  267. int64_t (*seek)(void *opaque, int64_t offset, int whence));
  268. ByteIOContext *av_alloc_put_byte(
  269. unsigned char *buffer,
  270. int buffer_size,
  271. int write_flag,
  272. void *opaque,
  273. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  274. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  275. int64_t (*seek)(void *opaque, int64_t offset, int whence));
  276. void put_byte(ByteIOContext *s, int b);
  277. void put_buffer(ByteIOContext *s, const unsigned char *buf, int size);
  278. void put_le64(ByteIOContext *s, uint64_t val);
  279. void put_be64(ByteIOContext *s, uint64_t val);
  280. void put_le32(ByteIOContext *s, unsigned int val);
  281. void put_be32(ByteIOContext *s, unsigned int val);
  282. void put_le24(ByteIOContext *s, unsigned int val);
  283. void put_be24(ByteIOContext *s, unsigned int val);
  284. void put_le16(ByteIOContext *s, unsigned int val);
  285. void put_be16(ByteIOContext *s, unsigned int val);
  286. void put_tag(ByteIOContext *s, const char *tag);
  287. void put_strz(ByteIOContext *s, const char *buf);
  288. /**
  289. * fseek() equivalent for ByteIOContext.
  290. * @return new position or AVERROR.
  291. */
  292. int64_t url_fseek(ByteIOContext *s, int64_t offset, int whence);
  293. /**
  294. * Skip given number of bytes forward.
  295. * @param offset number of bytes
  296. */
  297. void url_fskip(ByteIOContext *s, int64_t offset);
  298. /**
  299. * ftell() equivalent for ByteIOContext.
  300. * @return position or AVERROR.
  301. */
  302. int64_t url_ftell(ByteIOContext *s);
  303. /**
  304. * Gets the filesize.
  305. * @return filesize or AVERROR
  306. */
  307. int64_t url_fsize(ByteIOContext *s);
  308. /**
  309. * feof() equivalent for ByteIOContext.
  310. * @return non zero if and only if end of file
  311. */
  312. int url_feof(ByteIOContext *s);
  313. int url_ferror(ByteIOContext *s);
  314. int av_url_read_fpause(ByteIOContext *h, int pause);
  315. int64_t av_url_read_fseek(ByteIOContext *h, int stream_index,
  316. int64_t timestamp, int flags);
  317. #define URL_EOF (-1)
  318. /** @note return URL_EOF (-1) if EOF */
  319. int url_fgetc(ByteIOContext *s);
  320. /** @warning currently size is limited */
  321. #ifdef __GNUC__
  322. int url_fprintf(ByteIOContext *s, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3)));
  323. #else
  324. int url_fprintf(ByteIOContext *s, const char *fmt, ...);
  325. #endif
  326. /** @note unlike fgets, the EOL character is not returned and a whole
  327. line is parsed. return NULL if first char read was EOF */
  328. char *url_fgets(ByteIOContext *s, char *buf, int buf_size);
  329. void put_flush_packet(ByteIOContext *s);
  330. /**
  331. * Reads size bytes from ByteIOContext into buf.
  332. * @return number of bytes read or AVERROR
  333. */
  334. int get_buffer(ByteIOContext *s, unsigned char *buf, int size);
  335. /**
  336. * Reads size bytes from ByteIOContext into buf.
  337. * This reads at most 1 packet. If that is not enough fewer bytes will be
  338. * returned.
  339. * @return number of bytes read or AVERROR
  340. */
  341. int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size);
  342. /** @note return 0 if EOF, so you cannot use it if EOF handling is
  343. necessary */
  344. int get_byte(ByteIOContext *s);
  345. unsigned int get_le24(ByteIOContext *s);
  346. unsigned int get_le32(ByteIOContext *s);
  347. uint64_t get_le64(ByteIOContext *s);
  348. unsigned int get_le16(ByteIOContext *s);
  349. char *get_strz(ByteIOContext *s, char *buf, int maxlen);
  350. unsigned int get_be16(ByteIOContext *s);
  351. unsigned int get_be24(ByteIOContext *s);
  352. unsigned int get_be32(ByteIOContext *s);
  353. uint64_t get_be64(ByteIOContext *s);
  354. uint64_t ff_get_v(ByteIOContext *bc);
  355. static inline int url_is_streamed(ByteIOContext *s)
  356. {
  357. return s->is_streamed;
  358. }
  359. /**
  360. * Creates and initializes a ByteIOContext for accessing the
  361. * resource referenced by the URLContext h.
  362. * @note When the URLContext h has been opened in read+write mode, the
  363. * ByteIOContext can be used only for writing.
  364. *
  365. * @param s Used to return the pointer to the created ByteIOContext.
  366. * In case of failure the pointed to value is set to NULL.
  367. * @return 0 in case of success, a negative value corresponding to an
  368. * AVERROR code in case of failure
  369. */
  370. int url_fdopen(ByteIOContext **s, URLContext *h);
  371. /** @warning must be called before any I/O */
  372. int url_setbufsize(ByteIOContext *s, int buf_size);
  373. #if LIBAVFORMAT_VERSION_MAJOR < 53
  374. /** Reset the buffer for reading or writing.
  375. * @note Will drop any data currently in the buffer without transmitting it.
  376. * @param flags URL_RDONLY to set up the buffer for reading, or URL_WRONLY
  377. * to set up the buffer for writing. */
  378. int url_resetbuf(ByteIOContext *s, int flags);
  379. #endif
  380. /**
  381. * Rewinds the ByteIOContext using the specified buffer containing the first buf_size bytes of the file.
  382. * Used after probing to avoid seeking.
  383. * Joins buf and s->buffer, taking any overlap into consideration.
  384. * @note s->buffer must overlap with buf or they can't be joined and the function fails
  385. * @note This function is NOT part of the public API
  386. *
  387. * @param s The read-only ByteIOContext to rewind
  388. * @param buf The probe buffer containing the first buf_size bytes of the file
  389. * @param buf_size The size of buf
  390. * @return 0 in case of success, a negative value corresponding to an
  391. * AVERROR code in case of failure
  392. */
  393. int ff_rewind_with_probe_data(ByteIOContext *s, unsigned char *buf, int buf_size);
  394. /**
  395. * Creates and initializes a ByteIOContext for accessing the
  396. * resource indicated by url.
  397. * @note When the resource indicated by url has been opened in
  398. * read+write mode, the ByteIOContext can be used only for writing.
  399. *
  400. * @param s Used to return the pointer to the created ByteIOContext.
  401. * In case of failure the pointed to value is set to NULL.
  402. * @param flags flags which control how the resource indicated by url
  403. * is to be opened
  404. * @return 0 in case of success, a negative value corresponding to an
  405. * AVERROR code in case of failure
  406. */
  407. int url_fopen(ByteIOContext **s, const char *url, int flags);
  408. int url_fclose(ByteIOContext *s);
  409. URLContext *url_fileno(ByteIOContext *s);
  410. /**
  411. * Return the maximum packet size associated to packetized buffered file
  412. * handle. If the file is not packetized (stream like http or file on
  413. * disk), then 0 is returned.
  414. *
  415. * @param s buffered file handle
  416. * @return maximum packet size in bytes
  417. */
  418. int url_fget_max_packet_size(ByteIOContext *s);
  419. int url_open_buf(ByteIOContext **s, uint8_t *buf, int buf_size, int flags);
  420. /** return the written or read size */
  421. int url_close_buf(ByteIOContext *s);
  422. /**
  423. * Open a write only memory stream.
  424. *
  425. * @param s new IO context
  426. * @return zero if no error.
  427. */
  428. int url_open_dyn_buf(ByteIOContext **s);
  429. /**
  430. * Open a write only packetized memory stream with a maximum packet
  431. * size of 'max_packet_size'. The stream is stored in a memory buffer
  432. * with a big endian 4 byte header giving the packet size in bytes.
  433. *
  434. * @param s new IO context
  435. * @param max_packet_size maximum packet size (must be > 0)
  436. * @return zero if no error.
  437. */
  438. int url_open_dyn_packet_buf(ByteIOContext **s, int max_packet_size);
  439. /**
  440. * Return the written size and a pointer to the buffer. The buffer
  441. * must be freed with av_free().
  442. * @param s IO context
  443. * @param pbuffer pointer to a byte buffer
  444. * @return the length of the byte buffer
  445. */
  446. int url_close_dyn_buf(ByteIOContext *s, uint8_t **pbuffer);
  447. unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf,
  448. unsigned int len);
  449. unsigned long get_checksum(ByteIOContext *s);
  450. void init_checksum(ByteIOContext *s,
  451. unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len),
  452. unsigned long checksum);
  453. /* udp.c */
  454. int udp_set_remote_url(URLContext *h, const char *uri);
  455. int udp_get_local_port(URLContext *h);
  456. #if (LIBAVFORMAT_VERSION_MAJOR <= 52)
  457. int udp_get_file_handle(URLContext *h);
  458. #endif
  459. #endif /* AVFORMAT_AVIO_H */