diff options
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 5ffde6b..a513183 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -271,8 +271,10 @@ struct plugin_api { struct mp3entry* (*audio_current_track)(void); void (*audio_flush_and_reload_tracks)(void); int (*audio_get_file_pos)(void); -#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F) +#if !defined(SIMULATOR) && (CONFIG_HWCODEC != MASNONE) unsigned long (*mpeg_get_last_header)(void); +#endif +#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F) void (*sound_set_pitch)(int pitch); #endif |