diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2006-11-26 12:02:47 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2006-11-26 12:02:47 +0000 |
| commit | bbef13eddfefffa1fbcf82185ed73c04a18d22eb (patch) | |
| tree | bf7d8a684d5031851185498db8388f60a29be662 /apps/codecs/a52.c | |
| parent | 4049d44b03d4a17cbf2f48f5f1360ac397da5ef5 (diff) | |
| download | rockbox-bbef13eddfefffa1fbcf82185ed73c04a18d22eb.zip rockbox-bbef13eddfefffa1fbcf82185ed73c04a18d22eb.tar.gz rockbox-bbef13eddfefffa1fbcf82185ed73c04a18d22eb.tar.bz2 rockbox-bbef13eddfefffa1fbcf82185ed73c04a18d22eb.tar.xz | |
SWCODEC: Stop clicks between tracks when resampler is active by only switching the DSP frequency and not resetting the resampler at track boundaries. Will make sure DSP is correctly flushed at dicontinuities but don't hear any problems currently.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11600 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/a52.c')
| -rw-r--r-- | apps/codecs/a52.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/a52.c b/apps/codecs/a52.c index 3d0c35d..b7190be 100644 --- a/apps/codecs/a52.c +++ b/apps/codecs/a52.c @@ -154,7 +154,7 @@ next_track: while (!ci->taginfo_ready) ci->yield(); - ci->configure(DSP_SET_FREQUENCY, (long *)(ci->id3->frequency)); + ci->configure(DSP_SWITCH_FREQUENCY, (long *)(ci->id3->frequency)); /* Intialise the A52 decoder and check for success */ state = a52_init(0); |