diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-07-05 12:55:14 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-07-05 12:55:14 +0200 |
commit | d3e51b4118585fbd4c314931bdf97502aeeee6d4 (patch) | |
tree | 92663e0ff046494aabdf1227ebaee26d7c916ddb | |
parent | 362cfe8ce1012ee7ff9fa0503bfcb0c465c9d1b9 (diff) | |
download | ffmpeg-d3e51b4118585fbd4c314931bdf97502aeeee6d4.tar.gz |
Fix standalone compilation of the amv encoder.
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | libavcodec/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2019,7 +2019,7 @@ als_decoder_select="bswapdsp" amrnb_decoder_select="lsp" amrwb_decoder_select="lsp" amv_decoder_select="sp5x_decoder exif" -amv_encoder_select="aandcttables" +amv_encoder_select="aandcttables mpegvideoenc" ape_decoder_select="bswapdsp llauddsp" asv1_decoder_select="blockdsp bswapdsp idctdsp" asv1_encoder_select="bswapdsp dsputil" diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 90f49770c0..97efc50684 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -122,7 +122,7 @@ OBJS-$(CONFIG_AMRWB_DECODER) += amrwbdec.o celp_filters.o \ celp_math.o acelp_filters.o \ acelp_vectors.o \ acelp_pitch_delay.o -OBJS-$(CONFIG_AMV_ENCODER) += mjpegenc.o mjpeg.o \ +OBJS-$(CONFIG_AMV_ENCODER) += mjpegenc.o mjpeg.o mjpegenc_common.o \ mpegvideo_enc.o motion_est.o \ ratecontrol.o mpeg12data.o \ mpegvideo.o |