diff options
| author | Dan Everton <dan@iocaine.org> | 2006-03-05 19:46:33 +0000 |
|---|---|---|
| committer | Dan Everton <dan@iocaine.org> | 2006-03-05 19:46:33 +0000 |
| commit | 769925541a0c75a261ab8527afde3211e35a7698 (patch) | |
| tree | 7faf1c9024174a676af66fbd7512f997c0952a29 /apps/plugin.h | |
| parent | d108849812280eb69b5a00bd1f79193237b2e51a (diff) | |
| download | rockbox-769925541a0c75a261ab8527afde3211e35a7698.zip rockbox-769925541a0c75a261ab8527afde3211e35a7698.tar.gz rockbox-769925541a0c75a261ab8527afde3211e35a7698.tar.bz2 rockbox-769925541a0c75a261ab8527afde3211e35a7698.tar.xz | |
sound_set_pitch is not available on Player
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8916 a1c6a512-1295-4272-9138-f99709370657
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 c0ae6c6..be8b01c 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -365,8 +365,10 @@ struct plugin_api { #if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC) unsigned long (*mpeg_get_last_header)(void); #endif - +#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) || \ + (CONFIG_CODEC == SWCODEC) void (*sound_set_pitch)(int pitch); +#endif /* MAS communication */ #if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC) |