From 31f00274f8cda7141a17a7b33820e652d89a9de6 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Fri, 25 Mar 2011 19:46:28 +0100 Subject: id3v1: change filesize to int64_t. Signed-off-by: Ronald S. Bultje --- libavformat/id3v1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/id3v1.c') diff --git a/libavformat/id3v1.c b/libavformat/id3v1.c index 23cacf78c5..1f1df9cd02 100644 --- a/libavformat/id3v1.c +++ b/libavformat/id3v1.c @@ -225,9 +225,9 @@ static int parse_tag(AVFormatContext *s, const uint8_t *buf) void ff_id3v1_read(AVFormatContext *s) { - int ret, filesize; + int ret; uint8_t buf[ID3v1_TAG_SIZE]; - int64_t position = avio_tell(s->pb); + int64_t filesize, position = avio_tell(s->pb); if (!url_is_streamed(s->pb)) { /* XXX: change that */ -- cgit v1.2.3