git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
SH4: fix IDCT
[ffmpeg.git]
/
libavcodec
/
sh4
/
idct_sh4.c
diff --git
a/libavcodec/sh4/idct_sh4.c
b/libavcodec/sh4/idct_sh4.c
index
b684e8f
..
a11a0c7
100644
(file)
--- a/
libavcodec/sh4/idct_sh4.c
+++ b/
libavcodec/sh4/idct_sh4.c
@@
-138,7
+138,7
@@
void idct_sh4(DCTELEM *block)
int ofs1,ofs2,ofs3;
#if defined(__SH4__)
-#error "FIXME!! change to single float"
+ __asm__ ("fschg");
#endif
/* row */
@@
-253,7
+253,7
@@
void idct_sh4(DCTELEM *block)
} while(--i);
#if defined(__SH4__)
-#error "FIXME!! change to double"
+ __asm__ ("fschg");
#endif
}
#else