diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-03-25 19:46:28 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-03-28 21:15:50 -0700 |
commit | 31f00274f8cda7141a17a7b33820e652d89a9de6 (patch) | |
tree | f78d4c6c5a4eaa7f1d2569ce9adf6a7d506cf4a3 | |
parent | 13eadbaca4768a2b49b8403178c818bf8d75e0af (diff) | |
download | ffmpeg-31f00274f8cda7141a17a7b33820e652d89a9de6.tar.gz |
id3v1: change filesize to int64_t.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-rw-r--r-- | libavformat/id3v1.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 */ |