1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

Add one forgotten named inline asm operand in libavcodec/x86/motion_est.c.

This commit is contained in:
Carl Eugen Hoyos 2014-03-19 02:08:58 +01:00
parent ce9d3daa8a
commit 57fdc74c34

View File

@ -286,7 +286,8 @@ static inline void sad8_4_mmx(uint8_t *blk1, uint8_t *blk2, int stride, int h)
" js 1b \n\t"
: "+a" (len)
: "r" (blk1 - len), "r" (blk1 - len + stride), "r" (blk2 - len),
"r" ((x86_reg) stride));
"r" ((x86_reg) stride)
NAMED_CONSTRAINTS_ADD(round_tab));
}
static inline int sum_mmx(void)