Commit 267ff3ae authored by Stefano Sabatini's avatar Stefano Sabatini

Document url_write().

Originally committed as revision 25613 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 05c01807
......@@ -132,6 +132,13 @@ int url_read(URLContext *h, unsigned char *buf, int size);
* certain there was either an error or the end of file was reached.
*/
int url_read_complete(URLContext *h, unsigned char *buf, int size);
/**
* 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
*/
int url_write(URLContext *h, const unsigned char *buf, int size);
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment