diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-05-29 16:18:40 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-06-04 17:20:19 +0200 |
commit | e816aaacd68201b67182f9c70dc680e89a0123e9 (patch) | |
tree | 6d0d140069e7fa47ffc6694077fcad3ddd5162d5 /libavformat/apetag.c | |
parent | 274e134e49b1c92db0f0b8cb2ae7554fb7b9184c (diff) | |
download | ffmpeg-e816aaacd68201b67182f9c70dc680e89a0123e9.tar.gz |
apetag: use int64_t for filesize
CC: libav-stable@libav.org
Diffstat (limited to 'libavformat/apetag.c')
-rw-r--r-- | libavformat/apetag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/apetag.c b/libavformat/apetag.c index 68f2df6c56..d4be91c837 100644 --- a/libavformat/apetag.c +++ b/libavformat/apetag.c @@ -118,7 +118,7 @@ static int ape_tag_read_field(AVFormatContext *s) int64_t ff_ape_parse_tag(AVFormatContext *s) { AVIOContext *pb = s->pb; - int file_size = avio_size(pb); + int64_t file_size = avio_size(pb); uint32_t val, fields, tag_bytes; uint8_t buf[8]; int64_t tag_start; |