diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-04-11 01:11:08 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-05-09 18:18:05 +0200 |
commit | 5b432d66ce49cbadcac832bffd6e22fda83807d3 (patch) | |
tree | a6ed5e3700d331f5b07d733e93e30b1cef980d1c /libavcodec/Makefile | |
parent | 727af82a84999c6fbd30856c42ac1477e8fbe011 (diff) | |
download | ffmpeg-5b432d66ce49cbadcac832bffd6e22fda83807d3.tar.gz |
libxvid: Separate libxvid encoder from libxvid rate control code.
This allows compiling the Xvid rate control code without the encoder.
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 7ee13fd710..c542f6e20b 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -42,6 +42,7 @@ OBJS-$(CONFIG_GOLOMB) += golomb.o OBJS-$(CONFIG_H264DSP) += h264dsp.o h264idct.o OBJS-$(CONFIG_H264PRED) += h264pred.o OBJS-$(CONFIG_HUFFMAN) += huffman.o +OBJS-$(CONFIG_LIBXVID) += libxvid_rc.o OBJS-$(CONFIG_LPC) += lpc.o OBJS-$(CONFIG_LSP) += lsp.o OBJS-$(CONFIG_MDCT) += mdct_fixed.o mdct_float.o @@ -615,7 +616,7 @@ OBJS-$(CONFIG_LIBVPX_DECODER) += libvpxdec.o OBJS-$(CONFIG_LIBVPX_ENCODER) += libvpxenc.o OBJS-$(CONFIG_LIBX264_ENCODER) += libx264.o OBJS-$(CONFIG_LIBXAVS_ENCODER) += libxavs.o -OBJS-$(CONFIG_LIBXVID) += libxvidff.o libxvid_rc.o +OBJS-$(CONFIG_LIBXVID_ENCODER) += libxvidff.o # parsers OBJS-$(CONFIG_AAC_PARSER) += aac_parser.o aac_ac3_parser.o \ |