[FFmpeg-cvslog] r15882 - trunk/libavcodec/sh4/idct_sh4.c
mru
subversion
Wed Nov 19 01:37:31 CET 2008
Author: mru
Date: Wed Nov 19 01:37:30 2008
New Revision: 15882
Log:
SH4: fix IDCT
Modified:
trunk/libavcodec/sh4/idct_sh4.c
Modified: trunk/libavcodec/sh4/idct_sh4.c
==============================================================================
--- trunk/libavcodec/sh4/idct_sh4.c (original)
+++ trunk/libavcodec/sh4/idct_sh4.c Wed Nov 19 01:37:30 2008
@@ -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
More information about the ffmpeg-cvslog
mailing list