comparison jrevdct.c @ 2259:12e75af1d44c libavcodec

1/8 resolution decoding
author michael
date Sun, 26 Sep 2004 10:01:40 +0000
parents 5f64a30339e5
children 7a1c3178d759
comparison
equal deleted inserted replaced
2258:7096bf7c3434 2259:12e75af1d44c
1638 data[1+0*DCTSTRIDE]= (d01 + d11)>>3; 1638 data[1+0*DCTSTRIDE]= (d01 + d11)>>3;
1639 data[0+1*DCTSTRIDE]= (d00 - d10)>>3; 1639 data[0+1*DCTSTRIDE]= (d00 - d10)>>3;
1640 data[1+1*DCTSTRIDE]= (d01 - d11)>>3; 1640 data[1+1*DCTSTRIDE]= (d01 - d11)>>3;
1641 } 1641 }
1642 1642
1643 void j_rev_dct1(DCTBLOCK data){
1644 data[0] = (data[0] + 4)>>3;
1645 }
1646
1643 #undef FIX 1647 #undef FIX
1644 #undef CONST_BITS 1648 #undef CONST_BITS