libavformat/allformats.c File Reference

#include "avformat.h"
#include "rtp_internal.h"

Go to the source code of this file.

Defines

#define REGISTER_MUXER(X, x)
#define REGISTER_DEMUXER(X, x)
#define REGISTER_MUXDEMUX(X, x)   REGISTER_MUXER(X,x); REGISTER_DEMUXER(X,x)
#define REGISTER_PROTOCOL(X, x)

Functions

void av_register_all (void)
 Initialize libavformat and register all the (de)muxers and protocols.


Define Documentation

#define REGISTER_DEMUXER ( X,
 ) 

Value:

{ \
          extern AVInputFormat x##_demuxer; \
          if(ENABLE_##X##_DEMUXER) av_register_input_format(&x##_demuxer); }

Definition at line 27 of file allformats.c.

#define REGISTER_MUXDEMUX ( X,
 )     REGISTER_MUXER(X,x); REGISTER_DEMUXER(X,x)

Definition at line 30 of file allformats.c.

#define REGISTER_MUXER ( X,
 ) 

Value:

{ \
          extern AVOutputFormat x##_muxer; \
          if(ENABLE_##X##_MUXER)   av_register_output_format(&x##_muxer); }

Definition at line 24 of file allformats.c.

#define REGISTER_PROTOCOL ( X,
 ) 

Value:

{ \
          extern URLProtocol x##_protocol; \
          if(ENABLE_##X##_PROTOCOL) register_protocol(&x##_protocol); }

Definition at line 31 of file allformats.c.

Referenced by av_register_all().


Function Documentation

void av_register_all ( void   ) 

Initialize libavformat and register all the (de)muxers and protocols.

Definition at line 41 of file allformats.c.

Referenced by Configure(), and main().


Generated on Sat Sep 6 21:25:02 2008 for ffmpeg by  doxygen 1.5.6