Skip to content
Snippets Groups Projects
Commit df69be0c authored by Måns Rullgård's avatar Måns Rullgård
Browse files

SH4: fix IDCT

Originally committed as revision 15882 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6f15dd8d
No related branches found
No related tags found
No related merge requests found
...@@ -138,7 +138,7 @@ void idct_sh4(DCTELEM *block) ...@@ -138,7 +138,7 @@ void idct_sh4(DCTELEM *block)
int ofs1,ofs2,ofs3; int ofs1,ofs2,ofs3;
#if defined(__SH4__) #if defined(__SH4__)
#error "FIXME!! change to single float" __asm__ ("fschg");
#endif #endif
/* row */ /* row */
...@@ -253,7 +253,7 @@ void idct_sh4(DCTELEM *block) ...@@ -253,7 +253,7 @@ void idct_sh4(DCTELEM *block)
} while(--i); } while(--i);
#if defined(__SH4__) #if defined(__SH4__)
#error "FIXME!! change to double" __asm__ ("fschg");
#endif #endif
} }
#else #else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment