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.

416 lines
14KB

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