diff options
Diffstat (limited to 'apps/codecs/lib')
| -rw-r--r-- | apps/codecs/lib/SOURCES | 2 | ||||
| -rw-r--r-- | apps/codecs/lib/xxx2wav.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/lib/SOURCES b/apps/codecs/lib/SOURCES index 352fedb..b0e5017 100644 --- a/apps/codecs/lib/SOURCES +++ b/apps/codecs/lib/SOURCES @@ -1,4 +1,4 @@ -#if CONFIG_HWCODEC == MASNONE /* software codec platforms */ +#if CONFIG_CODEC == SWCODEC /* software codec platforms */ codeclib.c xxx2wav.c #endif diff --git a/apps/codecs/lib/xxx2wav.c b/apps/codecs/lib/xxx2wav.c index 66cc8b3..cd09d32 100644 --- a/apps/codecs/lib/xxx2wav.c +++ b/apps/codecs/lib/xxx2wav.c @@ -19,7 +19,7 @@ /* Various "helper functions" common to all the xxx2wav decoder plugins */ -#if (CONFIG_HWCODEC == MASNONE) +#if (CONFIG_CODEC == SWCODEC) /* software codec platforms, not for simulator */ #include "codecs.h" @@ -138,4 +138,4 @@ void qsort(void *base, size_t nmemb, size_t size, local_rb->qsort(base,nmemb,size,compar); } -#endif /* CONFIG_HWCODEC == MASNONE */ +#endif /* CONFIG_CODEC == SWCODEC */ |