aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-05-29 16:18:40 +0200
committerReinhard Tartler <siretart@tauware.de>2013-06-08 16:31:54 +0200
commit042b8c2f06b4796bab0b65069ac7e7565d9157ce (patch)
treef9708009c71c95d2c4bee8e3c73daf5c587c58b3
parent5fed47b94f889b724b3214a0898aa6eac00ac575 (diff)
downloadffmpeg-042b8c2f06b4796bab0b65069ac7e7565d9157ce.tar.gz
apetag: use int64_t for filesize
CC: libav-stable@libav.org (cherry picked from commit e816aaacd68201b67182f9c70dc680e89a0123e9) Signed-off-by: Reinhard Tartler <siretart@tauware.de>
-rw-r--r--libavformat/apetag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/apetag.c b/libavformat/apetag.c
index 0d2cb973fb..bb8b2dfadc 100644
--- a/libavformat/apetag.c
+++ b/libavformat/apetag.c
@@ -116,7 +116,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;