[FFmpeg-cvslog] Add one forgotten named inline asm operand in libavcodec/x86/motion_est.c.
Carl Eugen Hoyos
git at videolan.org
Wed Mar 19 03:46:52 CET 2014
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Wed Mar 19 02:08:58 2014 +0100| [57fdc74c34f8f60e794d5ac2817a683074c3c7dd] | committer: Carl Eugen Hoyos
Add one forgotten named inline asm operand in libavcodec/x86/motion_est.c.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=57fdc74c34f8f60e794d5ac2817a683074c3c7dd
---
libavcodec/x86/motion_est.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavcodec/x86/motion_est.c b/libavcodec/x86/motion_est.c
index 3df471e..90b8346 100644
--- a/libavcodec/x86/motion_est.c
+++ b/libavcodec/x86/motion_est.c
@@ -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)
More information about the ffmpeg-cvslog
mailing list