diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2008-12-12 11:01:07 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2008-12-12 11:01:07 +0000 |
| commit | e69d567d9ebf7d236ff9663b11ac396cc71dcd75 (patch) | |
| tree | 093b9d1bc979d79be1fcd0daac1d8daf8ac55503 /apps/plugins | |
| parent | 0ad97d13fc52b28de566dc0ddaf7245583eec2cc (diff) | |
| download | rockbox-e69d567d9ebf7d236ff9663b11ac396cc71dcd75.zip rockbox-e69d567d9ebf7d236ff9663b11ac396cc71dcd75.tar.gz rockbox-e69d567d9ebf7d236ff9663b11ac396cc71dcd75.tar.bz2 rockbox-e69d567d9ebf7d236ff9663b11ac396cc71dcd75.tar.xz | |
Bring consistency to pcm implementation and samplerate handling. Less low-level duplication. A small test_sampr fix so it works on coldfire again.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19400 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/test_sampr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/test_sampr.c b/apps/plugins/test_sampr.c index 1131a7a..a23b907 100644 --- a/apps/plugins/test_sampr.c +++ b/apps/plugins/test_sampr.c @@ -46,7 +46,7 @@ static unsigned int gen_thread_id; #define OUTPUT_CHUNK_SAMPLES 1152 #define OUTPUT_CHUNK_SIZE (OUTPUT_CHUNK_SAMPLES*sizeof(int16_t)*2) static uint16_t output_buf[OUTPUT_CHUNK_COUNT][OUTPUT_CHUNK_SAMPLES*2] - IBSS_ATTR __attribute__((aligned(4))); + __attribute__((aligned(4))); static int output_head IBSS_ATTR; static int output_tail IBSS_ATTR; static int output_step IBSS_ATTR; |