FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions
allcodecs.c File Reference

Provide registration of all codecs, parsers and bitstream filters for libavcodec. More...

#include "config.h"
#include "avcodec.h"
#include "version.h"

Go to the source code of this file.

Macros

#define REGISTER_HWACCEL(X, x)
 
#define REGISTER_ENCODER(X, x)
 
#define REGISTER_DECODER(X, x)
 
#define REGISTER_ENCDEC(X, x)   REGISTER_ENCODER(X, x); REGISTER_DECODER(X, x)
 
#define REGISTER_PARSER(X, x)
 
#define REGISTER_BSF(X, x)
 

Functions

void avcodec_register_all (void)
 Register all the codecs, parsers and bitstream filters which were enabled at configuration time. More...
 

Detailed Description

Provide registration of all codecs, parsers and bitstream filters for libavcodec.

Definition in file allcodecs.c.

Macro Definition Documentation

#define REGISTER_HWACCEL (   X,
 
)
Value:
{ \
extern AVHWAccel ff_##x##_hwaccel; \
if (CONFIG_##X##_HWACCEL) \
av_register_hwaccel(&ff_##x##_hwaccel); \
}
if()
Definition: avfilter.c:975
attribute_deprecated void void av_register_hwaccel(AVHWAccel *hwaccel)
Register the hardware accelerator hwaccel.
Definition: utils.c:3574

Definition at line 31 of file allcodecs.c.

Referenced by avcodec_register_all().

#define REGISTER_ENCODER (   X,
 
)
Value:
{ \
extern AVCodec ff_##x##_encoder; \
if (CONFIG_##X##_ENCODER) \
avcodec_register(&ff_##x##_encoder); \
}
AVCodec.
Definition: avcodec.h:3181
if()
Definition: avfilter.c:975
void avcodec_register(AVCodec *codec)
Register the codec codec and initialize libavcodec.
Definition: utils.c:197

Definition at line 38 of file allcodecs.c.

Referenced by avcodec_register_all().

#define REGISTER_DECODER (   X,
 
)
Value:
{ \
extern AVCodec ff_##x##_decoder; \
if (CONFIG_##X##_DECODER) \
avcodec_register(&ff_##x##_decoder); \
}
AVCodec.
Definition: avcodec.h:3181
if()
Definition: avfilter.c:975
void avcodec_register(AVCodec *codec)
Register the codec codec and initialize libavcodec.
Definition: utils.c:197

Definition at line 45 of file allcodecs.c.

Referenced by avcodec_register_all().

#define REGISTER_ENCDEC (   X,
 
)    REGISTER_ENCODER(X, x); REGISTER_DECODER(X, x)

Definition at line 52 of file allcodecs.c.

Referenced by avcodec_register_all().

#define REGISTER_PARSER (   X,
 
)
Value:
{ \
extern AVCodecParser ff_##x##_parser; \
if (CONFIG_##X##_PARSER) \
av_register_codec_parser(&ff_##x##_parser); \
}
if()
Definition: avfilter.c:975
void av_register_codec_parser(AVCodecParser *parser)
Definition: parser.c:43

Definition at line 54 of file allcodecs.c.

Referenced by avcodec_register_all().

#define REGISTER_BSF (   X,
 
)
Value:
{ \
extern AVBitStreamFilter ff_##x##_bsf; \
if (CONFIG_##X##_BSF) \
}
if()
Definition: avfilter.c:975
void av_register_bitstream_filter(AVBitStreamFilter *bsf)
Register a bitstream filter.

Definition at line 61 of file allcodecs.c.

Referenced by avcodec_register_all().