FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions
allformats.c File Reference
#include "avformat.h"
#include "rtp.h"
#include "rdt.h"
#include "url.h"
#include "version.h"

Go to the source code of this file.

Macros

#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 muxers, demuxers and protocols. More...
 

Macro Definition Documentation

#define REGISTER_MUXER (   X,
 
)
Value:
{ \
extern AVOutputFormat ff_##x##_muxer; \
if (CONFIG_##X##_MUXER) \
av_register_output_format(&ff_##x##_muxer); \
}
if()
Definition: avfilter.c:975
void av_register_output_format(AVOutputFormat *format)
Definition: format.c:71

Definition at line 28 of file allformats.c.

Referenced by av_register_all().

#define REGISTER_DEMUXER (   X,
 
)
Value:
{ \
extern AVInputFormat ff_##x##_demuxer; \
if (CONFIG_##X##_DEMUXER) \
av_register_input_format(&ff_##x##_demuxer); \
}
if()
Definition: avfilter.c:975
void av_register_input_format(AVInputFormat *format)
Definition: format.c:61

Definition at line 35 of file allformats.c.

Referenced by av_register_all().

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

Definition at line 42 of file allformats.c.

Referenced by av_register_all().

#define REGISTER_PROTOCOL (   X,
 
)
Value:
{ \
extern URLProtocol ff_##x##_protocol; \
if (CONFIG_##X##_PROTOCOL) \
ffurl_register_protocol(&ff_##x##_protocol); \
}
if()
Definition: avfilter.c:975
int ffurl_register_protocol(URLProtocol *protocol)
Register the URLProtocol protocol.
Definition: avio.c:98

Definition at line 44 of file allformats.c.

Referenced by av_register_all().