Browse code

minor English corrections

Originally committed as revision 12171 to svn://svn.ffmpeg.org/ffmpeg/trunk

Mike Melanson authored on 2008/02/22 03:46:49
Showing 1 changed files
... ...
@@ -16,7 +16,7 @@ Understanding these overoptimized functions:
16 16
 --------------------------------------------
17 17
 As many functions tend to be a bit difficult to understand because
18 18
 of optimizations, it can be hard to optimize them further, or write
19
-architecture-specific versions. It is recommened to look at older
19
+architecture-specific versions. It is recommended to look at older
20 20
 revisions of the interesting files (for a web frontend try ViewVC at
21 21
 http://svn.mplayerhq.hu/ffmpeg/trunk/).
22 22
 Alternatively, look into the other architecture-specific versions in
... ...
@@ -43,8 +43,8 @@ readable instead of making it 1% faster.
43 43
 
44 44
 WTF is that function good for ....:
45 45
 -----------------------------------
46
-The primary purpose of that list is to avoid wasting time to optimize functions
47
-which are rarely used
46
+The primary purpose of this list is to avoid wasting time optimizing functions
47
+which are rarely used.
48 48
 
49 49
 put(_no_rnd)_pixels{,_x2,_y2,_xy2}
50 50
     Used in motion compensation (en/decoding).
... ...
@@ -164,7 +164,7 @@ do{
164 164
         ...
165 165
 }while()
166 166
 
167
-Use asm() instead of intrinsics. Later requires a good optimizing compiler
167
+Use asm() instead of intrinsics. The latter requires a good optimizing compiler
168 168
 which gcc is not.
169 169
 
170 170