mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge commit 'b89804da9bad2d94dd95bf20ac6187447e9c17e9'
* commit 'b89804da9bad2d94dd95bf20ac6187447e9c17e9': x86: videodsp: Add parentheses to expression to work around warning Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
commit
bac44a5020
@ -114,7 +114,7 @@ cglobal emu_edge_hvar, 5, 6, 1, dst, dst_stride, start_x, n_words, h, w
|
||||
.x_loop: ; do {
|
||||
movu [dstq+wq*2], m0 ; write($reg, $mmsize)
|
||||
add wq, mmsize/2 ; w -= $mmsize/2
|
||||
cmp wq, -mmsize/2 ; } while (w > $mmsize/2)
|
||||
cmp wq, -(mmsize/2) ; } while (w > $mmsize/2)
|
||||
jl .x_loop
|
||||
movu [dstq-mmsize], m0 ; write($reg, $mmsize)
|
||||
add dstq, dst_strideq ; dst += dst_stride
|
||||
|
Loading…
Reference in New Issue
Block a user