From 80c6e238b0f42a0b07fbc195564a50032b3608ba Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 4 Apr 2011 20:15:44 +0200 Subject: avio: avio_ prefix for url_set_interrupt_cb. --- libavformat/avio.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'libavformat/avio.c') diff --git a/libavformat/avio.c b/libavformat/avio.c index 8c53e5cd36..bacf9f35cd 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -216,6 +216,10 @@ void url_get_filename(URLContext *h, char *buf, int buf_size) { av_strlcpy(buf, h->filename, buf_size); } +void url_set_interrupt_cb(URLInterruptCB *interrupt_cb) +{ + avio_set_interrupt_cb(interrupt_cb); +} #endif #define URL_SCHEME_CHARS \ @@ -381,7 +385,7 @@ static int default_interrupt_cb(void) return 0; } -void url_set_interrupt_cb(URLInterruptCB *interrupt_cb) +void avio_set_interrupt_cb(URLInterruptCB *interrupt_cb) { if (!interrupt_cb) interrupt_cb = default_interrupt_cb; -- cgit v1.2.3