Commit 525751c0 authored by Sigbjorn Skjaeret's avatar Sigbjorn Skjaeret Committed by Guillaume Poirier

restore GCC2/3 support, patch by Sigbjorn Skjaeret %sskjer-1 A broadpark P no%

Originally committed as revision 9295 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1a822d30
......@@ -776,7 +776,7 @@ static inline vector unsigned char h264_deblock_mask ( register vector unsigned
register vector unsigned char delta; \
register vector unsigned char deltaneg; \
\
temp = vec_cmpeq(p0, p0); \
temp = (vector unsigned char)vec_cmpeq(p0, p0); \
q1minus = vec_xor(temp, q1); /* 255 - q1 */ \
stage1 = vec_avg(p1, q1minus); /* (p1 - q1 + 256)>>1 */ \
stage2 = vec_sr(stage1, vec_splat_u8(1)); /* (p1 - q1 + 256)>>2 = 64 + (p1 - q1) >> 2 */ \
......
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