comparison fifo.c @ 687:bc81990848aa libavutil

indent
author michael
date Mon, 09 Mar 2009 03:39:58 +0000
parents b084f8cd043f
children 91216685a7ae
comparison
equal deleted inserted replaced
686:b084f8cd043f 687:bc81990848aa
36 } 36 }
37 37
38 void av_fifo_free(AVFifoBuffer *f) 38 void av_fifo_free(AVFifoBuffer *f)
39 { 39 {
40 if(f){ 40 if(f){
41 av_free(f->buffer); 41 av_free(f->buffer);
42 av_free(f); 42 av_free(f);
43 } 43 }
44 } 44 }
45 45
46 int av_fifo_size(AVFifoBuffer *f) 46 int av_fifo_size(AVFifoBuffer *f)
47 { 47 {