diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-31 17:30:31 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-04 17:45:20 +0200 |
commit | 58a48c6511f1aded04885933fdb2449251f0ec64 (patch) | |
tree | 599d0a871d9a0f08e76dc57ca5160772899ff49d /libavformat/avio.h | |
parent | 230a4686790ce97f9016b4e617f6bb4078560a3f (diff) | |
download | ffmpeg-58a48c6511f1aded04885933fdb2449251f0ec64.tar.gz |
avio: make url_seek() internal.
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index fe9dc36c24..7f53fdddc6 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -108,25 +108,10 @@ attribute_deprecated int url_open(URLContext **h, const char *url, int flags); attribute_deprecated int url_read(URLContext *h, unsigned char *buf, int size); attribute_deprecated int url_read_complete(URLContext *h, unsigned char *buf, int size); attribute_deprecated int url_write(URLContext *h, const unsigned char *buf, int size); +attribute_deprecated int64_t url_seek(URLContext *h, int64_t pos, int whence); #endif /** - * Change 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); - -/** * Close the resource accessed by the URLContext h, and free the * memory used by it. * |