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.

483 lines
16KB

  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 libavformat/avio.h
  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. int64_t url_seek(URLContext *h, int64_t pos, int whence);
  105. /**
  106. * Closes the resource accessed by the URLContext h, and frees the
  107. * memory used by it.
  108. *
  109. * @return a negative value if an error condition occurred, 0
  110. * otherwise
  111. */
  112. int url_close(URLContext *h);
  113. int url_exist(const char *url);
  114. int64_t url_filesize(URLContext *h);
  115. /**
  116. * Return the file descriptor associated with this URL. For RTP, this
  117. * will return only the RTP file descriptor, not the RTCP file descriptor.
  118. * To get both, use rtp_get_file_handles().
  119. *
  120. * @return the file descriptor associated with this URL, or <0 on error.
  121. */
  122. int url_get_file_handle(URLContext *h);
  123. /**
  124. * Return the maximum packet size associated to packetized file
  125. * handle. If the file is not packetized (stream like HTTP or file on
  126. * disk), then 0 is returned.
  127. *
  128. * @param h file handle
  129. * @return maximum packet size in bytes
  130. */
  131. int url_get_max_packet_size(URLContext *h);
  132. void url_get_filename(URLContext *h, char *buf, int buf_size);
  133. /**
  134. * The callback is called in blocking functions to test regulary if
  135. * asynchronous interruption is needed. AVERROR(EINTR) is returned
  136. * in this case by the interrupted function. 'NULL' means no interrupt
  137. * callback is given.
  138. */
  139. void url_set_interrupt_cb(URLInterruptCB *interrupt_cb);
  140. /* not implemented */
  141. int url_poll(URLPollEntry *poll_table, int n, int timeout);
  142. /**
  143. * Pause and resume playing - only meaningful if using a network streaming
  144. * protocol (e.g. MMS).
  145. * @param pause 1 for pause, 0 for resume
  146. */
  147. int av_url_read_pause(URLContext *h, int pause);
  148. /**
  149. * Seek to a given timestamp relative to some component stream.
  150. * Only meaningful if using a network streaming protocol (e.g. MMS.).
  151. * @param stream_index The stream index that the timestamp is relative to.
  152. * If stream_index is (-1) the timestamp should be in AV_TIME_BASE
  153. * units from the beginning of the presentation.
  154. * If a stream_index >= 0 is used and the protocol does not support
  155. * seeking based on component streams, the call will fail with ENOTSUP.
  156. * @param timestamp timestamp in AVStream.time_base units
  157. * or if there is no stream specified then in AV_TIME_BASE units.
  158. * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
  159. * and AVSEEK_FLAG_ANY. The protocol may silently ignore
  160. * AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
  161. * fail with ENOTSUP if used and not supported.
  162. * @return >= 0 on success
  163. * @see AVInputFormat::read_seek
  164. */
  165. int64_t av_url_read_seek(URLContext *h, int stream_index,
  166. int64_t timestamp, int flags);
  167. /**
  168. * Passing this as the "whence" parameter to a seek function causes it to
  169. * return the filesize without seeking anywhere. Supporting this is optional.
  170. * If it is not supported then the seek function will return <0.
  171. */
  172. #define AVSEEK_SIZE 0x10000
  173. typedef struct URLProtocol {
  174. const char *name;
  175. int (*url_open)(URLContext *h, const char *url, int flags);
  176. int (*url_read)(URLContext *h, unsigned char *buf, int size);
  177. int (*url_write)(URLContext *h, unsigned char *buf, int size);
  178. int64_t (*url_seek)(URLContext *h, int64_t pos, int whence);
  179. int (*url_close)(URLContext *h);
  180. struct URLProtocol *next;
  181. int (*url_read_pause)(URLContext *h, int pause);
  182. int64_t (*url_read_seek)(URLContext *h, int stream_index,
  183. int64_t timestamp, int flags);
  184. int (*url_get_file_handle)(URLContext *h);
  185. } URLProtocol;
  186. #if LIBAVFORMAT_VERSION_MAJOR < 53
  187. extern URLProtocol *first_protocol;
  188. #endif
  189. extern URLInterruptCB *url_interrupt_cb;
  190. /**
  191. * If protocol is NULL, returns the first registered protocol,
  192. * if protocol is non-NULL, returns the next registered protocol after protocol,
  193. * or NULL if protocol is the last one.
  194. */
  195. URLProtocol *av_protocol_next(URLProtocol *p);
  196. #if LIBAVFORMAT_VERSION_MAJOR < 53
  197. /**
  198. * @deprecated Use av_register_protocol() instead.
  199. */
  200. attribute_deprecated int register_protocol(URLProtocol *protocol);
  201. #endif
  202. /**
  203. * Registers the URLProtocol protocol.
  204. */
  205. int av_register_protocol(URLProtocol *protocol);
  206. /**
  207. * Bytestream IO Context.
  208. * New fields can be added to the end with minor version bumps.
  209. * Removal, reordering and changes to existing fields require a major
  210. * version bump.
  211. * sizeof(ByteIOContext) must not be used outside libav*.
  212. */
  213. typedef struct {
  214. unsigned char *buffer;
  215. int buffer_size;
  216. unsigned char *buf_ptr, *buf_end;
  217. void *opaque;
  218. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
  219. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
  220. int64_t (*seek)(void *opaque, int64_t offset, int whence);
  221. int64_t pos; /**< position in the file of the current buffer */
  222. int must_flush; /**< true if the next seek should flush */
  223. int eof_reached; /**< true if eof reached */
  224. int write_flag; /**< true if open for writing */
  225. int is_streamed;
  226. int max_packet_size;
  227. unsigned long checksum;
  228. unsigned char *checksum_ptr;
  229. unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
  230. int error; ///< contains the error code or 0 if no error happened
  231. int (*read_pause)(void *opaque, int pause);
  232. int64_t (*read_seek)(void *opaque, int stream_index,
  233. int64_t timestamp, int flags);
  234. } ByteIOContext;
  235. int init_put_byte(ByteIOContext *s,
  236. unsigned char *buffer,
  237. int buffer_size,
  238. int write_flag,
  239. void *opaque,
  240. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  241. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  242. int64_t (*seek)(void *opaque, int64_t offset, int whence));
  243. ByteIOContext *av_alloc_put_byte(
  244. unsigned char *buffer,
  245. int buffer_size,
  246. int write_flag,
  247. void *opaque,
  248. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  249. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  250. int64_t (*seek)(void *opaque, int64_t offset, int whence));
  251. void put_byte(ByteIOContext *s, int b);
  252. void put_buffer(ByteIOContext *s, const unsigned char *buf, int size);
  253. void put_le64(ByteIOContext *s, uint64_t val);
  254. void put_be64(ByteIOContext *s, uint64_t val);
  255. void put_le32(ByteIOContext *s, unsigned int val);
  256. void put_be32(ByteIOContext *s, unsigned int val);
  257. void put_le24(ByteIOContext *s, unsigned int val);
  258. void put_be24(ByteIOContext *s, unsigned int val);
  259. void put_le16(ByteIOContext *s, unsigned int val);
  260. void put_be16(ByteIOContext *s, unsigned int val);
  261. void put_tag(ByteIOContext *s, const char *tag);
  262. void put_strz(ByteIOContext *s, const char *buf);
  263. /**
  264. * fseek() equivalent for ByteIOContext.
  265. * @return new position or AVERROR.
  266. */
  267. int64_t url_fseek(ByteIOContext *s, int64_t offset, int whence);
  268. /**
  269. * Skip given number of bytes forward.
  270. * @param offset number of bytes
  271. */
  272. void url_fskip(ByteIOContext *s, int64_t offset);
  273. /**
  274. * ftell() equivalent for ByteIOContext.
  275. * @return position or AVERROR.
  276. */
  277. int64_t url_ftell(ByteIOContext *s);
  278. /**
  279. * Gets the filesize.
  280. * @return filesize or AVERROR
  281. */
  282. int64_t url_fsize(ByteIOContext *s);
  283. /**
  284. * feof() equivalent for ByteIOContext.
  285. * @return non zero if and only if end of file
  286. */
  287. int url_feof(ByteIOContext *s);
  288. int url_ferror(ByteIOContext *s);
  289. int av_url_read_fpause(ByteIOContext *h, int pause);
  290. int64_t av_url_read_fseek(ByteIOContext *h, int stream_index,
  291. int64_t timestamp, int flags);
  292. #define URL_EOF (-1)
  293. /** @note return URL_EOF (-1) if EOF */
  294. int url_fgetc(ByteIOContext *s);
  295. /** @warning currently size is limited */
  296. #ifdef __GNUC__
  297. int url_fprintf(ByteIOContext *s, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3)));
  298. #else
  299. int url_fprintf(ByteIOContext *s, const char *fmt, ...);
  300. #endif
  301. /** @note unlike fgets, the EOL character is not returned and a whole
  302. line is parsed. return NULL if first char read was EOF */
  303. char *url_fgets(ByteIOContext *s, char *buf, int buf_size);
  304. void put_flush_packet(ByteIOContext *s);
  305. /**
  306. * Reads size bytes from ByteIOContext into buf.
  307. * @returns number of bytes read or AVERROR
  308. */
  309. int get_buffer(ByteIOContext *s, unsigned char *buf, int size);
  310. /**
  311. * Reads size bytes from ByteIOContext into buf.
  312. * This reads at most 1 packet. If that is not enough fewer bytes will be
  313. * returned.
  314. * @returns number of bytes read or AVERROR
  315. */
  316. int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size);
  317. /** @note return 0 if EOF, so you cannot use it if EOF handling is
  318. necessary */
  319. int get_byte(ByteIOContext *s);
  320. unsigned int get_le24(ByteIOContext *s);
  321. unsigned int get_le32(ByteIOContext *s);
  322. uint64_t get_le64(ByteIOContext *s);
  323. unsigned int get_le16(ByteIOContext *s);
  324. char *get_strz(ByteIOContext *s, char *buf, int maxlen);
  325. unsigned int get_be16(ByteIOContext *s);
  326. unsigned int get_be24(ByteIOContext *s);
  327. unsigned int get_be32(ByteIOContext *s);
  328. uint64_t get_be64(ByteIOContext *s);
  329. uint64_t ff_get_v(ByteIOContext *bc);
  330. static inline int url_is_streamed(ByteIOContext *s)
  331. {
  332. return s->is_streamed;
  333. }
  334. /**
  335. * Creates and initializes a ByteIOContext for accessing the
  336. * resource referenced by the URLContext h.
  337. * @note When the URLContext h has been opened in read+write mode, the
  338. * ByteIOContext can be used only for writing.
  339. *
  340. * @param s Used to return the pointer to the created ByteIOContext.
  341. * In case of failure the pointed to value is set to NULL.
  342. * @return 0 in case of success, a negative value corresponding to an
  343. * AVERROR code in case of failure
  344. */
  345. int url_fdopen(ByteIOContext **s, URLContext *h);
  346. /** @warning must be called before any I/O */
  347. int url_setbufsize(ByteIOContext *s, int buf_size);
  348. #if LIBAVFORMAT_VERSION_MAJOR < 53
  349. /** Reset the buffer for reading or writing.
  350. * @note Will drop any data currently in the buffer without transmitting it.
  351. * @param flags URL_RDONLY to set up the buffer for reading, or URL_WRONLY
  352. * to set up the buffer for writing. */
  353. int url_resetbuf(ByteIOContext *s, int flags);
  354. #endif
  355. /**
  356. * Creates and initializes a ByteIOContext for accessing the
  357. * resource indicated by url.
  358. * @note When the resource indicated by url has been opened in
  359. * read+write mode, the ByteIOContext can be used only for writing.
  360. *
  361. * @param s Used to return the pointer to the created ByteIOContext.
  362. * In case of failure the pointed to value is set to NULL.
  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 url_fopen(ByteIOContext **s, const char *url, int flags);
  369. int url_fclose(ByteIOContext *s);
  370. URLContext *url_fileno(ByteIOContext *s);
  371. /**
  372. * Return the maximum packet size associated to packetized buffered file
  373. * handle. If the file is not packetized (stream like http or file on
  374. * disk), then 0 is returned.
  375. *
  376. * @param s buffered file handle
  377. * @return maximum packet size in bytes
  378. */
  379. int url_fget_max_packet_size(ByteIOContext *s);
  380. int url_open_buf(ByteIOContext **s, uint8_t *buf, int buf_size, int flags);
  381. /** return the written or read size */
  382. int url_close_buf(ByteIOContext *s);
  383. /**
  384. * Open a write only memory stream.
  385. *
  386. * @param s new IO context
  387. * @return zero if no error.
  388. */
  389. int url_open_dyn_buf(ByteIOContext **s);
  390. /**
  391. * Open a write only packetized memory stream with a maximum packet
  392. * size of 'max_packet_size'. The stream is stored in a memory buffer
  393. * with a big endian 4 byte header giving the packet size in bytes.
  394. *
  395. * @param s new IO context
  396. * @param max_packet_size maximum packet size (must be > 0)
  397. * @return zero if no error.
  398. */
  399. int url_open_dyn_packet_buf(ByteIOContext **s, int max_packet_size);
  400. /**
  401. * Return the written size and a pointer to the buffer. The buffer
  402. * must be freed with av_free().
  403. * @param s IO context
  404. * @param pbuffer pointer to a byte buffer
  405. * @return the length of the byte buffer
  406. */
  407. int url_close_dyn_buf(ByteIOContext *s, uint8_t **pbuffer);
  408. unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf,
  409. unsigned int len);
  410. unsigned long get_checksum(ByteIOContext *s);
  411. void init_checksum(ByteIOContext *s,
  412. unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len),
  413. unsigned long checksum);
  414. /* udp.c */
  415. int udp_set_remote_url(URLContext *h, const char *uri);
  416. int udp_get_local_port(URLContext *h);
  417. #if (LIBAVFORMAT_VERSION_MAJOR <= 52)
  418. int udp_get_file_handle(URLContext *h);
  419. #endif
  420. #endif /* AVFORMAT_AVIO_H */