[FFmpeg-cvslog] lavf: do not use int to store an int64
Anton Khirnov
git at videolan.org
Sat Nov 2 09:55:55 CET 2013
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Oct 31 22:40:33 2013 +0100| [d1c229cdbc07ef8eb703d68d1c5b509baee85245] | committer: Anton Khirnov
lavf: do not use int to store an int64
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d1c229cdbc07ef8eb703d68d1c5b509baee85245
---
libavformat/utils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 987d682..bec70a9 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;
More information about the ffmpeg-cvslog
mailing list