OSDN Git Service

change
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 1 Aug 2007 20:37:41 +0000 (20:37 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 1 Aug 2007 20:37:41 +0000 (20:37 +0000)
commit356ab1dacecff522e74ef0e576b2e60fc1185405
treed77aaf5ff15d8303cb6d733d08226337f5a114fd
parent93b3c0834d59c1cd790e2b9d16139d7515f560cc
change
for(){
    if(){
        switch(){

to
switch(){
    for(){
        if(){

this halfs the number of times the switch is executed in bidir blocks, in
other blocks the number is the same
25 cpu cycles less with matrixbench on duron

Originally committed as revision 9860 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/mpeg12.c