1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

caf: use int64_t for num_packets

It is used to store a value read by avio_rb64().
This commit is contained in:
Justin Ruggles 2012-07-09 14:16:37 -04:00
parent f5a9c35f88
commit c0196a14b9

View File

@ -172,8 +172,8 @@ static int read_pakt_chunk(AVFormatContext *s, int64_t size)
AVIOContext *pb = s->pb;
AVStream *st = s->streams[0];
CaffContext *caf = s->priv_data;
int64_t pos = 0, ccount;
int num_packets, i;
int64_t pos = 0, ccount, num_packets;
int i;
ccount = avio_tell(pb);