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.

388 lines
13KB

  1. /*
  2. * unbuffered io for ffmpeg system
  3. * copyright (c) 2001 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifndef AVFORMAT_AVIO_H
  22. #define AVFORMAT_AVIO_H
  23. #include <stdint.h>
  24. #include "libavutil/common.h"
  25. /* unbuffered I/O */
  26. /**
  27. * URL Context.
  28. * New fields can be added to the end with minor version bumps.
  29. * Removal, reordering and changes to existing fields require a major
  30. * version bump.
  31. * sizeof(URLContext) must not be used outside libav*.
  32. */
  33. struct URLContext {
  34. #if LIBAVFORMAT_VERSION_MAJOR >= 53
  35. const AVClass *av_class; ///< information for av_log(). Set by url_open().
  36. #endif
  37. struct URLProtocol *prot;
  38. int flags;
  39. int is_streamed; /**< true if streamed (no seek possible), default = false */
  40. int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */
  41. void *priv_data;
  42. char *filename; /**< specified filename */
  43. };
  44. typedef struct URLContext URLContext;
  45. typedef struct URLPollEntry {
  46. URLContext *handle;
  47. int events;
  48. int revents;
  49. } URLPollEntry;
  50. #define URL_RDONLY 0
  51. #define URL_WRONLY 1
  52. #define URL_RDWR 2
  53. typedef int URLInterruptCB(void);
  54. int url_open_protocol (URLContext **puc, struct URLProtocol *up,
  55. const char *filename, int flags);
  56. int url_open(URLContext **h, const char *filename, int flags);
  57. int url_read(URLContext *h, unsigned char *buf, int size);
  58. int url_write(URLContext *h, unsigned char *buf, int size);
  59. int64_t url_seek(URLContext *h, int64_t pos, int whence);
  60. int url_close(URLContext *h);
  61. int url_exist(const char *filename);
  62. int64_t url_filesize(URLContext *h);
  63. /**
  64. * Return the maximum packet size associated to packetized file
  65. * handle. If the file is not packetized (stream like HTTP or file on
  66. * disk), then 0 is returned.
  67. *
  68. * @param h file handle
  69. * @return maximum packet size in bytes
  70. */
  71. int url_get_max_packet_size(URLContext *h);
  72. void url_get_filename(URLContext *h, char *buf, int buf_size);
  73. /**
  74. * The callback is called in blocking functions to test regulary if
  75. * asynchronous interruption is needed. AVERROR(EINTR) is returned
  76. * in this case by the interrupted function. 'NULL' means no interrupt
  77. * callback is given.
  78. */
  79. void url_set_interrupt_cb(URLInterruptCB *interrupt_cb);
  80. /* not implemented */
  81. int url_poll(URLPollEntry *poll_table, int n, int timeout);
  82. /**
  83. * Pause and resume playing - only meaningful if using a network streaming
  84. * protocol (e.g. MMS).
  85. * @param pause 1 for pause, 0 for resume
  86. */
  87. int av_url_read_pause(URLContext *h, int pause);
  88. /**
  89. * Seek to a given timestamp relative to some component stream.
  90. * Only meaningful if using a network streaming protocol (e.g. MMS.).
  91. * @param stream_index The stream index that the timestamp is relative to.
  92. * If stream_index is (-1) the timestamp should be in AV_TIME_BASE
  93. * units from the beginning of the presentation.
  94. * If a stream_index >= 0 is used and the protocol does not support
  95. * seeking based on component streams, the call will fail with ENOTSUP.
  96. * @param timestamp timestamp in AVStream.time_base units
  97. * or if there is no stream specified then in AV_TIME_BASE units.
  98. * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
  99. * and AVSEEK_FLAG_ANY. The protocol may silently ignore
  100. * AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
  101. * fail with ENOTSUP if used and not supported.
  102. * @return >= 0 on success
  103. * @see AVInputFormat::read_seek
  104. */
  105. int64_t av_url_read_seek(URLContext *h, int stream_index,
  106. int64_t timestamp, int flags);
  107. /**
  108. * Passing this as the "whence" parameter to a seek function causes it to
  109. * return the filesize without seeking anywhere. Supporting this is optional.
  110. * If it is not supported then the seek function will return <0.
  111. */
  112. #define AVSEEK_SIZE 0x10000
  113. typedef struct URLProtocol {
  114. const char *name;
  115. int (*url_open)(URLContext *h, const char *filename, int flags);
  116. int (*url_read)(URLContext *h, unsigned char *buf, int size);
  117. int (*url_write)(URLContext *h, unsigned char *buf, int size);
  118. int64_t (*url_seek)(URLContext *h, int64_t pos, int whence);
  119. int (*url_close)(URLContext *h);
  120. struct URLProtocol *next;
  121. int (*url_read_pause)(URLContext *h, int pause);
  122. int64_t (*url_read_seek)(URLContext *h, int stream_index,
  123. int64_t timestamp, int flags);
  124. } URLProtocol;
  125. #if LIBAVFORMAT_VERSION_MAJOR < 53
  126. extern URLProtocol *first_protocol;
  127. #endif
  128. extern URLInterruptCB *url_interrupt_cb;
  129. /**
  130. * If protocol is NULL, returns the first registered protocol,
  131. * if protocol is non-NULL, returns the next registered protocol after protocol,
  132. * or NULL if protocol is the last one.
  133. */
  134. URLProtocol *av_protocol_next(URLProtocol *p);
  135. #if LIBAVFORMAT_VERSION_MAJOR < 53
  136. /**
  137. * @deprecated Use av_register_protocol() instead.
  138. */
  139. attribute_deprecated int register_protocol(URLProtocol *protocol);
  140. #endif
  141. int av_register_protocol(URLProtocol *protocol);
  142. /**
  143. * Bytestream IO Context.
  144. * New fields can be added to the end with minor version bumps.
  145. * Removal, reordering and changes to existing fields require a major
  146. * version bump.
  147. * sizeof(ByteIOContext) must not be used outside libav*.
  148. */
  149. typedef struct {
  150. unsigned char *buffer;
  151. int buffer_size;
  152. unsigned char *buf_ptr, *buf_end;
  153. void *opaque;
  154. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
  155. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
  156. int64_t (*seek)(void *opaque, int64_t offset, int whence);
  157. int64_t pos; /**< position in the file of the current buffer */
  158. int must_flush; /**< true if the next seek should flush */
  159. int eof_reached; /**< true if eof reached */
  160. int write_flag; /**< true if open for writing */
  161. int is_streamed;
  162. int max_packet_size;
  163. unsigned long checksum;
  164. unsigned char *checksum_ptr;
  165. unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
  166. int error; ///< contains the error code or 0 if no error happened
  167. int (*read_pause)(void *opaque, int pause);
  168. int64_t (*read_seek)(void *opaque, int stream_index,
  169. int64_t timestamp, int flags);
  170. } ByteIOContext;
  171. int init_put_byte(ByteIOContext *s,
  172. unsigned char *buffer,
  173. int buffer_size,
  174. int write_flag,
  175. void *opaque,
  176. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  177. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  178. int64_t (*seek)(void *opaque, int64_t offset, int whence));
  179. ByteIOContext *av_alloc_put_byte(
  180. unsigned char *buffer,
  181. int buffer_size,
  182. int write_flag,
  183. void *opaque,
  184. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  185. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  186. int64_t (*seek)(void *opaque, int64_t offset, int whence));
  187. void put_byte(ByteIOContext *s, int b);
  188. void put_buffer(ByteIOContext *s, const unsigned char *buf, int size);
  189. void put_le64(ByteIOContext *s, uint64_t val);
  190. void put_be64(ByteIOContext *s, uint64_t val);
  191. void put_le32(ByteIOContext *s, unsigned int val);
  192. void put_be32(ByteIOContext *s, unsigned int val);
  193. void put_le24(ByteIOContext *s, unsigned int val);
  194. void put_be24(ByteIOContext *s, unsigned int val);
  195. void put_le16(ByteIOContext *s, unsigned int val);
  196. void put_be16(ByteIOContext *s, unsigned int val);
  197. void put_tag(ByteIOContext *s, const char *tag);
  198. void put_strz(ByteIOContext *s, const char *buf);
  199. /**
  200. * fseek() equivalent for ByteIOContext.
  201. * @return new position or AVERROR.
  202. */
  203. int64_t url_fseek(ByteIOContext *s, int64_t offset, int whence);
  204. /**
  205. * Skip given number of bytes forward.
  206. * @param offset number of bytes
  207. */
  208. void url_fskip(ByteIOContext *s, int64_t offset);
  209. /**
  210. * ftell() equivalent for ByteIOContext.
  211. * @return position or AVERROR.
  212. */
  213. int64_t url_ftell(ByteIOContext *s);
  214. /**
  215. * Gets the filesize.
  216. * @return filesize or AVERROR
  217. */
  218. int64_t url_fsize(ByteIOContext *s);
  219. /**
  220. * feof() equivalent for ByteIOContext.
  221. * @return non zero if and only if end of file
  222. */
  223. int url_feof(ByteIOContext *s);
  224. int url_ferror(ByteIOContext *s);
  225. int av_url_read_fpause(ByteIOContext *h, int pause);
  226. int64_t av_url_read_fseek(ByteIOContext *h, int stream_index,
  227. int64_t timestamp, int flags);
  228. #define URL_EOF (-1)
  229. /** @note return URL_EOF (-1) if EOF */
  230. int url_fgetc(ByteIOContext *s);
  231. /** @warning currently size is limited */
  232. #ifdef __GNUC__
  233. int url_fprintf(ByteIOContext *s, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3)));
  234. #else
  235. int url_fprintf(ByteIOContext *s, const char *fmt, ...);
  236. #endif
  237. /** @note unlike fgets, the EOL character is not returned and a whole
  238. line is parsed. return NULL if first char read was EOF */
  239. char *url_fgets(ByteIOContext *s, char *buf, int buf_size);
  240. void put_flush_packet(ByteIOContext *s);
  241. /**
  242. * Reads size bytes from ByteIOContext into buf.
  243. * @returns number of bytes read or AVERROR
  244. */
  245. int get_buffer(ByteIOContext *s, unsigned char *buf, int size);
  246. /**
  247. * Reads size bytes from ByteIOContext into buf.
  248. * This reads at most 1 packet. If that is not enough fewer bytes will be
  249. * returned.
  250. * @returns number of bytes read or AVERROR
  251. */
  252. int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size);
  253. /** @note return 0 if EOF, so you cannot use it if EOF handling is
  254. necessary */
  255. int get_byte(ByteIOContext *s);
  256. unsigned int get_le24(ByteIOContext *s);
  257. unsigned int get_le32(ByteIOContext *s);
  258. uint64_t get_le64(ByteIOContext *s);
  259. unsigned int get_le16(ByteIOContext *s);
  260. char *get_strz(ByteIOContext *s, char *buf, int maxlen);
  261. unsigned int get_be16(ByteIOContext *s);
  262. unsigned int get_be24(ByteIOContext *s);
  263. unsigned int get_be32(ByteIOContext *s);
  264. uint64_t get_be64(ByteIOContext *s);
  265. uint64_t ff_get_v(ByteIOContext *bc);
  266. static inline int url_is_streamed(ByteIOContext *s)
  267. {
  268. return s->is_streamed;
  269. }
  270. /** @note when opened as read/write, the buffers are only used for
  271. writing */
  272. int url_fdopen(ByteIOContext **s, URLContext *h);
  273. /** @warning must be called before any I/O */
  274. int url_setbufsize(ByteIOContext *s, int buf_size);
  275. /** Reset the buffer for reading or writing.
  276. * @note Will drop any data currently in the buffer without transmitting it.
  277. * @param flags URL_RDONLY to set up the buffer for reading, or URL_WRONLY
  278. * to set up the buffer for writing. */
  279. int url_resetbuf(ByteIOContext *s, int flags);
  280. /** @note when opened as read/write, the buffers are only used for
  281. writing */
  282. int url_fopen(ByteIOContext **s, const char *filename, int flags);
  283. int url_fclose(ByteIOContext *s);
  284. URLContext *url_fileno(ByteIOContext *s);
  285. /**
  286. * Return the maximum packet size associated to packetized buffered file
  287. * handle. If the file is not packetized (stream like http or file on
  288. * disk), then 0 is returned.
  289. *
  290. * @param s buffered file handle
  291. * @return maximum packet size in bytes
  292. */
  293. int url_fget_max_packet_size(ByteIOContext *s);
  294. int url_open_buf(ByteIOContext **s, uint8_t *buf, int buf_size, int flags);
  295. /** return the written or read size */
  296. int url_close_buf(ByteIOContext *s);
  297. /**
  298. * Open a write only memory stream.
  299. *
  300. * @param s new IO context
  301. * @return zero if no error.
  302. */
  303. int url_open_dyn_buf(ByteIOContext **s);
  304. /**
  305. * Open a write only packetized memory stream with a maximum packet
  306. * size of 'max_packet_size'. The stream is stored in a memory buffer
  307. * with a big endian 4 byte header giving the packet size in bytes.
  308. *
  309. * @param s new IO context
  310. * @param max_packet_size maximum packet size (must be > 0)
  311. * @return zero if no error.
  312. */
  313. int url_open_dyn_packet_buf(ByteIOContext **s, int max_packet_size);
  314. /**
  315. * Return the written size and a pointer to the buffer. The buffer
  316. * must be freed with av_free().
  317. * @param s IO context
  318. * @param pbuffer pointer to a byte buffer
  319. * @return the length of the byte buffer
  320. */
  321. int url_close_dyn_buf(ByteIOContext *s, uint8_t **pbuffer);
  322. unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf,
  323. unsigned int len);
  324. unsigned long get_checksum(ByteIOContext *s);
  325. void init_checksum(ByteIOContext *s,
  326. unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len),
  327. unsigned long checksum);
  328. /* udp.c */
  329. int udp_set_remote_url(URLContext *h, const char *uri);
  330. int udp_get_local_port(URLContext *h);
  331. int udp_get_file_handle(URLContext *h);
  332. #endif /* AVFORMAT_AVIO_H */