Browse Source

Change filesize to int64_t.

tags/n0.8
Carl Eugen Hoyos 15 years ago
parent
commit
2a8175ff9c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/id3v1.c

+ 2
- 2
libavformat/id3v1.c View File

@@ -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 */


Loading…
Cancel
Save