Browse Source

x86: videodsp: Add parentheses to expression to work around warning

libavcodec/x86/videodsp.asm:128: warning: signed dword value exceeds bounds
tags/n3.3
Diego Biurrun 10 years ago
parent
commit
b89804da9b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/x86/videodsp.asm

+ 1
- 1
libavcodec/x86/videodsp.asm View File

@@ -110,7 +110,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…
Cancel
Save