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.

314 lines
11KB

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