Commit 0c5a43d6 authored by Reimar Döffinger's avatar Reimar Döffinger

Merge declaration and initialization of io_buffer_size

Originally committed as revision 16639 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2bdaf78c
......@@ -784,12 +784,7 @@ static int url_open_dyn_buf_internal(ByteIOContext **s, int max_packet_size)
{
DynBuffer *d;
int ret;
unsigned io_buffer_size;
if (max_packet_size)
io_buffer_size = max_packet_size;
else
io_buffer_size = 1024;
unsigned io_buffer_size = max_packet_size ? max_packet_size : 1024;
if(sizeof(DynBuffer) + io_buffer_size < io_buffer_size)
return -1;
......
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