1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

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);
}
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;
if (old_size < new_size) {