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/Makefile | |
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/Makefile')
-rw-r--r-- | libavcodec/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 225e340438..cacf074389 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -197,8 +197,10 @@ endif ifeq ($(CONFIG_XL_DECODER),yes) OBJS+= xl.o endif - - +ifeq ($(CONFIG_BMP_DECODER),yes) + OBJS+= bmp.o +endif + AMROBJS= ifeq ($(AMR_NB),yes) ifeq ($(AMR_NB_FIXED),yes) |