fifo: apply misc cosmetic fixes

This commit is contained in:
Stefano Sabatini 2011-08-13 19:10:05 +02:00
parent 323b930699
commit f1b29223e6

View File

@ -59,7 +59,8 @@ int av_fifo_space(AVFifoBuffer *f)
return f->end - f->buffer - av_fifo_size(f); return f->end - f->buffer - av_fifo_size(f);
} }
int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) { int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size)
{
unsigned int old_size = f->end - f->buffer; unsigned int old_size = f->end - f->buffer;
if (old_size < new_size) { if (old_size < new_size) {