FFmpeg
Classes | Typedefs | Variables
fifo.c File Reference

FIFO buffering filter. More...

#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
#include "libavutil/common.h"
#include "libavutil/mathematics.h"
#include "libavutil/samplefmt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
#include "video.h"

Classes

struct  Buf
 
struct  FifoContext
 

Typedefs

typedef struct Buf Buf
 
typedef struct FifoContext FifoContext
 

Variables

AVFilter ff_vf_fifo
 
AVFilter ff_af_afifo
 

Detailed Description

FIFO buffering filter.

Variable Documentation

§ ff_af_afifo

AVFilter ff_af_afifo
Initial value:
= {
.name = "afifo",
.description = NULL_IF_CONFIG_SMALL("Buffer input frames and send them when they are requested."),
.init = init,
.uninit = uninit,
.priv_size = sizeof(FifoContext),
.inputs = avfilter_af_afifo_inputs,
.outputs = avfilter_af_afifo_outputs,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: fifo.c:42

§ ff_vf_fifo

AVFilter ff_vf_fifo
Initial value:
= {
.name = "fifo",
.description = NULL_IF_CONFIG_SMALL("Buffer input images and send them when they are requested."),
.init = init,
.uninit = uninit,
.priv_size = sizeof(FifoContext),
.inputs = avfilter_vf_fifo_inputs,
.outputs = avfilter_vf_fifo_outputs,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: fifo.c:42