Commit 3d99e069 authored by Michael Niedermayer's avatar Michael Niedermayer

10l (C code was buggy and untested)

Originally committed as revision 29030 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
parent 870a4adb
......@@ -2825,8 +2825,8 @@ static void RENAME(extract_even2avg)(const uint8_t *src0, const uint8_t *src1, u
}
#endif
while(count<0){
dst0[count]= src0[4*count+0]+src1[4*count+0];
dst1[count]= src0[4*count+2]+src1[4*count+2];
dst0[count]= (src0[4*count+0]+src1[4*count+0])>>1;
dst1[count]= (src0[4*count+2]+src1[4*count+2])>>1;
count++;
}
}
......@@ -2872,6 +2872,7 @@ static void RENAME(extract_odd2)(const uint8_t *src, uint8_t *dst0, uint8_t *dst
count -= 7;
}
#endif
src++;
while(count<0){
dst0[count]= src[4*count+0];
dst1[count]= src[4*count+2];
......@@ -2925,9 +2926,11 @@ static void RENAME(extract_odd2avg)(const uint8_t *src0, const uint8_t *src1, ui
count -= 7;
}
#endif
src0++;
src1++;
while(count<0){
dst0[count]= src0[4*count+0]+src1[4*count+0];
dst1[count]= src0[4*count+2]+src1[4*count+2];
dst0[count]= (src0[4*count+0]+src1[4*count+0])>>1;
dst1[count]= (src0[4*count+2]+src1[4*count+2])>>1;
count++;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment