diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-04 19:57:36 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-03-07 11:03:39 -0500 |
commit | 76aa876e69cf78a40821e66dec0a1006e4eb23ec (patch) | |
tree | 48122de51aeb99266e25f78bc715296e7fe85d59 /libavformat/img2.c | |
parent | e51975392d85e72801193123945a35fb5221248f (diff) | |
download | ffmpeg-76aa876e69cf78a40821e66dec0a1006e4eb23ec.tar.gz |
avio: avio_ prefix for url_fsize
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/img2.c')
-rw-r--r-- | libavformat/img2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c index a9a4a49023..c909078ecf 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -276,7 +276,7 @@ static int read_packet(AVFormatContext *s1, AVPacket *pkt) av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",filename); return AVERROR(EIO); } - size[i]= url_fsize(f[i]); + size[i]= avio_size(f[i]); if(codec->codec_id != CODEC_ID_RAWVIDEO) break; |