forked from len0rd/rockbox
Do not build on simulator or non-software codecs targets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5984 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
aa97e4d498
commit
3c166be0a4
1 changed files with 4 additions and 0 deletions
|
@ -19,6 +19,9 @@
|
|||
|
||||
/* Various "helper functions" common to all the xxx2wav decoder plugins */
|
||||
|
||||
#if (CONFIG_HWCODEC == MASNONE) && !defined(SIMULATOR)
|
||||
/* software codec platforms, not for simulator */
|
||||
|
||||
#include "plugin.h"
|
||||
#include "xxx2wav.h"
|
||||
|
||||
|
@ -222,3 +225,4 @@ void close_wav(file_info_struct* file_info) {
|
|||
local_rb->write(file_info->outfile,wav_header,sizeof(wav_header));
|
||||
local_rb->close(file_info->outfile);
|
||||
}
|
||||
#endif /* CONFIG_HWCODEC == MASNONE */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue