diff options
author | foo86 | 2016-01-16 11:54:38 +0300 |
---|---|---|
committer | Hendrik Leppkes | 2016-01-31 17:09:38 +0100 |
commit | ae5b2c52501d5009fe712334428138a9b758849b (patch) | |
tree | 8e30d705d98efe3b249ff3a57eb01789c3ff4c4f /tests/checkasm | |
parent | 0930b2dd1f01213ca1f08aff3a9b8b0d5515cede (diff) |
avcodec/dca: add new decoder based on libdcadec
Diffstat (limited to 'tests/checkasm')
-rw-r--r-- | tests/checkasm/Makefile | 2 | ||||
-rw-r--r-- | tests/checkasm/checkasm.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/checkasm/Makefile b/tests/checkasm/Makefile index 14a11d64c3..07fe5bc92f 100644 --- a/tests/checkasm/Makefile +++ b/tests/checkasm/Makefile @@ -1,7 +1,7 @@ # libavcodec tests AVCODECOBJS-$(CONFIG_ALAC_DECODER) += alacdsp.o AVCODECOBJS-$(CONFIG_BSWAPDSP) += bswapdsp.o -#AVCODECOBJS-$(CONFIG_DCA_DECODER) += synth_filter.o +AVCODECOBJS-$(CONFIG_DCA_DECODER) += synth_filter.o AVCODECOBJS-$(CONFIG_FLACDSP) += flacdsp.o AVCODECOBJS-$(CONFIG_FMTCONVERT) += fmtconvert.o AVCODECOBJS-$(CONFIG_H264PRED) += h264pred.o diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c index f7d1331317..49fd2af379 100644 --- a/tests/checkasm/checkasm.c +++ b/tests/checkasm/checkasm.c @@ -71,9 +71,9 @@ static const struct { #if CONFIG_BSWAPDSP { "bswapdsp", checkasm_check_bswapdsp }, #endif -/* #if CONFIG_DCA_DECODER + #if CONFIG_DCA_DECODER { "synth_filter", checkasm_check_synth_filter }, - #endif*/ + #endif #if CONFIG_FLACDSP { "flacdsp", checkasm_check_flacdsp }, #endif |