Browse Source

caf: use int64_t for num_packets

It is used to store a value read by avio_rb64().
tags/n1.0
Justin Ruggles 13 years ago
parent
commit
c0196a14b9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/cafdec.c

+ 2
- 2
libavformat/cafdec.c 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);



Loading…
Cancel
Save