2 * A very simple circular buffer FIFO implementation
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4 * Copyright (c) 2006 Roman Shaposhnik
6 * This file is part of FFmpeg.
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 int av_fifo_init(AVFifoBuffer
*f
, unsigned int size
)
27 size
= FFMAX(size
, size
+1);
29 f
->buffer
= av_malloc(size
);
30 f
->end
= f
->buffer
+ size
;
36 void av_fifo_free(AVFifoBuffer
*f
)
41 int av_fifo_size(AVFifoBuffer
*f
)
43 int size
= f
->wptr
- f
->rptr
;
45 size
+= f
->end
- f
->buffer
;
49 int av_fifo_read(AVFifoBuffer
*f
, uint8_t *buf
, int buf_size
)
51 return av_fifo_generic_read(f
, buf_size
, NULL
, buf
);
54 #if LIBAVUTIL_VERSION_MAJOR < 50
58 void av_fifo_realloc(AVFifoBuffer
*f
, unsigned int new_size
) {
59 av_fifo_realloc2(f
, new_size
);
63 int av_fifo_realloc2(AVFifoBuffer
*f
, unsigned int new_size
) {
64 unsigned int old_size
= f
->end
- f
->buffer
;
66 if(old_size
<= new_size
){
67 int len
= av_fifo_size(f
);
70 if (av_fifo_init(&f2
, new_size
) < 0)
72 av_fifo_read(f
, f2
.buffer
, len
);
80 void av_fifo_write(AVFifoBuffer
*f
, const uint8_t *buf
, int size
)
82 av_fifo_generic_write(f
, (void *)buf
, size
, NULL
);
85 int av_fifo_generic_write(AVFifoBuffer
*f
, void *src
, int size
, int (*func
)(void*, void*, int))
89 int len
= FFMIN(f
->end
- f
->wptr
, size
);
91 if(func(src
, f
->wptr
, len
) <= 0)
94 memcpy(f
->wptr
, src
, len
);
95 src
= (uint8_t*)src
+ len
;
98 if (f
->wptr
>= f
->end
)
106 int av_fifo_generic_read(AVFifoBuffer
*f
, int buf_size
, void (*func
)(void*, void*, int), void* dest
)
109 int len
= FFMIN(f
->end
- f
->rptr
, buf_size
);
110 if(func
) func(dest
, f
->rptr
, len
);
112 memcpy(dest
, f
->rptr
, len
);
113 dest
= (uint8_t*)dest
+ len
;
115 av_fifo_drain(f
, len
);
117 } while (buf_size
> 0);
121 /** discard data from the fifo */
122 void av_fifo_drain(AVFifoBuffer
*f
, int size
)
125 if (f
->rptr
>= f
->end
)
126 f
->rptr
-= f
->end
- f
->buffer
;