avio: avio_ prefix for url_fsize

Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
Anton Khirnov
2011-03-04 19:57:36 +01:00
committed by Ronald S. Bultje
parent e51975392d
commit 76aa876e69
25 changed files with 37 additions and 32 deletions

View File

@ -1350,8 +1350,8 @@ static void print_report(AVFormatContext **output_files,
oc = output_files[0];
total_size = url_fsize(oc->pb);
if(total_size<0) // FIXME improve url_fsize() so it works with non seekable output too
total_size = avio_size(oc->pb);
if(total_size<0) // FIXME improve avio_size() so it works with non seekable output too
total_size= avio_tell(oc->pb);
buf[0] = '\0';