summaryrefslogtreecommitdiff
path: root/libavformat/id3v1.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-03-25 19:46:28 +0100
committerRonald S. Bultje <rsbultje@gmail.com>2011-03-28 21:15:50 -0700
commit31f00274f8cda7141a17a7b33820e652d89a9de6 (patch)
treef78d4c6c5a4eaa7f1d2569ce9adf6a7d506cf4a3 /libavformat/id3v1.c
parent13eadbaca4768a2b49b8403178c818bf8d75e0af (diff)
id3v1: change filesize to int64_t.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/id3v1.c')
-rw-r--r--libavformat/id3v1.c4
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 */