diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-21 18:42:33 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-21 18:42:33 +0000 |
commit | 8144dff032e1d6697104ae0c11b4941c682382db (patch) | |
tree | b8eb113947e00678688a91bb75117418aa6b979c | |
parent | 1d64df10295f81cd99e49f6ca5fee4844f14d35b (diff) | |
download | ffmpeg-8144dff032e1d6697104ae0c11b4941c682382db.tar.gz |
typos
Originally committed as revision 12170 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | doc/optimization.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/optimization.txt b/doc/optimization.txt index 091551a25f..b143de8bd0 100644 --- a/doc/optimization.txt +++ b/doc/optimization.txt @@ -158,13 +158,13 @@ asm( "1: .... ... "jump_instruciton .... -dont use C loops: +Do not use C loops: do{ asm( ... }while() -Use asm() instead of intrinsics. Later require a good optimizing compiler +Use asm() instead of intrinsics. Later requires a good optimizing compiler which gcc is not. |