MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / ffurl_write

Function ffurl_write

libavformat/url.h:202–205  ·  view source on GitHub ↗

* 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 */

Source from the content-addressed store, hash-verified

200 * corresponding to an AVERROR code in case of failure
201 */
202static inline int ffurl_write(URLContext *h, const uint8_t *buf, int size)
203{
204 return ffurl_write2(h, buf, size);
205}
206
207int64_t ffurl_seek2(void *urlcontext, int64_t pos, int whence);
208/**

Callers 15

tls_write_callbackFunction · 0.85
tls_write_cbFunction · 0.85
gopher_writeFunction · 0.85
send_command_packetFunction · 0.85
http_write_replyFunction · 0.85
http_connectFunction · 0.85
http_writeFunction · 0.85
http_shutdownFunction · 0.85
http_proxy_openFunction · 0.85
http_proxy_writeFunction · 0.85

Calls 1

ffurl_write2Function · 0.85

Tested by

no test coverage detected