mirror of https://git.ffmpeg.org/ffmpeg.git
cosmetics: Fix indentation after last commit.
Originally committed as revision 14370 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6b83bb1ee8
commit
309005c047
|
@ -209,13 +209,13 @@ void put_no_rnd_h264_chroma_mc8_altivec(uint8_t * dst, uint8_t * src, int stride
|
||||||
|
|
||||||
if (((unsigned long)dst) % 16 == 0) {
|
if (((unsigned long)dst) % 16 == 0) {
|
||||||
fperm = (vec_u8_t){0x10, 0x11, 0x12, 0x13,
|
fperm = (vec_u8_t){0x10, 0x11, 0x12, 0x13,
|
||||||
0x14, 0x15, 0x16, 0x17,
|
0x14, 0x15, 0x16, 0x17,
|
||||||
0x08, 0x09, 0x0A, 0x0B,
|
0x08, 0x09, 0x0A, 0x0B,
|
||||||
0x0C, 0x0D, 0x0E, 0x0F};
|
0x0C, 0x0D, 0x0E, 0x0F};
|
||||||
} else {
|
} else {
|
||||||
fperm = (vec_u8_t){0x00, 0x01, 0x02, 0x03,
|
fperm = (vec_u8_t){0x00, 0x01, 0x02, 0x03,
|
||||||
0x04, 0x05, 0x06, 0x07,
|
0x04, 0x05, 0x06, 0x07,
|
||||||
0x18, 0x19, 0x1A, 0x1B,
|
0x18, 0x19, 0x1A, 0x1B,
|
||||||
0x1C, 0x1D, 0x1E, 0x1F};
|
0x1C, 0x1D, 0x1E, 0x1F};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -103,13 +103,13 @@ void PREFIX_h264_chroma_mc8_altivec(uint8_t * dst, uint8_t * src,
|
||||||
|
|
||||||
if (((unsigned long)dst) % 16 == 0) {
|
if (((unsigned long)dst) % 16 == 0) {
|
||||||
fperm = (vec_u8_t){0x10, 0x11, 0x12, 0x13,
|
fperm = (vec_u8_t){0x10, 0x11, 0x12, 0x13,
|
||||||
0x14, 0x15, 0x16, 0x17,
|
0x14, 0x15, 0x16, 0x17,
|
||||||
0x08, 0x09, 0x0A, 0x0B,
|
0x08, 0x09, 0x0A, 0x0B,
|
||||||
0x0C, 0x0D, 0x0E, 0x0F};
|
0x0C, 0x0D, 0x0E, 0x0F};
|
||||||
} else {
|
} else {
|
||||||
fperm = (vec_u8_t){0x00, 0x01, 0x02, 0x03,
|
fperm = (vec_u8_t){0x00, 0x01, 0x02, 0x03,
|
||||||
0x04, 0x05, 0x06, 0x07,
|
0x04, 0x05, 0x06, 0x07,
|
||||||
0x18, 0x19, 0x1A, 0x1B,
|
0x18, 0x19, 0x1A, 0x1B,
|
||||||
0x1C, 0x1D, 0x1E, 0x1F};
|
0x1C, 0x1D, 0x1E, 0x1F};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue