This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
SH4: fix IDCT
Originally committed as revision 15882 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård
16 years ago
parent
6f15dd8d14
commit
df69be0c13
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavcodec/sh4/idct_sh4.c
+ 2
- 2
libavcodec/sh4/idct_sh4.c
View File
@@ -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
Write
Preview
Loading…
Cancel
Save