0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Put special CFLAGS for low accuracy tremor in the Makefile, similar to the

way we do for libfaad2.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22640 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-03-16 21:54:48 +00:00
parent 8bb8c1e009
commit 2ee09b0a5f
2 changed files with 2 additions and 3 deletions

3
configure vendored
View File

@ -5698,7 +5698,6 @@ if test "$_tremor_internal" = yes ; then
_codecmodules="tremor(internal) $_codecmodules"
_res_comment="internal Tremor"
if test "$_tremor_low" = yes ; then
_tremor_flags='-D_LOW_ACCURACY_'
_res_comment="internal low accuracy Tremor"
fi
elif test "$_tremor_external" = yes ; then
@ -7490,7 +7489,7 @@ MP3LIB = $_mp3lib
LIBA52 = $_liba52
LIBMPEG2 = $_libmpeg2
TREMOR_INTERNAL = $_tremor_internal
TREMOR_FLAGS = $_tremor_flags
TREMOR_LOW = $_tremor_low
FAAD = $_faad
SPEEX = $_speex

View File

@ -17,6 +17,6 @@ SRCS_COMMON = bitwise.c \
synthesis.c \
window.c \
CFLAGS = $(TREMOR_FLAGS)
CFLAGS-$(TREMOR_LOW) += -D_LOW_ACCURACY_
include ../mpcommon.mak