FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions
allfilters.c File Reference
#include "avfilter.h"
#include "config.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.
 

Macro Definition Documentation

#define REGISTER_FILTER (   X,
  x,
 
)
Value:
{ \
extern AVFilter avfilter_##y##_##x; \
if (CONFIG_##X##_FILTER) \
avfilter_register(&avfilter_##y##_##x); \
}

Definition at line 26 of file allfilters.c.

Referenced by avfilter_register_all().

#define REGISTER_FILTER_UNCONDITIONAL (   x)
Value:
{ \
extern AVFilter avfilter_##x; \
avfilter_register(&avfilter_##x); \
}

Definition at line 33 of file allfilters.c.

Referenced by avfilter_register_all().