2006-09-21 07:31:53 +00:00
|
|
|
/*
|
2009-01-28 00:16:05 +00:00
|
|
|
* a very simple circular buffer FIFO implementation
|
2006-09-21 07:31:53 +00:00
|
|
|
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard
|
|
|
|
* Copyright (c) 2006 Roman Shaposhnik
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-21 07:31:53 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-21 07:31:53 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-21 07:31:53 +00: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 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-21 07:31:53 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2013-09-03 01:05:41 +00:00
|
|
|
|
|
|
|
#include "avassert.h"
|
2006-09-21 07:31:53 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "fifo.h"
|
|
|
|
|
2014-05-10 06:06:53 +00:00
|
|
|
static AVFifoBuffer *fifo_alloc_common(void *buffer, size_t size)
|
2006-09-21 07:31:53 +00:00
|
|
|
{
|
2014-05-10 06:06:53 +00:00
|
|
|
AVFifoBuffer *f;
|
|
|
|
if (!buffer)
|
|
|
|
return NULL;
|
|
|
|
f = av_mallocz(sizeof(AVFifoBuffer));
|
|
|
|
if (!f) {
|
|
|
|
av_free(buffer);
|
2009-03-08 14:16:55 +00:00
|
|
|
return NULL;
|
2014-05-10 06:06:53 +00:00
|
|
|
}
|
|
|
|
f->buffer = buffer;
|
2013-07-06 10:05:27 +00:00
|
|
|
f->end = f->buffer + size;
|
2009-03-09 09:26:32 +00:00
|
|
|
av_fifo_reset(f);
|
2009-03-08 14:16:55 +00:00
|
|
|
return f;
|
2006-09-21 07:31:53 +00:00
|
|
|
}
|
|
|
|
|
2014-05-10 06:06:53 +00:00
|
|
|
AVFifoBuffer *av_fifo_alloc(unsigned int size)
|
|
|
|
{
|
|
|
|
void *buffer = av_malloc(size);
|
|
|
|
return fifo_alloc_common(buffer, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
AVFifoBuffer *av_fifo_alloc_array(size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
void *buffer = av_malloc_array(nmemb, size);
|
|
|
|
return fifo_alloc_common(buffer, nmemb * size);
|
|
|
|
}
|
|
|
|
|
2006-09-21 07:31:53 +00:00
|
|
|
void av_fifo_free(AVFifoBuffer *f)
|
|
|
|
{
|
2011-08-13 17:10:05 +00:00
|
|
|
if (f) {
|
2011-05-09 19:23:45 +00:00
|
|
|
av_freep(&f->buffer);
|
2009-03-09 03:39:58 +00:00
|
|
|
av_free(f);
|
2009-03-08 14:16:55 +00:00
|
|
|
}
|
2006-09-21 07:31:53 +00:00
|
|
|
}
|
|
|
|
|
2014-05-06 19:28:51 +00:00
|
|
|
void av_fifo_freep(AVFifoBuffer **f)
|
|
|
|
{
|
|
|
|
if (f) {
|
|
|
|
av_fifo_free(*f);
|
|
|
|
*f = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-09 09:26:32 +00:00
|
|
|
void av_fifo_reset(AVFifoBuffer *f)
|
|
|
|
{
|
|
|
|
f->wptr = f->rptr = f->buffer;
|
|
|
|
f->wndx = f->rndx = 0;
|
|
|
|
}
|
|
|
|
|
2014-11-24 01:10:45 +00:00
|
|
|
int av_fifo_size(const AVFifoBuffer *f)
|
2006-09-21 07:31:53 +00:00
|
|
|
{
|
2009-03-07 21:02:08 +00:00
|
|
|
return (uint32_t)(f->wndx - f->rndx);
|
2006-09-21 07:31:53 +00:00
|
|
|
}
|
|
|
|
|
2014-11-24 01:10:45 +00:00
|
|
|
int av_fifo_space(const AVFifoBuffer *f)
|
2009-04-02 23:22:19 +00:00
|
|
|
{
|
|
|
|
return f->end - f->buffer - av_fifo_size(f);
|
|
|
|
}
|
|
|
|
|
2011-08-13 17:10:05 +00:00
|
|
|
int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size)
|
|
|
|
{
|
|
|
|
unsigned int old_size = f->end - f->buffer;
|
2006-09-21 07:31:53 +00:00
|
|
|
|
2011-08-13 17:10:05 +00:00
|
|
|
if (old_size < new_size) {
|
2013-07-06 10:05:27 +00:00
|
|
|
int len = av_fifo_size(f);
|
2011-08-13 17:10:05 +00:00
|
|
|
AVFifoBuffer *f2 = av_fifo_alloc(new_size);
|
2006-09-21 07:31:53 +00:00
|
|
|
|
2009-03-08 14:16:55 +00:00
|
|
|
if (!f2)
|
2011-08-13 17:11:05 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2009-03-09 17:47:47 +00:00
|
|
|
av_fifo_generic_read(f, f2->buffer, len, NULL);
|
2009-03-08 14:16:55 +00:00
|
|
|
f2->wptr += len;
|
|
|
|
f2->wndx += len;
|
2007-01-17 20:05:31 +00:00
|
|
|
av_free(f->buffer);
|
2011-08-13 17:10:05 +00:00
|
|
|
*f = *f2;
|
2009-03-08 14:16:55 +00:00
|
|
|
av_free(f2);
|
2006-09-21 07:31:53 +00:00
|
|
|
}
|
2008-08-19 18:43:34 +00:00
|
|
|
return 0;
|
2006-09-21 07:31:53 +00:00
|
|
|
}
|
|
|
|
|
2012-05-14 17:54:36 +00: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 12:04:00 +00:00
|
|
|
return av_fifo_realloc2(f, FFMAX(size, 2*old_size));
|
2012-05-14 17:54:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-06 10:05:27 +00: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 11:35:16 +00:00
|
|
|
{
|
|
|
|
int total = size;
|
2011-12-22 23:18:36 +00:00
|
|
|
uint32_t wndx= f->wndx;
|
|
|
|
uint8_t *wptr= f->wptr;
|
|
|
|
|
2007-01-18 00:22:24 +00:00
|
|
|
do {
|
2011-12-22 23:18:36 +00:00
|
|
|
int len = FFMIN(f->end - wptr, size);
|
2011-08-13 17:10:05 +00:00
|
|
|
if (func) {
|
2015-07-14 06:47:26 +00:00
|
|
|
len = func(src, wptr, len);
|
|
|
|
if (len <= 0)
|
2008-04-09 11:35:16 +00:00
|
|
|
break;
|
|
|
|
} else {
|
2011-12-22 23:18:36 +00:00
|
|
|
memcpy(wptr, src, len);
|
2013-07-06 10:05:27 +00:00
|
|
|
src = (uint8_t *)src + len;
|
2008-04-09 11:35:16 +00:00
|
|
|
}
|
2009-03-08 00:45:45 +00:00
|
|
|
// Write memory barrier needed for SMP here in theory
|
2011-12-22 23:18:36 +00:00
|
|
|
wptr += len;
|
|
|
|
if (wptr >= f->end)
|
|
|
|
wptr = f->buffer;
|
2013-07-07 09:26:28 +00:00
|
|
|
wndx += len;
|
2013-07-06 10:05:27 +00:00
|
|
|
size -= len;
|
2007-01-18 00:22:24 +00:00
|
|
|
} while (size > 0);
|
2011-12-22 23:18:36 +00:00
|
|
|
f->wndx= wndx;
|
|
|
|
f->wptr= wptr;
|
2008-04-09 11:35:16 +00:00
|
|
|
return total - size;
|
2006-09-21 07:31:53 +00:00
|
|
|
}
|
|
|
|
|
2015-10-14 06:20:07 +00: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;
|
|
|
|
|
|
|
|
av_assert2(offset >= 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* *ndx are indexes modulo 2^32, they are intended to overflow,
|
|
|
|
* to handle *ndx greater than 4gb.
|
|
|
|
*/
|
|
|
|
av_assert2(buf_size + (unsigned)offset <= f->wndx - f->rndx);
|
|
|
|
|
|
|
|
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 12:41:35 +00:00
|
|
|
int av_fifo_generic_peek(AVFifoBuffer *f, void *dest, int buf_size,
|
|
|
|
void (*func)(void *, void *, int))
|
|
|
|
{
|
|
|
|
// Read memory barrier needed for SMP here in theory
|
|
|
|
uint8_t *rptr = f->rptr;
|
|
|
|
|
|
|
|
do {
|
2015-10-13 16:29:04 +00:00
|
|
|
int len = FFMIN(f->end - rptr, buf_size);
|
2015-08-04 12:41:35 +00:00
|
|
|
if (func)
|
2015-10-13 16:29:04 +00:00
|
|
|
func(dest, rptr, len);
|
2015-08-04 12:41:35 +00:00
|
|
|
else {
|
2015-10-13 16:29:04 +00:00
|
|
|
memcpy(dest, rptr, len);
|
2015-08-04 12:41:35 +00:00
|
|
|
dest = (uint8_t *)dest + len;
|
|
|
|
}
|
|
|
|
// memory barrier needed for SMP here in theory
|
2015-10-13 16:29:04 +00:00
|
|
|
rptr += len;
|
|
|
|
if (rptr >= f->end)
|
|
|
|
rptr -= f->end - f->buffer;
|
2015-08-04 12:41:35 +00:00
|
|
|
buf_size -= len;
|
|
|
|
} while (buf_size > 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-06 10:05:27 +00:00
|
|
|
int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size,
|
|
|
|
void (*func)(void *, void *, int))
|
2006-09-21 07:31:53 +00:00
|
|
|
{
|
2009-03-08 00:45:45 +00:00
|
|
|
// Read memory barrier needed for SMP here in theory
|
2007-01-18 00:22:24 +00:00
|
|
|
do {
|
2007-01-17 19:30:23 +00:00
|
|
|
int len = FFMIN(f->end - f->rptr, buf_size);
|
2013-07-06 10:05:27 +00:00
|
|
|
if (func)
|
|
|
|
func(dest, f->rptr, len);
|
|
|
|
else {
|
2007-01-17 19:46:33 +00:00
|
|
|
memcpy(dest, f->rptr, len);
|
2013-07-06 10:05:27 +00:00
|
|
|
dest = (uint8_t *)dest + len;
|
2007-01-17 19:46:33 +00:00
|
|
|
}
|
2009-03-08 00:45:45 +00:00
|
|
|
// memory barrier needed for SMP here in theory
|
2007-01-17 20:11:23 +00:00
|
|
|
av_fifo_drain(f, len);
|
2006-09-21 07:31:53 +00:00
|
|
|
buf_size -= len;
|
2007-01-18 00:22:24 +00:00
|
|
|
} while (buf_size > 0);
|
2006-09-21 07:31:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-28 00:16:05 +00:00
|
|
|
/** Discard data from the FIFO. */
|
2006-09-21 07:31:53 +00:00
|
|
|
void av_fifo_drain(AVFifoBuffer *f, int size)
|
|
|
|
{
|
2013-09-03 01:05:41 +00:00
|
|
|
av_assert2(av_fifo_size(f) >= size);
|
2006-09-21 07:31:53 +00:00
|
|
|
f->rptr += size;
|
|
|
|
if (f->rptr >= f->end)
|
|
|
|
f->rptr -= f->end - f->buffer;
|
2009-03-07 21:02:08 +00:00
|
|
|
f->rndx += size;
|
2006-09-21 07:31:53 +00:00
|
|
|
}
|