Commit 8cd9d4b0 authored by mru's avatar mru

bethsoftvid: use correct type for size passed to av_fast_realloc()


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9538 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f2d416dc
......@@ -104,7 +104,7 @@ static int read_frame(BVID_DemuxContext *vid, ByteIOContext *pb, AVPacket *pkt,
int code;
int bytes_copied = 0;
int position;
size_t vidbuf_capacity;
unsigned int vidbuf_capacity;
vidbuf_start = av_malloc(vidbuf_capacity = BUFFER_PADDING_SIZE);
if(!vidbuf_start)
......
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