libavcodec/allcodecs.c File Reference

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

#include "avcodec.h"

Go to the source code of this file.

Defines

#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.


Detailed Description

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

Definition in file allcodecs.c.


Define Documentation

#define REGISTER_BSF ( X,
 ) 

Value:

{ \
          extern AVBitStreamFilter x##_bsf; \
          if(CONFIG_##X##_BSF)     av_register_bitstream_filter(&x##_bsf); }

Definition at line 44 of file allcodecs.c.

Referenced by avcodec_register_all().

#define REGISTER_DECODER ( X,
 ) 

Value:

{ \
          extern AVCodec x##_decoder; \
          if(CONFIG_##X##_DECODER)  avcodec_register(&x##_decoder); }

Definition at line 36 of file allcodecs.c.

Referenced by avcodec_register_all().

#define REGISTER_ENCDEC ( 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,
 ) 

Value:

{ \
          extern AVCodec x##_encoder; \
          if(CONFIG_##X##_ENCODER)  avcodec_register(&x##_encoder); }

Definition at line 33 of file allcodecs.c.

Referenced by avcodec_register_all().

#define REGISTER_HWACCEL ( X,
 ) 

Value:

{ \
          extern AVHWAccel x##_hwaccel; \
          if(CONFIG_##X##_HWACCEL) av_register_hwaccel(&x##_hwaccel); }

Definition at line 29 of file allcodecs.c.

Referenced by avcodec_register_all().

#define REGISTER_PARSER ( X,
 ) 

Value:

{ \
          extern AVCodecParser x##_parser; \
          if(CONFIG_##X##_PARSER)  av_register_codec_parser(&x##_parser); }

Definition at line 41 of file allcodecs.c.

Referenced by avcodec_register_all().


Function Documentation

void avcodec_register_all ( void   ) 

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.

See also:
avcodec_register

av_register_codec_parser

av_register_bitstream_filter

Definition at line 48 of file allcodecs.c.

Referenced by av_register_all(), and main().


Generated on Fri Oct 26 02:36:50 2012 for FFmpeg by  doxygen 1.5.8