Commit 2a8175ff authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Change filesize to int64_t.

parent f8fab749
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment