Commit caf014d4 authored by mru's avatar mru

SH4: fix IDCT

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15882 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 93dbfd59
......@@ -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