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.

135 lines
4.6KB

  1. /*
  2. *
  3. * This file is part of Libav.
  4. *
  5. * Libav is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * Libav is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with Libav; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. /**
  20. * @file
  21. * unbuffered private I/O API
  22. */
  23. #ifndef AVFORMAT_URL_H
  24. #define AVFORMAT_URL_H
  25. #include "avio.h"
  26. #include "libavformat/version.h"
  27. #if !FF_API_OLD_AVIO
  28. #define URL_PROTOCOL_FLAG_NESTED_SCHEME 1 /*< The protocol name can be the first part of a nested protocol scheme */
  29. #endif
  30. /**
  31. * Create a URLContext for accessing to the resource indicated by
  32. * url, but do not initiate the connection yet.
  33. *
  34. * @param puc pointer to the location where, in case of success, the
  35. * function puts the pointer to the created URLContext
  36. * @param flags flags which control how the resource indicated by url
  37. * is to be opened
  38. * @return 0 in case of success, a negative value corresponding to an
  39. * AVERROR code in case of failure
  40. */
  41. int ffurl_alloc(URLContext **h, const char *url, int flags);
  42. /**
  43. * Connect an URLContext that has been allocated by ffurl_alloc
  44. */
  45. int ffurl_connect(URLContext *h);
  46. /**
  47. * Create an URLContext for accessing to the resource indicated by
  48. * url, and open it.
  49. *
  50. * @param puc pointer to the location where, in case of success, the
  51. * function puts the pointer to the created URLContext
  52. * @param flags flags which control how the resource indicated by url
  53. * is to be opened
  54. * @return 0 in case of success, a negative value corresponding to an
  55. * AVERROR code in case of failure
  56. */
  57. int ffurl_open(URLContext **h, const char *url, int flags);
  58. /**
  59. * Read up to size bytes from the resource accessed by h, and store
  60. * the read bytes in buf.
  61. *
  62. * @return The number of bytes actually read, or a negative value
  63. * corresponding to an AVERROR code in case of error. A value of zero
  64. * indicates that it is not possible to read more from the accessed
  65. * resource (except if the value of the size argument is also zero).
  66. */
  67. int ffurl_read(URLContext *h, unsigned char *buf, int size);
  68. /**
  69. * Read as many bytes as possible (up to size), calling the
  70. * read function multiple times if necessary.
  71. * This makes special short-read handling in applications
  72. * unnecessary, if the return value is < size then it is
  73. * certain there was either an error or the end of file was reached.
  74. */
  75. int ffurl_read_complete(URLContext *h, unsigned char *buf, int size);
  76. /**
  77. * Write size bytes from buf to the resource accessed by h.
  78. *
  79. * @return the number of bytes actually written, or a negative value
  80. * corresponding to an AVERROR code in case of failure
  81. */
  82. int ffurl_write(URLContext *h, const unsigned char *buf, int size);
  83. /**
  84. * Change the position that will be used by the next read/write
  85. * operation on the resource accessed by h.
  86. *
  87. * @param pos specifies the new position to set
  88. * @param whence specifies how pos should be interpreted, it must be
  89. * one of SEEK_SET (seek from the beginning), SEEK_CUR (seek from the
  90. * current position), SEEK_END (seek from the end), or AVSEEK_SIZE
  91. * (return the filesize of the requested resource, pos is ignored).
  92. * @return a negative value corresponding to an AVERROR code in case
  93. * of failure, or the resulting file position, measured in bytes from
  94. * the beginning of the file. You can use this feature together with
  95. * SEEK_CUR to read the current file position.
  96. */
  97. int64_t ffurl_seek(URLContext *h, int64_t pos, int whence);
  98. /**
  99. * Close the resource accessed by the URLContext h, and free the
  100. * memory used by it.
  101. *
  102. * @return a negative value if an error condition occurred, 0
  103. * otherwise
  104. */
  105. int ffurl_close(URLContext *h);
  106. /**
  107. * Return the filesize of the resource accessed by h, AVERROR(ENOSYS)
  108. * if the operation is not supported by h, or another negative value
  109. * corresponding to an AVERROR error code in case of failure.
  110. */
  111. int64_t ffurl_size(URLContext *h);
  112. /**
  113. * Return the file descriptor associated with this URL. For RTP, this
  114. * will return only the RTP file descriptor, not the RTCP file descriptor.
  115. *
  116. * @return the file descriptor associated with this URL, or <0 on error.
  117. */
  118. int ffurl_get_file_handle(URLContext *h);
  119. #endif //AVFORMAT_URL_H