fifo: apply misc cosmetic fixes
This commit is contained in:
parent
323b930699
commit
f1b29223e6
@ -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) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user