avio.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  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 FFMPEG_AVIO_H
  22. #define FFMPEG_AVIO_H
  23. #include <stdint.h>
  24. /* output byte stream handling */
  25. typedef int64_t offset_t;
  26. /* unbuffered I/O */
  27. /**
  28. * URL Context.
  29. * New fields can be added to the end with minor version bumps.
  30. * Removal, reordering and changes to existing fields require a major
  31. * version bump.
  32. * sizeof(URLContext) must not be used outside libav*.
  33. */
  34. struct URLContext {
  35. struct URLProtocol *prot;
  36. int flags;
  37. int is_streamed; /**< true if streamed (no seek possible), default = false */
  38. int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */
  39. void *priv_data;
  40. char *filename; /**< specified filename */
  41. };
  42. typedef struct URLContext URLContext;
  43. typedef struct URLPollEntry {
  44. URLContext *handle;
  45. int events;
  46. int revents;
  47. } URLPollEntry;
  48. #define URL_RDONLY 0
  49. #define URL_WRONLY 1
  50. #define URL_RDWR 2
  51. typedef int URLInterruptCB(void);
  52. int url_open(URLContext **h, const char *filename, int flags);
  53. int url_read(URLContext *h, unsigned char *buf, int size);
  54. int url_write(URLContext *h, unsigned char *buf, int size);
  55. offset_t url_seek(URLContext *h, offset_t pos, int whence);
  56. int url_close(URLContext *h);
  57. int url_exist(const char *filename);
  58. offset_t url_filesize(URLContext *h);
  59. /**
  60. * Return the maximum packet size associated to packetized file
  61. * handle. If the file is not packetized (stream like HTTP or file on
  62. * disk), then 0 is returned.
  63. *
  64. * @param h file handle
  65. * @return maximum packet size in bytes
  66. */
  67. int url_get_max_packet_size(URLContext *h);
  68. void url_get_filename(URLContext *h, char *buf, int buf_size);
  69. /**
  70. * The callback is called in blocking functions to test regulary if
  71. * asynchronous interruption is needed. AVERROR(EINTR) is returned
  72. * in this case by the interrupted function. 'NULL' means no interrupt
  73. * callback is given.
  74. */
  75. void url_set_interrupt_cb(URLInterruptCB *interrupt_cb);
  76. /* not implemented */
  77. int url_poll(URLPollEntry *poll_table, int n, int timeout);
  78. /**
  79. * Pause and resume playing - only meaningful if using a network streaming
  80. * protocol (e.g. MMS).
  81. * @param pause 1 for pause, 0 for resume
  82. */
  83. int av_url_read_pause(URLContext *h, int pause);
  84. /**
  85. * Seek to a given timestamp relative to some component stream.
  86. * Only meaningful if using a network streaming protocol (e.g. MMS.).
  87. * @param stream_index The stream index that the timestamp is relative to.
  88. * If stream_index is (-1) the timestamp should be in AV_TIME_BASE
  89. * units from the beginning of the presentation.
  90. * If a stream_index >= 0 is used and the protocol does not support
  91. * seeking based on component streams, the call will fail with ENOTSUP.
  92. * @param timestamp timestamp in AVStream.time_base units
  93. * or if there is no stream specified then in AV_TIME_BASE units.
  94. * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
  95. * and AVSEEK_FLAG_ANY. The protocol may silently ignore
  96. * AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
  97. * fail with ENOTSUP if used and not supported.
  98. * @return >= 0 on success
  99. * @see AVInputFormat::read_seek
  100. */
  101. offset_t av_url_read_seek(URLContext *h,
  102. int stream_index, int64_t timestamp, int flags);
  103. /**
  104. * Passing this as the "whence" parameter to a seek function causes it to
  105. * return the filesize without seeking anywhere. Supporting this is optional.
  106. * If it is not supported then the seek function will return <0.
  107. */
  108. #define AVSEEK_SIZE 0x10000
  109. typedef struct URLProtocol {
  110. const char *name;
  111. int (*url_open)(URLContext *h, const char *filename, int flags);
  112. int (*url_read)(URLContext *h, unsigned char *buf, int size);
  113. int (*url_write)(URLContext *h, unsigned char *buf, int size);
  114. offset_t (*url_seek)(URLContext *h, offset_t pos, int whence);
  115. int (*url_close)(URLContext *h);
  116. struct URLProtocol *next;
  117. int (*url_read_pause)(URLContext *h, int pause);
  118. offset_t (*url_read_seek)(URLContext *h,
  119. int stream_index, int64_t timestamp, int flags);
  120. } URLProtocol;
  121. extern URLProtocol *first_protocol;
  122. extern URLInterruptCB *url_interrupt_cb;
  123. URLProtocol *av_protocol_next(URLProtocol *p);
  124. int register_protocol(URLProtocol *protocol);
  125. /**
  126. * Bytestream IO Context.
  127. * New fields can be added to the end with minor version bumps.
  128. * Removal, reordering and changes to existing fields require a major
  129. * version bump.
  130. * sizeof(ByteIOContext) must not be used outside libav*.
  131. */
  132. typedef struct {
  133. unsigned char *buffer;
  134. int buffer_size;
  135. unsigned char *buf_ptr, *buf_end;
  136. void *opaque;
  137. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
  138. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
  139. offset_t (*seek)(void *opaque, offset_t offset, int whence);
  140. offset_t pos; /**< position in the file of the current buffer */
  141. int must_flush; /**< true if the next seek should flush */
  142. int eof_reached; /**< true if eof reached */
  143. int write_flag; /**< true if open for writing */
  144. int is_streamed;
  145. int max_packet_size;
  146. unsigned long checksum;
  147. unsigned char *checksum_ptr;
  148. unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
  149. int error; ///< contains the error code or 0 if no error happened
  150. int (*read_pause)(void *opaque, int pause);
  151. offset_t (*read_seek)(void *opaque,
  152. int stream_index, int64_t timestamp, int flags);
  153. } ByteIOContext;
  154. int init_put_byte(ByteIOContext *s,
  155. unsigned char *buffer,
  156. int buffer_size,
  157. int write_flag,
  158. void *opaque,
  159. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  160. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  161. offset_t (*seek)(void *opaque, offset_t offset, int whence));
  162. ByteIOContext *av_alloc_put_byte(
  163. unsigned char *buffer,
  164. int buffer_size,
  165. int write_flag,
  166. void *opaque,
  167. int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
  168. int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
  169. offset_t (*seek)(void *opaque, offset_t offset, int whence));
  170. void put_byte(ByteIOContext *s, int b);
  171. void put_buffer(ByteIOContext *s, const unsigned char *buf, int size);
  172. void put_le64(ByteIOContext *s, uint64_t val);
  173. void put_be64(ByteIOContext *s, uint64_t val);
  174. void put_le32(ByteIOContext *s, unsigned int val);
  175. void put_be32(ByteIOContext *s, unsigned int val);
  176. void put_le24(ByteIOContext *s, unsigned int val);
  177. void put_be24(ByteIOContext *s, unsigned int val);
  178. void put_le16(ByteIOContext *s, unsigned int val);
  179. void put_be16(ByteIOContext *s, unsigned int val);
  180. void put_tag(ByteIOContext *s, const char *tag);
  181. void put_strz(ByteIOContext *s, const char *buf);
  182. offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence);
  183. void url_fskip(ByteIOContext *s, offset_t offset);
  184. offset_t url_ftell(ByteIOContext *s);
  185. offset_t url_fsize(ByteIOContext *s);
  186. int url_feof(ByteIOContext *s);
  187. int url_ferror(ByteIOContext *s);
  188. int av_url_read_fpause(ByteIOContext *h, int pause);
  189. offset_t av_url_read_fseek(ByteIOContext *h,
  190. int stream_index, int64_t timestamp, int flags);
  191. #define URL_EOF (-1)
  192. /** @note return URL_EOF (-1) if EOF */
  193. int url_fgetc(ByteIOContext *s);
  194. /** @warning currently size is limited */
  195. #ifdef __GNUC__
  196. int url_fprintf(ByteIOContext *s, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3)));
  197. #else
  198. int url_fprintf(ByteIOContext *s, const char *fmt, ...);
  199. #endif
  200. /** @note unlike fgets, the EOL character is not returned and a whole
  201. line is parsed. return NULL if first char read was EOF */
  202. char *url_fgets(ByteIOContext *s, char *buf, int buf_size);
  203. void put_flush_packet(ByteIOContext *s);
  204. int get_buffer(ByteIOContext *s, unsigned char *buf, int size);
  205. int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size);
  206. /** @note return 0 if EOF, so you cannot use it if EOF handling is
  207. necessary */
  208. int get_byte(ByteIOContext *s);
  209. unsigned int get_le24(ByteIOContext *s);
  210. unsigned int get_le32(ByteIOContext *s);
  211. uint64_t get_le64(ByteIOContext *s);
  212. unsigned int get_le16(ByteIOContext *s);
  213. char *get_strz(ByteIOContext *s, char *buf, int maxlen);
  214. unsigned int get_be16(ByteIOContext *s);
  215. unsigned int get_be24(ByteIOContext *s);
  216. unsigned int get_be32(ByteIOContext *s);
  217. uint64_t get_be64(ByteIOContext *s);
  218. uint64_t ff_get_v(ByteIOContext *bc);
  219. static inline int url_is_streamed(ByteIOContext *s)
  220. {
  221. return s->is_streamed;
  222. }
  223. /** @note when opened as read/write, the buffers are only used for
  224. writing */
  225. int url_fdopen(ByteIOContext **s, URLContext *h);
  226. /** @warning must be called before any I/O */
  227. int url_setbufsize(ByteIOContext *s, int buf_size);
  228. /** Reset the buffer for reading or writing.
  229. * @note Will drop any data currently in the buffer without transmitting it.
  230. * @param flags URL_RDONLY to set up the buffer for reading, or URL_WRONLY
  231. * to set up the buffer for writing. */
  232. int url_resetbuf(ByteIOContext *s, int flags);
  233. /** @note when opened as read/write, the buffers are only used for
  234. writing */
  235. int url_fopen(ByteIOContext **s, const char *filename, int flags);
  236. int url_fclose(ByteIOContext *s);
  237. URLContext *url_fileno(ByteIOContext *s);
  238. /**
  239. * Return the maximum packet size associated to packetized buffered file
  240. * handle. If the file is not packetized (stream like http or file on
  241. * disk), then 0 is returned.
  242. *
  243. * @param s buffered file handle
  244. * @return maximum packet size in bytes
  245. */
  246. int url_fget_max_packet_size(ByteIOContext *s);
  247. int url_open_buf(ByteIOContext **s, uint8_t *buf, int buf_size, int flags);
  248. /** return the written or read size */
  249. int url_close_buf(ByteIOContext *s);
  250. /**
  251. * Open a write only memory stream.
  252. *
  253. * @param s new IO context
  254. * @return zero if no error.
  255. */
  256. int url_open_dyn_buf(ByteIOContext **s);
  257. /**
  258. * Open a write only packetized memory stream with a maximum packet
  259. * size of 'max_packet_size'. The stream is stored in a memory buffer
  260. * with a big endian 4 byte header giving the packet size in bytes.
  261. *
  262. * @param s new IO context
  263. * @param max_packet_size maximum packet size (must be > 0)
  264. * @return zero if no error.
  265. */
  266. int url_open_dyn_packet_buf(ByteIOContext **s, int max_packet_size);
  267. /**
  268. * Return the written size and a pointer to the buffer. The buffer
  269. * must be freed with av_free().
  270. * @param s IO context
  271. * @param pbuffer pointer to a byte buffer
  272. * @return the length of the byte buffer
  273. */
  274. int url_close_dyn_buf(ByteIOContext *s, uint8_t **pbuffer);
  275. unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len);
  276. unsigned long get_checksum(ByteIOContext *s);
  277. void init_checksum(ByteIOContext *s, unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len), unsigned long checksum);
  278. /* udp.c */
  279. int udp_set_remote_url(URLContext *h, const char *uri);
  280. int udp_get_local_port(URLContext *h);
  281. int udp_get_file_handle(URLContext *h);
  282. #endif /* FFMPEG_AVIO_H */