diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-04 20:15:44 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-07 18:11:24 +0200 |
commit | 80c6e238b0f42a0b07fbc195564a50032b3608ba (patch) | |
tree | c2ac1db4b41f8d8c71ef5ea5804cc7f0287ab99c /libavformat/avio.h | |
parent | f87b1b373a0df55080c1e6a5874f9a0a75c6fee8 (diff) | |
download | ffmpeg-80c6e238b0f42a0b07fbc195564a50032b3608ba.tar.gz |
avio: avio_ prefix for url_set_interrupt_cb.
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 4035e24571..3a4b64e44d 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -117,6 +117,7 @@ attribute_deprecated void url_get_filename(URLContext *h, char *buf, int buf_siz attribute_deprecated int av_url_read_pause(URLContext *h, int pause); attribute_deprecated int64_t av_url_read_seek(URLContext *h, int stream_index, int64_t timestamp, int flags); +attribute_deprecated void url_set_interrupt_cb(URLInterruptCB *interrupt_cb); #endif /** @@ -131,7 +132,7 @@ int url_exist(const char *url); * in this case by the interrupted function. 'NULL' means no interrupt * callback is given. */ -void url_set_interrupt_cb(URLInterruptCB *interrupt_cb); +void avio_set_interrupt_cb(URLInterruptCB *interrupt_cb); #if FF_API_OLD_AVIO /* not implemented */ |