Browse Source

Make io_buffer_size unsigned to avoid a warning about comparing

signed and unsigned values.

Originally committed as revision 16638 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Reimar Döffinger 17 years ago
parent
commit
2bdaf78c52
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavformat/aviobuf.c

+ 2
- 1
libavformat/aviobuf.c View File

@@ -783,7 +783,8 @@ static int64_t dyn_buf_seek(void *opaque, int64_t offset, int whence)
static int url_open_dyn_buf_internal(ByteIOContext **s, int max_packet_size)
{
DynBuffer *d;
int io_buffer_size, ret;
int ret;
unsigned io_buffer_size;

if (max_packet_size)
io_buffer_size = max_packet_size;


Loading…
Cancel
Save