1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

lavf: do not use int to store an int64

This commit is contained in:
Anton Khirnov
2013-10-31 22:40:33 +01:00
parent 57070b1468
commit d1c229cdbc

View File

@@ -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;