summaryrefslogtreecommitdiff
path: root/libavformat/avio.h
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2009-06-04 06:25:53 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2009-06-04 06:25:53 +0000
commit0e848977cedb7345398f583d5cca5e81a4d9e45a (patch)
tree9b64d0a0c45e93d8f3dfbdc2e64b07efa6abe15c /libavformat/avio.h
parent989b7181acbaa5ed3d731dc479a204874fee9141 (diff)
Move function for reading whole specified amount of data from RTSP
demuxer into more common place. Originally committed as revision 19087 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r--libavformat/avio.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h
index a814759bec..d44e300497 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -69,6 +69,7 @@ int url_open_protocol (URLContext **puc, struct URLProtocol *up,
const char *filename, int flags);
int url_open(URLContext **h, const char *filename, int flags);
int url_read(URLContext *h, unsigned char *buf, int size);
+int url_read_complete(URLContext *h, unsigned char *buf, int size);
int url_write(URLContext *h, unsigned char *buf, int size);
int64_t url_seek(URLContext *h, int64_t pos, int whence);
int url_close(URLContext *h);