FFmpeg  2.1.1
Macros | Functions
allfilters.c File Reference
#include "avfilter.h"
#include "config.h"
#include "opencl_allkernels.h"

Go to the source code of this file.

Macros

#define REGISTER_FILTER(X, x, y)
 
#define REGISTER_FILTER_UNCONDITIONAL(x)
 

Functions

void avfilter_register_all (void)
 Initialize the filter system. More...
 

Macro Definition Documentation

#define REGISTER_FILTER (   X,
  x,
  y 
)
Value:
{ \
extern AVFilter avfilter_##y##_##x; \
if (CONFIG_##X##_FILTER) \
avfilter_register(&avfilter_##y##_##x); \
}
#define _(x)
if((e=av_dict_get(options,"", NULL, AV_DICT_IGNORE_SUFFIX)))
Definition: avfilter.c:965
float y
Filter definition.
Definition: avfilter.h:464
int avfilter_register(AVFilter *filter)
Register a filter.
Definition: avfilter.c:474

Definition at line 27 of file allfilters.c.

Referenced by avfilter_register_all().

#define REGISTER_FILTER_UNCONDITIONAL (   x)
Value:
{ \
extern AVFilter avfilter_##x; \
avfilter_register(&avfilter_##x); \
}
Filter definition.
Definition: avfilter.h:464
int avfilter_register(AVFilter *filter)
Register a filter.
Definition: avfilter.c:474

Definition at line 34 of file allfilters.c.

Referenced by avfilter_register_all().