Mercurial > libavcodec.hg
changeset 12363:8e3a8008bb90 libavcodec
Fix VP8 decoder dependencies
This reverts rev 24674 - the VP8 decoder actually depends on cabac.o.
vp8.c includes vp56.h, which includes cabac.h, which has inline functions
that reference tables from cabac.c.
This fixes compilation with --disable-everything --enable-decoder=vp8.
author | mstorsjo |
---|---|
date | Wed, 04 Aug 2010 05:20:49 +0000 |
parents | 4dc177e736f6 |
children | 2e96cab6ecde |
files | Makefile |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Wed Aug 04 02:23:25 2010 +0000 +++ b/Makefile Wed Aug 04 05:20:49 2010 +0000 @@ -379,7 +379,7 @@ vp3dsp.o cabac.o OBJS-$(CONFIG_VP6_DECODER) += vp6.o vp56.o vp56data.o vp56dsp.o \ vp3dsp.o vp6dsp.o huffman.o cabac.o -OBJS-$(CONFIG_VP8_DECODER) += vp8.o vp8dsp.o +OBJS-$(CONFIG_VP8_DECODER) += vp8.o vp8dsp.o cabac.o OBJS-$(CONFIG_VQA_DECODER) += vqavideo.o OBJS-$(CONFIG_WAVPACK_DECODER) += wavpack.o OBJS-$(CONFIG_WMAPRO_DECODER) += wmaprodec.o wma.o