Mercurial > libavcodec.hg
comparison allcodecs.c @ 5124:5f9cbdd466fe libavcodec
move codecs declarations from avcodec.h to allcodecs.h
| author | aurel |
|---|---|
| date | Mon, 11 Jun 2007 16:05:32 +0000 |
| parents | 1deb3e53da27 |
| children | f3873cd7f473 |
comparison
equal
deleted
inserted
replaced
| 5123:f9a27365ffcb | 5124:5f9cbdd466fe |
|---|---|
| 22 /** | 22 /** |
| 23 * @file allcodecs.c | 23 * @file allcodecs.c |
| 24 * Provides registration of all codecs, parsers and bitstream filters for libavcodec. | 24 * Provides registration of all codecs, parsers and bitstream filters for libavcodec. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "avcodec.h" | 27 #include "allcodecs.h" |
| 28 | 28 |
| 29 #define REGISTER_ENCODER(X,x) \ | 29 #define REGISTER_ENCODER(X,x) \ |
| 30 if(ENABLE_##X##_ENCODER) register_avcodec(&x##_encoder) | 30 if(ENABLE_##X##_ENCODER) register_avcodec(&x##_encoder) |
| 31 #define REGISTER_DECODER(X,x) \ | 31 #define REGISTER_DECODER(X,x) \ |
| 32 if(ENABLE_##X##_DECODER) register_avcodec(&x##_decoder) | 32 if(ENABLE_##X##_DECODER) register_avcodec(&x##_decoder) |
