mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
move the 0x80 vector outside of the function, thus saving the compiler
the trouble of having to initialize each byte on the stack individually Originally committed as revision 3083 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f9ed9d8584
commit
7daabccb5d
@ -294,11 +294,12 @@ void put_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size
|
||||
:"memory");
|
||||
}
|
||||
|
||||
static unsigned char __align8 vector128[8] =
|
||||
{ 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80 };
|
||||
|
||||
void put_signed_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size)
|
||||
{
|
||||
int i;
|
||||
unsigned char __align8 vector128[8] =
|
||||
{ 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80 };
|
||||
|
||||
movq_m2r(*vector128, mm1);
|
||||
for (i = 0; i < 8; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user