diff options
author | Aurelien Jacobs | 2007-07-14 13:11:15 +0000 |
---|---|---|
committer | Aurelien Jacobs | 2007-07-14 13:11:15 +0000 |
commit | e2525c6f78fed16cdf8046818cafdf30174019d2 (patch) | |
tree | e03ed5a3a70f1a7df4c83200f1d890aa1f20d026 /libavcodec | |
parent | b3fc09254868c8b241649bcbb9b8ba0730acc797 (diff) |
The svq3 decoder depends on h264idct.o and also requires h264_parser.
This fixes the following option set:
--disable-encoders --disable-decoders --disable-parsers --disable-bsfs
--disable-muxers --disable-demuxers --disable-protocols --enable-decoder=svq3
Originally committed as revision 9638 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 62bcc03ce4..e617cc504e 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -166,7 +166,7 @@ OBJS-$(CONFIG_SONIC_LS_ENCODER) += sonic.o golomb.o OBJS-$(CONFIG_SP5X_DECODER) += sp5xdec.o mjpegdec.o mjpeg.o OBJS-$(CONFIG_SVQ1_DECODER) += svq1dec.o svq1.o h263.o OBJS-$(CONFIG_SVQ1_ENCODER) += svq1enc.o svq1.o motion_est.o h263.o -OBJS-$(CONFIG_SVQ3_DECODER) += h264.o cabac.o golomb.o +OBJS-$(CONFIG_SVQ3_DECODER) += h264.o h264idct.o cabac.o golomb.o OBJS-$(CONFIG_TARGA_DECODER) += targa.o OBJS-$(CONFIG_TARGA_ENCODER) += targaenc.o rle.o OBJS-$(CONFIG_THEORA_DECODER) += vp3.o xiph.o vp3dsp.o |