summaryrefslogtreecommitdiff
path: root/doc/ffmpeg_powerpc_performance_evaluation_howto.txt
diff options
context:
space:
mode:
authorRomain Dolbeau <dolbeau@irisa.fr>2004-04-22 13:21:59 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-04-22 13:21:59 +0000
commit9007f51460bfb78813f25b37d3484c7b40ceb0d1 (patch)
tree8d68fd44fa4ff6c7c401b09c8e6ee85db8a54030 /doc/ffmpeg_powerpc_performance_evaluation_howto.txt
parent2750b827b3144a62fdc161a47341dd58764522b7 (diff)
better hadamard8_diff16 in AltiVec, and more patch by (Romain Dolbeau <dolbeau at irisa dot fr>)
Originally committed as revision 3038 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc/ffmpeg_powerpc_performance_evaluation_howto.txt')
-rw-r--r--doc/ffmpeg_powerpc_performance_evaluation_howto.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ffmpeg_powerpc_performance_evaluation_howto.txt b/doc/ffmpeg_powerpc_performance_evaluation_howto.txt
index bd1cbb6878..dd0145a2d1 100644
--- a/doc/ffmpeg_powerpc_performance_evaluation_howto.txt
+++ b/doc/ffmpeg_powerpc_performance_evaluation_howto.txt
@@ -17,7 +17,7 @@ The firsts are always available, always active, but they're not very accurate :
The PMC are much more useful : not only they can report cycle-accurate timing, but they can also be used to monitor many other parameters, such as the number of AltiVec stalls for every kind of instructions, or instruction cache misses. The downside is that not all processors support the PMC (all G3, all G4 and the 970 do support them), and they're inactive by default - you need to activate them with a dedicated tool. Also, the number of available PMC depend on the procesor : the various 604 have 2, the various 75x (aka. G3) have 4, anbd the various 74xx (aka G4) have 6.
-*WARNING*: The powerpc 970 is not very well documented, and it seems its PMC registers are 64bits wide. The current implementation in FFMpeg assume the register are 32bits wide, and will *not* work on a powerpc 970 (aka G5).
+*WARNING*: The powerpc 970 is not very well documented, and its PMC registers are 64bits wide. To properly notify the code, you *must* tune for the 970 (using --tune=970), or the code will assume 32bits registers.
II - Enabling FFmpeg PowerPC performance support