Mercurial > libavformat.hg
changeset 2582:1f9d02d072a7 libavformat
Documentation fix for url_f(d)open()
Patch by Bj«Órn Axelsson bjorn axelsson intinor se
author | benoit |
---|---|
date | Fri, 28 Sep 2007 15:12:26 +0000 |
parents | d71f084d9835 |
children | 26a6da30d5f1 |
files | avio.h |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/avio.h Thu Sep 27 19:18:07 2007 +0000 +++ b/avio.h Fri Sep 28 15:12:26 2007 +0000 @@ -197,13 +197,15 @@ 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);