#include <stddef.h>
Go to the source code of this file.
Macros
Automatically resize the FIFO on writes, so that the data fits.
More...
Typedefs
typedef int
AVFifoCB(void *opaque, void *buf, size_t *nb_elems)
Callback for writing or reading from a FIFO, passed to (and invoked from) the av_fifo_*_cb() functions.
More...
Functions
Allocate and initialize an
AVFifo with a given element size.
More...
Set the maximum size (in elements) to which the FIFO can be resized automatically.
More...
Write data from a user-provided callback into a FIFO.
More...
Feed data from a FIFO into a user-provided callback.
More...
Read data from a FIFO without modifying FIFO state.
More...
Feed data from a FIFO into a user-provided callback.
More...
Detailed Description
A generic FIFO API
Definition in file fifo.h.