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;