diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-31 17:46:00 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-04 17:45:20 +0200 |
commit | 32a97d4630e8e742cba0344054842ed059dda807 (patch) | |
tree | 2825088b87b7a7ad4a09d9770efe387ebd395382 /libavformat/concat.c | |
parent | e52a9145c8bf0748ae970e210e528ff56508964c (diff) | |
download | ffmpeg-32a97d4630e8e742cba0344054842ed059dda807.tar.gz |
avio: make url_filesize() internal.
Diffstat (limited to 'libavformat/concat.c')
-rw-r--r-- | libavformat/concat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/concat.c b/libavformat/concat.c index 40317de69e..dbacc6987a 100644 --- a/libavformat/concat.c +++ b/libavformat/concat.c @@ -105,7 +105,7 @@ static av_cold int concat_open(URLContext *h, const char *uri, int flags) break; /* creating size */ - if ((size = url_filesize(uc)) < 0) { + if ((size = ffurl_size(uc)) < 0) { ffurl_close(uc); err = AVERROR(ENOSYS); break; |