comparison snow.c @ 6413:c58ea608e191 libavcodec

Add comments to some #endif directives.
author diego
date Tue, 26 Feb 2008 17:13:42 +0000
parents 1f70d64c00bc
children f2d49842ea63
comparison
equal deleted inserted replaced
6412:1f70d64c00bc 6413:c58ea608e191
845 if(mirror_right){ 845 if(mirror_right){
846 dst[w*dst_step] = 846 dst[w*dst_step] =
847 LIFTS(src[w*src_step], mul*2*ref[w*ref_step]+add, inverse); 847 LIFTS(src[w*src_step], mul*2*ref[w*ref_step]+add, inverse);
848 } 848 }
849 } 849 }
850 #endif 850 #endif /* ! liftS */
851 851
852 static void horizontal_decompose53i(DWTELEM *b, int width){ 852 static void horizontal_decompose53i(DWTELEM *b, int width){
853 DWTELEM temp[width]; 853 DWTELEM temp[width];
854 const int width2= width>>1; 854 const int width2= width>>1;
855 int x; 855 int x;
893 b[width2-1] = A2; 893 b[width2-1] = A2;
894 } 894 }
895 #else 895 #else
896 lift(b+w2, temp+w2, temp, 1, 1, 1, width, -1, 0, 1, 1, 0); 896 lift(b+w2, temp+w2, temp, 1, 1, 1, width, -1, 0, 1, 1, 0);
897 lift(b , temp , b+w2, 1, 1, 1, width, 1, 2, 2, 0, 0); 897 lift(b , temp , b+w2, 1, 1, 1, width, 1, 2, 2, 0, 0);
898 #endif 898 #endif /* 0 */
899 } 899 }
900 900
901 static void vertical_decompose53iH0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, int width){ 901 static void vertical_decompose53iH0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, int width){
902 int i; 902 int i;
903 903