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.

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