summaryrefslogtreecommitdiff
path: root/apps/plugins/mpa2wav.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpa2wav.c')
-rw-r--r--apps/plugins/mpa2wav.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/mpa2wav.c b/apps/plugins/mpa2wav.c
index bff7608d98..025cb82dcb 100644
--- a/apps/plugins/mpa2wav.c
+++ b/apps/plugins/mpa2wav.c
@@ -19,6 +19,9 @@
19 19
20#include "plugin.h" 20#include "plugin.h"
21 21
22#if (CONFIG_HWCODEC == MASNONE) && !defined(SIMULATOR)
23/* software codec platforms, not for simulator */
24
22#include <codecs/libmad/mad.h> 25#include <codecs/libmad/mad.h>
23 26
24typedef struct ao_sample_format { 27typedef struct ao_sample_format {
@@ -478,3 +481,4 @@ enum plugin_status plugin_start(struct plugin_api* api, void* file)
478 481
479 return PLUGIN_OK; 482 return PLUGIN_OK;
480} 483}
484#endif /* CONFIG_HWCODEC == MASNONE */