diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-04 19:57:36 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-03-08 02:09:21 +0100 |
commit | db44ea960d9b692e9683fffb13656a47d4166ac3 (patch) | |
tree | 7d0eefbcd46dad56be7393987b60eeb07a4fc46a /libavformat/tty.c | |
parent | 1447dc59de9f179a99a91ca9a9d210d918b90486 (diff) | |
download | ffmpeg-db44ea960d9b692e9683fffb13656a47d4166ac3.tar.gz |
avio: avio_ prefix for url_fsize
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit 76aa876e69cf78a40821e66dec0a1006e4eb23ec)
Diffstat (limited to 'libavformat/tty.c')
-rw-r--r-- | libavformat/tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/tty.c b/libavformat/tty.c index dabbe972cb..71c00e7e0a 100644 --- a/libavformat/tty.c +++ b/libavformat/tty.c @@ -89,7 +89,7 @@ static int read_header(AVFormatContext *avctx, s->chars_per_frame = FFMAX(av_q2d(st->time_base) * (ap->sample_rate ? ap->sample_rate : LINE_RATE), 1); if (!url_is_streamed(avctx->pb)) { - s->fsize = url_fsize(avctx->pb); + s->fsize = avio_size(avctx->pb); st->duration = (s->fsize + s->chars_per_frame - 1) / s->chars_per_frame; if (ff_sauce_read(avctx, &s->fsize, 0, 0) < 0) |