FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions
alldevices.c File Reference
#include "config.h"
#include "avdevice.h"

Go to the source code of this file.

Macros

#define REGISTER_OUTDEV(X, x)
 
#define REGISTER_INDEV(X, x)
 
#define REGISTER_INOUTDEV(X, x)   REGISTER_OUTDEV(X, x); REGISTER_INDEV(X, x)
 

Functions

void avdevice_register_all (void)
 Initialize libavdevice and register all the input and output devices. More...
 

Macro Definition Documentation

#define REGISTER_OUTDEV (   X,
 
)
Value:
{ \
extern AVOutputFormat ff_##x##_muxer; \
if (CONFIG_##X##_OUTDEV) \
av_register_output_format(&ff_##x##_muxer); \
}
void av_register_output_format(AVOutputFormat *format)
Definition: format.c:71
if(ret< 0)
Definition: vf_mcdeint.c:282

Definition at line 24 of file alldevices.c.

Referenced by avdevice_register_all().

#define REGISTER_INDEV (   X,
 
)
Value:
{ \
extern AVInputFormat ff_##x##_demuxer; \
if (CONFIG_##X##_INDEV) \
av_register_input_format(&ff_##x##_demuxer); \
}
void av_register_input_format(AVInputFormat *format)
Definition: format.c:61
if(ret< 0)
Definition: vf_mcdeint.c:282

Definition at line 31 of file alldevices.c.

Referenced by avdevice_register_all().

#define REGISTER_INOUTDEV (   X,
 
)    REGISTER_OUTDEV(X, x); REGISTER_INDEV(X, x)

Definition at line 38 of file alldevices.c.

Referenced by avdevice_register_all().

Function Documentation

void avdevice_register_all ( void  )

Initialize libavdevice and register all the input and output devices.

Warning
This function is not thread safe.

Definition at line 40 of file alldevices.c.

Referenced by main().