mirror of https://git.ffmpeg.org/ffmpeg.git
Document url_write().
Originally committed as revision 25613 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
05c018078c
commit
267ff3aed1
|
@ -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.
|
* certain there was either an error or the end of file was reached.
|
||||||
*/
|
*/
|
||||||
int url_read_complete(URLContext *h, unsigned char *buf, int size);
|
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);
|
int url_write(URLContext *h, const unsigned char *buf, int size);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue