diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2011-07-02 11:55:38 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2011-07-02 11:55:38 +0000 |
| commit | 22b6def065ab7c2ca030f405577e34104ad20011 (patch) | |
| tree | 6be548bf591d2365077b74679048737fe51792a2 /apps/plugins/starfield.c | |
| parent | 8c954e28b75b47543f69abe2c169d83ad38c26ae (diff) | |
| download | rockbox-22b6def065ab7c2ca030f405577e34104ad20011.zip rockbox-22b6def065ab7c2ca030f405577e34104ad20011.tar.gz rockbox-22b6def065ab7c2ca030f405577e34104ad20011.tar.bz2 rockbox-22b6def065ab7c2ca030f405577e34104ad20011.tar.xz | |
Use playback channel directly for peakmeters and plugins using peak calculation. Also, for now, don't allow mixer playback to overlap recording, even if full duplex works.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30119 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/starfield.c')
| -rw-r--r-- | apps/plugins/starfield.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/starfield.c b/apps/plugins/starfield.c index 5e832aa..e7bbb42 100644 --- a/apps/plugins/starfield.c +++ b/apps/plugins/starfield.c @@ -422,7 +422,8 @@ int plugin_main(void) /* Get the peaks. ( Borrowed from vu_meter ) */ #if (CONFIG_CODEC == SWCODEC) int left_peak, right_peak; - rb->pcm_calculate_peaks(&left_peak, &right_peak); + rb->mixer_channel_calculate_peaks(PCM_MIXER_CHAN_PLAYBACK, + &left_peak, &right_peak); #else int left_peak = rb->mas_codec_readreg(0xC); int right_peak = rb->mas_codec_readreg(0xD); |