diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-05-21 12:51:29 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-05-21 12:51:29 +0000 |
commit | d632239c9cc5d97397b283bb7a36f2d9e818e1bd (patch) | |
tree | 8725994dfd4bc1274d909bd3a55f6458d7cad4e7 /libavcodec/Makefile | |
parent | e21c53bd392f78021220cb11b81bff7c936b1b13 (diff) | |
download | ffmpeg-d632239c9cc5d97397b283bb7a36f2d9e818e1bd.tar.gz |
Split the h261.c file into separate files for the encoder, decoder and common stuff.
Originally committed as revision 9090 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 6701a4e146..f696cdf717 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -83,8 +83,8 @@ OBJS-$(CONFIG_FOURXM_DECODER) += 4xm.o OBJS-$(CONFIG_FRAPS_DECODER) += fraps.o OBJS-$(CONFIG_GIF_DECODER) += gifdec.o lzw.o OBJS-$(CONFIG_GIF_ENCODER) += gif.o -OBJS-$(CONFIG_H261_DECODER) += h261.o -OBJS-$(CONFIG_H261_ENCODER) += h261.o +OBJS-$(CONFIG_H261_DECODER) += h261dec.o h261.o +OBJS-$(CONFIG_H261_ENCODER) += h261enc.o h261.o OBJS-$(CONFIG_H263_DECODER) += h263dec.o OBJS-$(CONFIG_H264_DECODER) += h264.o OBJS-$(CONFIG_H264_ENCODER) += h264enc.o h264dsp.o |