mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Change filesize to int64_t.
This commit is contained in:
parent
f8fab74996
commit
2a8175ff9c
@ -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…
Reference in New Issue
Block a user