1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00
Originally committed as revision 12170 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2008-02-21 18:42:33 +00:00
parent 1d64df1029
commit 8144dff032

View File

@ -158,13 +158,13 @@ asm(
"1: .... "1: ....
... ...
"jump_instruciton .... "jump_instruciton ....
dont use C loops: Do not use C loops:
do{ do{
asm( asm(
... ...
}while() }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. which gcc is not.