Commit d29c6dc2 authored by benoit's avatar benoit

Documentation fix for url_f(d)open()

Patch by Björn Axelsson bjorn axelsson intinor se


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10608 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d2127440
......@@ -197,13 +197,15 @@ static inline int url_is_streamed(ByteIOContext *s)
return s->is_streamed;
}
/** @note when opened as read/write, the buffers are only used for
writing */
int url_fdopen(ByteIOContext *s, URLContext *h);
/** @warning must be called before any I/O */
int url_setbufsize(ByteIOContext *s, int buf_size);
/** @note when opened as read/write, the buffers are only used for
reading */
writing */
int url_fopen(ByteIOContext *s, const char *filename, int flags);
int url_fclose(ByteIOContext *s);
URLContext *url_fileno(ByteIOContext *s);
......
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