diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-07-26 10:46:17 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-07-26 10:46:17 +0000 |
commit | 31cf7e95b4eb636cbc94e77021080611c27a34b1 (patch) | |
tree | 5f9a03202a2c52f5ddf0b16678dc2cf8e38084a9 /firmware/target/arm/pcm-pp.c | |
parent | 414dd752eb1c3db6c2ec06760be0c06451c7afd0 (diff) |
Reenable scaling on Sansa since a reasonable solution to clicks has been found.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13995 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/pcm-pp.c')
-rw-r--r-- | firmware/target/arm/pcm-pp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/pcm-pp.c b/firmware/target/arm/pcm-pp.c index 29e5275745..5ac15fe00c 100644 --- a/firmware/target/arm/pcm-pp.c +++ b/firmware/target/arm/pcm-pp.c @@ -378,7 +378,7 @@ void fiq_record(void) if (audio_channels == 2) { /* RX is stereo */ while (p_size > 0) { - if (FIFO_FREE_COUNT < 8) { + if (FIFO_FREE_COUNT < 2) { /* enable interrupt */ IISCONFIG |= (1 << 0); goto fiq_record_exit; @@ -402,7 +402,7 @@ void fiq_record(void) else { /* RX is left channel mono */ while (p_size > 0) { - if (FIFO_FREE_COUNT < 8) { + if (FIFO_FREE_COUNT < 2) { /* enable interrupt */ IISCONFIG |= (1 << 0); goto fiq_record_exit; |