Browse Source

don't run AMR tests when transcoding is disabled

fixes #540

Change-Id: I6b0d970ec9d7b8603ee401d8fd41176ee0ffeae4
changes/50/21050/1
Richard Fuchs 8 years ago
parent
commit
06f76e6de4
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      t/Makefile

+ 4
- 1
t/Makefile View File

@ -32,7 +32,10 @@ LDFLAGS+= $(shell pkg-config --libs libswresample)
LDFLAGS+= $(shell pkg-config --libs libavfilter)
endif
SRCS= bitstr-test.c amr-decode-test.c amr-encode-test.c
SRCS= bitstr-test.c
ifeq ($(with_transcoding),yes)
SRCS+= amr-decode-test.c amr-encode-test.c
endif
LIBSRCS= loglib.c auxlib.c str.c rtplib.c
ifeq ($(with_transcoding),yes)
LIBSRCS+= codeclib.c resample.c


Loading…
Cancel
Save