2006-09-21 10:31:53 +03:00
|
|
|
/*
|
2009-01-28 02:16:05 +02:00
|
|
|
* a very simple circular buffer FIFO implementation
|
2006-09-21 10:31:53 +03:00
|
|
|
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard
|
|
|
|
* Copyright (c) 2006 Roman Shaposhnik
|
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-21 10:31:53 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-21 10:31:53 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-21 10:31:53 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-21 10:31:53 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2013-09-03 04:05:41 +03:00
|
|
|
|
|
|
|
#include "avassert.h"
|
2006-09-21 10:31:53 +03:00
|
|
|
#include "common.h"
|
|
|
|
#include "fifo.h"
|
|
|
|
|
2021-12-30 14:44:06 +02:00
|
|
|
AVFifoBuffer *av_fifo_alloc_array(size_t nmemb, size_t size)
|
2006-09-21 10:31:53 +03:00
|
|
|
{
|
2014-05-10 09:06:53 +03:00
|
|
|
AVFifoBuffer *f;
|
2021-12-30 16:06:15 +02:00
|
|
|
void *buffer = av_realloc_array(NULL, nmemb, size);
|
2014-05-10 09:06:53 +03:00
|
|
|
if (!buffer)
|
|
|
|
return NULL;
|
|
|
|
f = av_mallocz(sizeof(AVFifoBuffer));
|
|
|
|
if (!f) {
|
|
|
|
av_free(buffer);
|
2009-03-08 16:16:55 +02:00
|
|
|
return NULL;
|
2014-05-10 09:06:53 +03:00
|
|
|
}
|
|
|
|
f->buffer = buffer;
|
2021-12-30 14:44:06 +02:00
|
|
|
f->end = f->buffer + nmemb * size;
|
2009-03-09 11:26:32 +02:00
|
|
|
av_fifo_reset(f);
|
2009-03-08 16:16:55 +02:00
|
|
|
return f;
|
2006-09-21 10:31:53 +03:00
|
|
|
}
|
|
|
|
|
2014-05-10 09:06:53 +03:00
|
|
|
AVFifoBuffer *av_fifo_alloc(unsigned int size)
|
|
|
|
{
|
2021-12-30 14:44:06 +02:00
|
|
|
return av_fifo_alloc_array(size, 1);
|
2014-05-10 09:06:53 +03:00
|
|
|
}
|
|
|
|
|
2006-09-21 10:31:53 +03:00
|
|
|
void av_fifo_free(AVFifoBuffer *f)
|
|
|
|
{
|
2011-08-13 20:10:05 +03:00
|
|
|
if (f) {
|
2011-05-09 22:23:45 +03:00
|
|
|
av_freep(&f->buffer);
|
2009-03-09 05:39:58 +02:00
|
|
|
av_free(f);
|
2009-03-08 16:16:55 +02:00
|
|
|
}
|
2006-09-21 10:31:53 +03:00
|
|
|
}
|
|
|
|
|
2014-05-06 22:28:51 +03:00
|
|
|
void av_fifo_freep(AVFifoBuffer **f)
|
|
|
|
{
|
|
|
|
if (f) {
|
|
|
|
av_fifo_free(*f);
|
|
|
|
*f = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-09 11:26:32 +02:00
|
|
|
void av_fifo_reset(AVFifoBuffer *f)
|
|
|
|
{
|
|
|
|
f->wptr = f->rptr = f->buffer;
|
|
|
|
f->wndx = f->rndx = 0;
|
|
|
|
}
|
|
|
|
|
2014-11-24 03:10:45 +02:00
|
|
|
int av_fifo_size(const AVFifoBuffer *f)
|
2006-09-21 10:31:53 +03:00
|
|
|
{
|
2009-03-07 23:02:08 +02:00
|
|
|
return (uint32_t)(f->wndx - f->rndx);
|
2006-09-21 10:31:53 +03:00
|
|
|
}
|
|
|
|
|
2014-11-24 03:10:45 +02:00
|
|
|
int av_fifo_space(const AVFifoBuffer *f)
|
2009-04-03 02:22:19 +03:00
|
|
|
{
|
|
|
|
return f->end - f->buffer - av_fifo_size(f);
|
|
|
|
}
|
|
|
|
|
2011-08-13 20:10:05 +03:00
|
|
|
int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size)
|
|
|
|
{
|
|
|
|
unsigned int old_size = f->end - f->buffer;
|
2006-09-21 10:31:53 +03:00
|
|
|
|
2011-08-13 20:10:05 +03:00
|
|
|
if (old_size < new_size) {
|
2021-12-30 16:06:15 +02:00
|
|
|
size_t offset_r = f->rptr - f->buffer;
|
|
|
|
size_t offset_w = f->wptr - f->buffer;
|
|
|
|
uint8_t *tmp;
|
2006-09-21 10:31:53 +03:00
|
|
|
|
2021-12-30 16:06:15 +02:00
|
|
|
tmp = av_realloc(f->buffer, new_size);
|
|
|
|
if (!tmp)
|
2011-08-13 20:11:05 +03:00
|
|
|
return AVERROR(ENOMEM);
|
2021-12-30 16:06:15 +02:00
|
|
|
|
|
|
|
// move the data from the beginning of the ring buffer
|
|
|
|
// to the newly allocated space
|
|
|
|
// the second condition distinguishes full vs empty fifo
|
|
|
|
if (offset_w <= offset_r && av_fifo_size(f)) {
|
|
|
|
const size_t copy = FFMIN(new_size - old_size, offset_w);
|
|
|
|
memcpy(tmp + old_size, tmp, copy);
|
|
|
|
if (copy < offset_w) {
|
|
|
|
memmove(tmp, tmp + copy , offset_w - copy);
|
|
|
|
offset_w -= copy;
|
|
|
|
} else
|
|
|
|
offset_w = old_size + copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
f->buffer = tmp;
|
|
|
|
f->end = f->buffer + new_size;
|
|
|
|
f->rptr = f->buffer + offset_r;
|
|
|
|
f->wptr = f->buffer + offset_w;
|
2006-09-21 10:31:53 +03:00
|
|
|
}
|
2008-08-19 21:43:34 +03:00
|
|
|
return 0;
|
2006-09-21 10:31:53 +03:00
|
|
|
}
|
|
|
|
|
2012-05-14 20:54:36 +03:00
|
|
|
int av_fifo_grow(AVFifoBuffer *f, unsigned int size)
|
|
|
|
{
|
|
|
|
unsigned int old_size = f->end - f->buffer;
|
|
|
|
if(size + (unsigned)av_fifo_size(f) < size)
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
|
|
|
size += av_fifo_size(f);
|
|
|
|
|
|
|
|
if (old_size < size)
|
2016-06-03 14:04:00 +02:00
|
|
|
return av_fifo_realloc2(f, FFMAX(size, 2*old_size));
|
2012-05-14 20:54:36 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-06 13:05:27 +03:00
|
|
|
/* src must NOT be const as it can be a context for func that may need
|
|
|
|
* updating (like a pointer or byte counter) */
|
|
|
|
int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size,
|
|
|
|
int (*func)(void *, void *, int))
|
2008-04-09 14:35:16 +03:00
|
|
|
{
|
|
|
|
int total = size;
|
2011-12-23 02:18:36 +03:00
|
|
|
uint32_t wndx= f->wndx;
|
|
|
|
uint8_t *wptr= f->wptr;
|
|
|
|
|
2021-12-31 12:41:11 +02:00
|
|
|
if (size > av_fifo_space(f))
|
|
|
|
return AVERROR(ENOSPC);
|
|
|
|
|
2007-01-18 02:22:24 +02:00
|
|
|
do {
|
2011-12-23 02:18:36 +03:00
|
|
|
int len = FFMIN(f->end - wptr, size);
|
2011-08-13 20:10:05 +03:00
|
|
|
if (func) {
|
2015-07-14 08:47:26 +02:00
|
|
|
len = func(src, wptr, len);
|
|
|
|
if (len <= 0)
|
2008-04-09 14:35:16 +03:00
|
|
|
break;
|
|
|
|
} else {
|
2011-12-23 02:18:36 +03:00
|
|
|
memcpy(wptr, src, len);
|
2013-07-06 13:05:27 +03:00
|
|
|
src = (uint8_t *)src + len;
|
2008-04-09 14:35:16 +03:00
|
|
|
}
|
2011-12-23 02:18:36 +03:00
|
|
|
wptr += len;
|
|
|
|
if (wptr >= f->end)
|
|
|
|
wptr = f->buffer;
|
2013-07-07 12:26:28 +03:00
|
|
|
wndx += len;
|
2013-07-06 13:05:27 +03:00
|
|
|
size -= len;
|
2007-01-18 02:22:24 +02:00
|
|
|
} while (size > 0);
|
2011-12-23 02:18:36 +03:00
|
|
|
f->wndx= wndx;
|
|
|
|
f->wptr= wptr;
|
2008-04-09 14:35:16 +03:00
|
|
|
return total - size;
|
2006-09-21 10:31:53 +03:00
|
|
|
}
|
|
|
|
|
2015-10-14 08:20:07 +02:00
|
|
|
int av_fifo_generic_peek_at(AVFifoBuffer *f, void *dest, int offset, int buf_size, void (*func)(void*, void*, int))
|
|
|
|
{
|
|
|
|
uint8_t *rptr = f->rptr;
|
|
|
|
|
2021-12-31 12:41:11 +02:00
|
|
|
if (offset < 0 || buf_size > av_fifo_size(f) - offset)
|
|
|
|
return AVERROR(EINVAL);
|
2015-10-14 08:20:07 +02:00
|
|
|
|
|
|
|
if (offset >= f->end - rptr)
|
|
|
|
rptr += offset - (f->end - f->buffer);
|
|
|
|
else
|
|
|
|
rptr += offset;
|
|
|
|
|
|
|
|
while (buf_size > 0) {
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if (rptr >= f->end)
|
|
|
|
rptr -= f->end - f->buffer;
|
|
|
|
|
|
|
|
len = FFMIN(f->end - rptr, buf_size);
|
|
|
|
if (func)
|
|
|
|
func(dest, rptr, len);
|
|
|
|
else {
|
|
|
|
memcpy(dest, rptr, len);
|
|
|
|
dest = (uint8_t *)dest + len;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf_size -= len;
|
|
|
|
rptr += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-04 14:41:35 +02:00
|
|
|
int av_fifo_generic_peek(AVFifoBuffer *f, void *dest, int buf_size,
|
|
|
|
void (*func)(void *, void *, int))
|
|
|
|
{
|
2022-01-13 18:30:53 +02:00
|
|
|
return av_fifo_generic_peek_at(f, dest, 0, buf_size, func);
|
2015-08-04 14:41:35 +02:00
|
|
|
}
|
|
|
|
|
2013-07-06 13:05:27 +03:00
|
|
|
int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size,
|
|
|
|
void (*func)(void *, void *, int))
|
2006-09-21 10:31:53 +03:00
|
|
|
{
|
2021-12-31 12:41:11 +02:00
|
|
|
if (buf_size > av_fifo_size(f))
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
2007-01-18 02:22:24 +02:00
|
|
|
do {
|
2007-01-17 21:30:23 +02:00
|
|
|
int len = FFMIN(f->end - f->rptr, buf_size);
|
2013-07-06 13:05:27 +03:00
|
|
|
if (func)
|
|
|
|
func(dest, f->rptr, len);
|
|
|
|
else {
|
2007-01-17 21:46:33 +02:00
|
|
|
memcpy(dest, f->rptr, len);
|
2013-07-06 13:05:27 +03:00
|
|
|
dest = (uint8_t *)dest + len;
|
2007-01-17 21:46:33 +02:00
|
|
|
}
|
2007-01-17 22:11:23 +02:00
|
|
|
av_fifo_drain(f, len);
|
2006-09-21 10:31:53 +03:00
|
|
|
buf_size -= len;
|
2007-01-18 02:22:24 +02:00
|
|
|
} while (buf_size > 0);
|
2006-09-21 10:31:53 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-28 02:16:05 +02:00
|
|
|
/** Discard data from the FIFO. */
|
2006-09-21 10:31:53 +03:00
|
|
|
void av_fifo_drain(AVFifoBuffer *f, int size)
|
|
|
|
{
|
2013-09-03 04:05:41 +03:00
|
|
|
av_assert2(av_fifo_size(f) >= size);
|
2006-09-21 10:31:53 +03:00
|
|
|
f->rptr += size;
|
|
|
|
if (f->rptr >= f->end)
|
|
|
|
f->rptr -= f->end - f->buffer;
|
2009-03-07 23:02:08 +02:00
|
|
|
f->rndx += size;
|
2006-09-21 10:31:53 +03:00
|
|
|
}
|