diff options
author | Måns Rullgård <mans@mansr.com> | 2005-11-30 01:40:50 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2005-11-30 01:40:50 +0000 |
commit | 9fa62f2aade4ded0ef64ae8c5012ab933d8ad64d (patch) | |
tree | ca441641dc563a4c2658257be452463881a06ed7 /libavcodec/allcodecs.c | |
parent | fd2ab74aae55e610daad7d4883131d1cb603dfbe (diff) | |
download | ffmpeg-9fa62f2aade4ded0ef64ae8c5012ab933d8ad64d.tar.gz |
BMP image decoder
Originally committed as revision 4711 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 8f371ba95b..d7aa1e0a29 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -518,6 +518,10 @@ void avcodec_register_all(void) #endif //CONFIG_ENCODERS #endif /* AMR_WB */ +#ifdef CONFIG_BMP_DECODER + register_avcodec(&bmp_decoder); +#endif + /* pcm codecs */ #if defined (CONFIG_ENCODERS) && defined (CONFIG_DECODERS) #define PCM_CODEC(id, name) \ |