diff options
author | Romain Dolbeau <dolbeau@irisa.fr> | 2003-01-19 19:00:45 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-01-19 19:00:45 +0000 |
commit | 35e5fb067e0099fde6c3429131f11433eb92f22b (patch) | |
tree | 50480aa9498173e6b2f12f977d6e948b8f90fa53 /configure | |
parent | 8c55915b14897fd9bdaae9241f2dd54c00a869ef (diff) | |
download | ffmpeg-35e5fb067e0099fde6c3429131f11433eb92f22b.tar.gz |
PPC perf, PPC clear_block, AltiVec put_pixels8_xy2 patch by (Romain Dolbeau <dolbeau at irisa dot fr>)
Originally committed as revision 1476 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -621,6 +621,10 @@ elif test "$cpu" = "sparc64" ; then elif test "$cpu" = "powerpc" ; then echo "TARGET_ARCH_POWERPC=yes" >> config.mak echo "#define ARCH_POWERPC 1" >> $TMPH + echo "// Enable the next line to get PowerPC performance report" >> $TMPH + echo "// #define POWERPC_TBL_PERFORMANCE_REPORT 1" >> $TMPH + echo "// Enable the next line to use PMC registers instead of TBL" >> $TMPH + echo "// #define POWERPC_PERF_USE_PMC 1" >> $TMPH elif test "$cpu" = "mips" ; then echo "TARGET_ARCH_MIPS=yes" >> config.mak echo "#define ARCH_MIPS 1" >> $TMPH @@ -644,8 +648,6 @@ fi if test "$altivec" = "yes" ; then echo "TARGET_ALTIVEC=yes" >> config.mak echo "#define HAVE_ALTIVEC 1" >> $TMPH - echo "// Enable the next line to get AltiVec performance report" >> $TMPH - echo "// #define ALTIVEC_TBL_PERFORMANCE_REPORT 1" >> $TMPH echo "// Enable the next line to use the reference C code instead of AltiVec" >> $TMPH echo "// #define ALTIVEC_USE_REFERENCE_C_CODE 1" >> $TMPH fi |