From 6b4aa5dac8f41aa452d0ce9a1bede9e59a303060 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 28 Feb 2011 14:57:54 +0100 Subject: avio: avio_ prefix for url_fseek Signed-off-by: Ronald S. Bultje --- libavformat/libnut.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/libnut.c') diff --git a/libavformat/libnut.c b/libavformat/libnut.c index af94d8c30e..467ca9c4a5 100644 --- a/libavformat/libnut.c +++ b/libavformat/libnut.c @@ -182,7 +182,7 @@ static off_t av_seek(void * h, long long pos, int whence) { pos = url_fsize(bc) + pos; whence = SEEK_SET; } - return url_fseek(bc, pos, whence); + return avio_seek(bc, pos, whence); } static int nut_read_header(AVFormatContext * avf, AVFormatParameters * ap) { -- cgit v1.2.3