diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-21 14:05:46 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-21 14:26:23 +0200 |
commit | e4255eaf47373c0c1691cbcbc0816253e938b662 (patch) | |
tree | 2943cf510ddf31c2adbe5fb2087b9f6830da5fd2 /libavcodec/Makefile | |
parent | dcbff35199e1596d9d1200e734ef4a4c306e50f1 (diff) | |
download | ffmpeg-e4255eaf47373c0c1691cbcbc0816253e938b662.tar.gz |
ffv1: split decoder and encoder
This is not based on lucas work due to code divergence (its less work this way
than trying to merge from a split based on 2 years outdated code)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 875670b87e..7653c06040 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -184,8 +184,8 @@ OBJS-$(CONFIG_EIGHTSVX_FIB_DECODER) += 8svx.o OBJS-$(CONFIG_ESCAPE124_DECODER) += escape124.o OBJS-$(CONFIG_ESCAPE130_DECODER) += escape130.o OBJS-$(CONFIG_EXR_DECODER) += exr.o -OBJS-$(CONFIG_FFV1_DECODER) += ffv1.o -OBJS-$(CONFIG_FFV1_ENCODER) += ffv1.o +OBJS-$(CONFIG_FFV1_DECODER) += ffv1dec.o ffv1.o +OBJS-$(CONFIG_FFV1_ENCODER) += ffv1enc.o ffv1.o OBJS-$(CONFIG_FFVHUFF_DECODER) += huffyuv.o OBJS-$(CONFIG_FFVHUFF_ENCODER) += huffyuv.o OBJS-$(CONFIG_FFWAVESYNTH_DECODER) += ffwavesynth.o |