Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-03-08 01:15:32 +0300
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-03-08 01:32:26 +0300
commit2a8175ff9cb7988333b8c3a8a9fec1fa9b60b719 (patch)
tree546da1e10a1895f136c9ac202f337ac0368654e9 /libavformat/id3v1.c
parentf8fab7499666e4d157919b7190d916db9f94a665 (diff)
Change filesize to int64_t.
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 9bd10ca9c0..699869898d 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 = url_ftell(s->pb);
+ int64_t filesize, position = url_ftell(s->pb);
if (!url_is_streamed(s->pb)) {
/* XXX: change that */