summaryrefslogtreecommitdiff
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2010-10-02 09:51:26 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2010-10-02 09:51:26 +0000
commit645e75992d8876a5e0aa056739885d3afd08d431 (patch)
tree8433531adc11c06d37f7728d1ebec1de6e257978 /libavcodec/Makefile
parent1405782cf4eaae7fd4bcb3d9da2c39f655314b41 (diff)
Fix GSM decoding: regular GSM and MSGSM do not use the same
bitstream endianness, so they cannot reuse the same code without a lot of function call overhead. Thus use templating to compile two different binaries. Originally committed as revision 25312 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 83aece2650..385ae027dd 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -136,8 +136,8 @@ OBJS-$(CONFIG_FRAPS_DECODER) += fraps.o
OBJS-$(CONFIG_FRWU_DECODER) += frwu.o
OBJS-$(CONFIG_GIF_DECODER) += gifdec.o lzw.o
OBJS-$(CONFIG_GIF_ENCODER) += gif.o lzwenc.o
-OBJS-$(CONFIG_GSM_DECODER) += gsmdec.o
-OBJS-$(CONFIG_GSM_MS_DECODER) += gsmdec.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 \
mpegvideo.o error_resilience.o
OBJS-$(CONFIG_H261_ENCODER) += h261enc.o h261.o \