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.

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