summaryrefslogtreecommitdiff
path: root/apps/codecs/Tremor
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/Tremor')
-rw-r--r--apps/codecs/Tremor/asm_mcf5249.h2
-rw-r--r--apps/codecs/Tremor/floor1.c2
-rw-r--r--apps/codecs/Tremor/vorbisfile.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/Tremor/asm_mcf5249.h b/apps/codecs/Tremor/asm_mcf5249.h
index 4d7f92c089..7d366fa9ca 100644
--- a/apps/codecs/Tremor/asm_mcf5249.h
+++ b/apps/codecs/Tremor/asm_mcf5249.h
@@ -19,7 +19,7 @@
19 19
20#include "os_types.h" 20#include "os_types.h"
21 21
22#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) 22#if defined(CPU_COLDFIRE)
23 23
24/* attribute for 16-byte alignment */ 24/* attribute for 16-byte alignment */
25#define LINE_ATTR __attribute__ ((aligned (16))) 25#define LINE_ATTR __attribute__ ((aligned (16)))
diff --git a/apps/codecs/Tremor/floor1.c b/apps/codecs/Tremor/floor1.c
index a66e7379d7..5f43d563f0 100644
--- a/apps/codecs/Tremor/floor1.c
+++ b/apps/codecs/Tremor/floor1.c
@@ -197,7 +197,7 @@ static vorbis_look_floor *floor1_look(vorbis_dsp_state *vd,vorbis_info_mode *mi,
197static int render_point(int x0,int x1,int y0,int y1,int x){ 197static int render_point(int x0,int x1,int y0,int y1,int x){
198 y0&=0x7fff; /* mask off flag */ 198 y0&=0x7fff; /* mask off flag */
199 y1&=0x7fff; 199 y1&=0x7fff;
200#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) 200#if defined(CPU_COLDFIRE)
201 asm volatile ("sub.l %[x0],%[x];" 201 asm volatile ("sub.l %[x0],%[x];"
202 "sub.l %[y0],%[y1];" 202 "sub.l %[y0],%[y1];"
203 "sub.l %[x0],%[x1];" 203 "sub.l %[x0],%[x1];"
diff --git a/apps/codecs/Tremor/vorbisfile.c b/apps/codecs/Tremor/vorbisfile.c
index 0f39826388..a32d9f2a48 100644
--- a/apps/codecs/Tremor/vorbisfile.c
+++ b/apps/codecs/Tremor/vorbisfile.c
@@ -763,7 +763,7 @@ int ov_clear(OggVorbis_File *vf){
763 763
764int ov_open_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, 764int ov_open_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes,
765 ov_callbacks callbacks){ 765 ov_callbacks callbacks){
766 #if defined(CPU_COLDFIRE) && !defined(SIMULATOR) 766 #if defined(CPU_COLDFIRE)
767 /* this seems to be the closest we get to an init function, let's init emac 767 /* this seems to be the closest we get to an init function, let's init emac
768 here. rounding is disabled because of MULT31_SHIFT15, which will be 768 here. rounding is disabled because of MULT31_SHIFT15, which will be
769 inaccurate with rounding in its current incarnation */ 769 inaccurate with rounding in its current incarnation */