mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
id3v1: change filesize to int64_t.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
13eadbaca4
commit
31f00274f8
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user