prettyprinting cosmetics
Originally committed as revision 17962 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -185,9 +185,9 @@ static void OPNAME ## h264_qpel ## SIZE ## _mc32_ ## CODETYPE(uint8_t *dst, uint
|
|||||||
void put_no_rnd_h264_chroma_mc8_altivec(uint8_t * dst, uint8_t * src, int stride, int h, int x, int y) {
|
void put_no_rnd_h264_chroma_mc8_altivec(uint8_t * dst, uint8_t * src, int stride, int h, int x, int y) {
|
||||||
DECLARE_ALIGNED_16(signed int, ABCD[4]) =
|
DECLARE_ALIGNED_16(signed int, ABCD[4]) =
|
||||||
{((8 - x) * (8 - y)),
|
{((8 - x) * (8 - y)),
|
||||||
((x) * (8 - y)),
|
(( x) * (8 - y)),
|
||||||
((8 - x) * (y)),
|
((8 - x) * ( y)),
|
||||||
((x) * (y))};
|
(( x) * ( y))};
|
||||||
register int i;
|
register int i;
|
||||||
vec_u8 fperm;
|
vec_u8 fperm;
|
||||||
const vec_s32 vABCD = vec_ld(0, ABCD);
|
const vec_s32 vABCD = vec_ld(0, ABCD);
|
||||||
|
Reference in New Issue
Block a user