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
commit
df69be0c13
1 changed files with 2 additions and 2 deletions
  1. +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


Loading…
Cancel
Save