Commit df69be0c authored by Måns Rullgård's avatar Måns Rullgård

SH4: fix IDCT

Originally committed as revision 15882 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6f15dd8d
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment