Commit d1c229cd authored by Anton Khirnov's avatar Anton Khirnov

lavf: do not use int to store an int64

parent 57070b14
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment