diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-06-04 06:25:53 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-06-04 06:25:53 +0000 |
commit | 0e848977cedb7345398f583d5cca5e81a4d9e45a (patch) | |
tree | 9b64d0a0c45e93d8f3dfbdc2e64b07efa6abe15c /libavformat/avio.h | |
parent | 989b7181acbaa5ed3d731dc479a204874fee9141 (diff) | |
download | ffmpeg-0e848977cedb7345398f583d5cca5e81a4d9e45a.tar.gz |
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.h | 1 |
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); |