* Write size bytes from buf to the resource accessed by h. * * @return the number of bytes actually written, or a negative value * corresponding to an AVERROR code in case of failure */
| 200 | * corresponding to an AVERROR code in case of failure |
| 201 | */ |
| 202 | static inline int ffurl_write(URLContext *h, const uint8_t *buf, int size) |
| 203 | { |
| 204 | return ffurl_write2(h, buf, size); |
| 205 | } |
| 206 | |
| 207 | int64_t ffurl_seek2(void *urlcontext, int64_t pos, int whence); |
| 208 | /** |
no test coverage detected