Provide registration of all codecs, parsers and bitstream filters for libavcodec. More...
#include "avcodec.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. |
Provide registration of all codecs, parsers and bitstream filters for libavcodec.
Definition in file allcodecs.c.
#define REGISTER_BSF | ( | X, | |
x | |||
) |
Definition at line 44 of file allcodecs.c.
Referenced by avcodec_register_all().
#define REGISTER_DECODER | ( | X, | |
x | |||
) |
Definition at line 36 of file allcodecs.c.
Referenced by avcodec_register_all().
#define REGISTER_ENCDEC | ( | X, | |
x | |||
) | REGISTER_ENCODER(X,x); REGISTER_DECODER(X,x) |
Definition at line 39 of file allcodecs.c.
Referenced by avcodec_register_all().
#define REGISTER_ENCODER | ( | X, | |
x | |||
) |
Definition at line 33 of file allcodecs.c.
Referenced by avcodec_register_all().
#define REGISTER_HWACCEL | ( | X, | |
x | |||
) |
Definition at line 29 of file allcodecs.c.
Referenced by avcodec_register_all().
#define REGISTER_PARSER | ( | X, | |
x | |||
) |
Definition at line 41 of file allcodecs.c.
Referenced by avcodec_register_all().
Register all the codecs, parsers and bitstream filters which were enabled at configuration time.
If you do not call this function you can select exactly which formats you want to support, by using the individual registration functions.
Definition at line 48 of file allcodecs.c.
Referenced by av_register_all(), and main().