From d1c229cdbc07ef8eb703d68d1c5b509baee85245 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 31 Oct 2013 22:40:33 +0100 Subject: [PATCH] lavf: do not use int to store an int64 --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 987d68247d..bec70a9e01 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -77,7 +77,7 @@ const char *avformat_license(void) static int append_packet_chunked(AVIOContext *s, AVPacket *pkt, int size) { int64_t chunk_size = size; - int orig_pos = pkt->pos; // av_grow_packet might reset pos + int64_t orig_pos = pkt->pos; // av_grow_packet might reset pos int orig_size = pkt->size; int ret = 0;