diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-17 19:02:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-17 19:02:43 +0000 |
commit | 0bde73d907dbe684e01bafc979bf4a04ddeace1d (patch) | |
tree | 8dd3d756524d217cee36e8ab18d59a52b1b94fcc /libavcodec/Makefile | |
parent | 5773a746695f445805291d3aa74fa82e948825f2 (diff) | |
download | ffmpeg-0bde73d907dbe684e01bafc979bf4a04ddeace1d.tar.gz |
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
Originally committed as revision 4261 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index e4795f9ede..bfa33962e3 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -151,6 +151,9 @@ endif ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),) OBJS+= vmdav.o endif +ifeq ($(CONFIG_VORBIS_DECODER),yes) + OBJS+= vorbis.o +endif ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),) OBJS+= vp3.o endif |