libavutil/fifo.c
Go to the documentation of this file.
1 /*
2  * a very simple circular buffer FIFO implementation
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  * Copyright (c) 2006 Roman Shaposhnik
5  *
6  * This file is part of FFmpeg.
7  *
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.
12  *
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.
17  *
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
21  */
22 #include "common.h"
23 #include "fifo.h"
24 
26 {
28  if (!f)
29  return NULL;
30  f->buffer = av_malloc(size);
31  f->end = f->buffer + size;
32  av_fifo_reset(f);
33  if (!f->buffer)
34  av_freep(&f);
35  return f;
36 }
37 
39 {
40  if (f) {
41  av_freep(&f->buffer);
42  av_free(f);
43  }
44 }
45 
47 {
48  f->wptr = f->rptr = f->buffer;
49  f->wndx = f->rndx = 0;
50 }
51 
53 {
54  return (uint32_t)(f->wndx - f->rndx);
55 }
56 
58 {
59  return f->end - f->buffer - av_fifo_size(f);
60 }
61 
62 int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size)
63 {
64  unsigned int old_size = f->end - f->buffer;
65 
66  if (old_size < new_size) {
67  int len = av_fifo_size(f);
68  AVFifoBuffer *f2 = av_fifo_alloc(new_size);
69 
70  if (!f2)
71  return AVERROR(ENOMEM);
72  av_fifo_generic_read(f, f2->buffer, len, NULL);
73  f2->wptr += len;
74  f2->wndx += len;
75  av_free(f->buffer);
76  *f = *f2;
77  av_free(f2);
78  }
79  return 0;
80 }
81 
82 int av_fifo_grow(AVFifoBuffer *f, unsigned int size)
83 {
84  unsigned int old_size = f->end - f->buffer;
85  if(size + (unsigned)av_fifo_size(f) < size)
86  return AVERROR(EINVAL);
87 
88  size += av_fifo_size(f);
89 
90  if (old_size < size)
91  return av_fifo_realloc2(f, FFMAX(size, 2*size));
92  return 0;
93 }
94 
95 // src must NOT be const as it can be a context for func that may need updating (like a pointer or byte counter)
96 int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int))
97 {
98  int total = size;
99  uint32_t wndx= f->wndx;
100  uint8_t *wptr= f->wptr;
101 
102  do {
103  int len = FFMIN(f->end - wptr, size);
104  if (func) {
105  if (func(src, wptr, len) <= 0)
106  break;
107  } else {
108  memcpy(wptr, src, len);
109  src = (uint8_t*)src + len;
110  }
111 // Write memory barrier needed for SMP here in theory
112  wptr += len;
113  if (wptr >= f->end)
114  wptr = f->buffer;
115  wndx += len;
116  size -= len;
117  } while (size > 0);
118  f->wndx= wndx;
119  f->wptr= wptr;
120  return total - size;
121 }
122 
123 
124 int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void (*func)(void*, void*, int))
125 {
126 // Read memory barrier needed for SMP here in theory
127  do {
128  int len = FFMIN(f->end - f->rptr, buf_size);
129  if(func) func(dest, f->rptr, len);
130  else{
131  memcpy(dest, f->rptr, len);
132  dest = (uint8_t*)dest + len;
133  }
134 // memory barrier needed for SMP here in theory
135  av_fifo_drain(f, len);
136  buf_size -= len;
137  } while (buf_size > 0);
138  return 0;
139 }
140 
141 /** Discard data from the FIFO. */
142 void av_fifo_drain(AVFifoBuffer *f, int size)
143 {
144  f->rptr += size;
145  if (f->rptr >= f->end)
146  f->rptr -= f->end - f->buffer;
147  f->rndx += size;
148 }
149 
150 #ifdef TEST
151 
152 int main(void)
153 {
154  /* create a FIFO buffer */
155  AVFifoBuffer *fifo = av_fifo_alloc(13 * sizeof(int));
156  int i, j, n;
157 
158  /* fill data */
159  for (i = 0; av_fifo_space(fifo) >= sizeof(int); i++)
160  av_fifo_generic_write(fifo, &i, sizeof(int), NULL);
161 
162  /* peek at FIFO */
163  n = av_fifo_size(fifo)/sizeof(int);
164  for (i = -n+1; i < n; i++) {
165  int *v = (int *)av_fifo_peek2(fifo, i*sizeof(int));
166  printf("%d: %d\n", i, *v);
167  }
168  printf("\n");
169 
170  /* read data */
171  for (i = 0; av_fifo_size(fifo) >= sizeof(int); i++) {
172  av_fifo_generic_read(fifo, &j, sizeof(int), NULL);
173  printf("%d ", j);
174  }
175  printf("\n");
176 
177  av_fifo_free(fifo);
178 
179  return 0;
180 }
181 
182 #endif
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:205
int av_fifo_grow(AVFifoBuffer *f, unsigned int size)
Enlarge an AVFifoBuffer.
float v
uint8_t * wptr
Definition: fifo.h:33
Sinusoidal phase f
uint32_t rndx
Definition: fifo.h:34
int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int(*func)(void *, void *, int))
Feed data from a user-supplied callback to an AVFifoBuffer.
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:198
uint8_t
void av_fifo_free(AVFifoBuffer *f)
Free an AVFifoBuffer.
f2
Definition: genspecsines3.m:4
static uint8_t * av_fifo_peek2(const AVFifoBuffer *f, int offs)
Return a pointer to the data stored in a FIFO buffer at a certain offset.
Definition: fifo.h:134
void av_free(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc(). ...
Definition: mem.c:183
int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void(*func)(void *, void *, int))
Feed data from an AVFifoBuffer to a user-supplied callback.
#define FFMAX(a, b)
Definition: common.h:56
int size
#define FFMIN(a, b)
Definition: common.h:58
uint8_t * end
Definition: fifo.h:33
uint8_t * rptr
Definition: fifo.h:33
NULL
Definition: eval.c:55
int av_fifo_space(AVFifoBuffer *f)
Return the amount of space in bytes in the AVFifoBuffer, that is the amount of data you can write int...
dest
Definition: start.py:60
AVS_Value src
Definition: avisynth_c.h:523
int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size)
Resize an AVFifoBuffer.
a very simple circular buffer FIFO implementation
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:73
int(* func)(AVBPrint *dst, const char *in, const char *arg)
uint8_t * buffer
Definition: fifo.h:32
synthesis window for stochastic i
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
uint32_t wndx
Definition: fifo.h:34
int av_fifo_size(AVFifoBuffer *f)
Return the amount of data in bytes in the AVFifoBuffer, that is the amount of data you can read from ...
common internal and external API header
AVFifoBuffer * av_fifo_alloc(unsigned int size)
Initialize an AVFifoBuffer.
int len
printf("static const uint8_t my_array[100] = {\n")
int main(int argc, char **argv)
Definition: main.c:22
void av_fifo_reset(AVFifoBuffer *f)
Reset the AVFifoBuffer to the state right after av_fifo_alloc, in particular it is emptied...
void av_fifo_drain(AVFifoBuffer *f, int size)
Discard data from the FIFO.