diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-04-10 23:13:59 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-04-11 21:46:33 +0200 |
commit | 5735f768b0b6d2f71478636502ba1e42f1a9a788 (patch) | |
tree | 75e14068ab4ef0ab4c02e54c74e3a0e74a9d0c54 /libavcodec/Makefile | |
parent | 6952301f33add347906af4d3e10b36a57d933ce0 (diff) | |
download | ffmpeg-5735f768b0b6d2f71478636502ba1e42f1a9a788.tar.gz |
h261: move tables from header to .c file.
Currently they end up twice in the binary, since both
encoder and decoder include the header and thus each gets
their own copy.
This is clearly nonsense for the const tables, but shouldn't
be necessary for the RLTable either.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
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 e8c2fd5dc3..9a0e75c1ad 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -184,9 +184,9 @@ OBJS-$(CONFIG_GIF_DECODER) += gifdec.o lzw.o OBJS-$(CONFIG_GIF_ENCODER) += gif.o lzwenc.o OBJS-$(CONFIG_GSM_DECODER) += gsmdec.o gsmdec_data.o msgsmdec.o OBJS-$(CONFIG_GSM_MS_DECODER) += gsmdec.o gsmdec_data.o msgsmdec.o -OBJS-$(CONFIG_H261_DECODER) += h261dec.o h261.o \ +OBJS-$(CONFIG_H261_DECODER) += h261dec.o h261.o h261data.o \ mpegvideo.o error_resilience.o -OBJS-$(CONFIG_H261_ENCODER) += h261enc.o h261.o \ +OBJS-$(CONFIG_H261_ENCODER) += h261enc.o h261.o h261data.o \ mpegvideo_enc.o motion_est.o \ ratecontrol.o mpeg12data.o \ mpegvideo.o |