diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-28 10:31:22 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-28 10:31:22 +0000 |
commit | 9bee24595432f98411a891affd1f1ca3fb254c9f (patch) | |
tree | 4efccfb1040b140effe814e84f1358b713ad544d | |
parent | 4bfe67da24a4e0e5c0d106d05cc26a2a202d5523 (diff) | |
download | ffmpeg-9bee24595432f98411a891affd1f1ca3fb254c9f.tar.gz |
Document url_seek().
Originally committed as revision 22709 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avio.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 8145f92861..fec65fd71c 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -113,6 +113,21 @@ 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); + +/** + * Changes the position that will be used by the next read/write + * operation on the resource accessed by h. + * + * @param pos specifies the new position to set + * @param whence specifies how pos should be interpreted, it must be + * one of SEEK_SET (seek from the beginning), SEEK_CUR (seek from the + * current position), SEEK_END (seek from the end), or AVSEEK_SIZE + * (return the filesize of the requested resource, pos is ignored). + * @return a negative value corresponding to an AVERROR code in case + * of failure, or the resulting file position, measured in bytes from + * the beginning of the file. You can use this feature together with + * SEEK_CUR to read the current file position. + */ int64_t url_seek(URLContext *h, int64_t pos, int whence); /** |