From 6233de05464c11b714cbfcb2692ff22691b1475a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 14 Jul 2009 23:07:41 +0200 Subject: encoder/twolame: new encoder plugin based on libtwolame This encoder plugin is a replacement for the LAME encoder plugin for those who prefer a "free" (non-patent encumbered) encoder library. Most of the plugin source code is copied from the LAME encoder plugin, since the LAME and TwoLAME APIs are nearly the same. --- Makefile.am | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 7b16b1116..5c53ca5c1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -432,10 +432,12 @@ endif ENCODER_CFLAGS = \ $(LAME_CFLAGS) \ + $(TWOLAME_CFLAGS) \ $(VORBISENC_CFLAGS) ENCODER_LIBS = \ $(LAME_LIBS) \ + $(TWOLAME_LIBS) \ $(VORBISENC_LIBS) ENCODER_SRC = @@ -450,6 +452,10 @@ endif if ENABLE_LAME_ENCODER ENCODER_SRC += src/encoder/lame_encoder.c endif + +if ENABLE_TWOLAME_ENCODER +ENCODER_SRC += src/encoder/twolame_encoder.c +endif endif -- cgit v1.2.3