Commit 2c182116 authored by melanson's avatar melanson

minor English corrections


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12171 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b11f00d6
...@@ -16,7 +16,7 @@ Understanding these overoptimized functions: ...@@ -16,7 +16,7 @@ Understanding these overoptimized functions:
-------------------------------------------- --------------------------------------------
As many functions tend to be a bit difficult to understand because As many functions tend to be a bit difficult to understand because
of optimizations, it can be hard to optimize them further, or write of optimizations, it can be hard to optimize them further, or write
architecture-specific versions. It is recommened to look at older architecture-specific versions. It is recommended to look at older
revisions of the interesting files (for a web frontend try ViewVC at revisions of the interesting files (for a web frontend try ViewVC at
http://svn.mplayerhq.hu/ffmpeg/trunk/). http://svn.mplayerhq.hu/ffmpeg/trunk/).
Alternatively, look into the other architecture-specific versions in Alternatively, look into the other architecture-specific versions in
...@@ -43,8 +43,8 @@ readable instead of making it 1% faster. ...@@ -43,8 +43,8 @@ readable instead of making it 1% faster.
WTF is that function good for ....: WTF is that function good for ....:
----------------------------------- -----------------------------------
The primary purpose of that list is to avoid wasting time to optimize functions The primary purpose of this list is to avoid wasting time optimizing functions
which are rarely used which are rarely used.
put(_no_rnd)_pixels{,_x2,_y2,_xy2} put(_no_rnd)_pixels{,_x2,_y2,_xy2}
Used in motion compensation (en/decoding). Used in motion compensation (en/decoding).
...@@ -164,7 +164,7 @@ do{ ...@@ -164,7 +164,7 @@ do{
... ...
}while() }while()
Use asm() instead of intrinsics. Later requires a good optimizing compiler Use asm() instead of intrinsics. The latter requires a good optimizing compiler
which gcc is not. which gcc is not.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment