Commit f50f2fd2 authored by Johann Koenig's avatar Johann Koenig
Browse files

use unaligned load

source buffer is not guaranteed to be aligned for odd size buffers

Change-Id: Id0b1fd40ba3bd6c994bcfada788feccd2b53c5a9
parent 3675b229
Branches
Tags
No related merge requests found
Showing with 1 addition and 1 deletion
...@@ -84,7 +84,7 @@ temporal_filter_apply_load_8: ...@@ -84,7 +84,7 @@ temporal_filter_apply_load_8:
jmp temporal_filter_apply_load_finished jmp temporal_filter_apply_load_finished
temporal_filter_apply_load_16: temporal_filter_apply_load_16:
movdqa xmm0, [rsi] ; src (frame1) movdqu xmm0, [rsi] ; src (frame1)
lea rsi, [rsi + rbp] ; += stride lea rsi, [rsi + rbp] ; += stride
movdqa xmm1, xmm0 movdqa xmm1, xmm0
punpcklbw xmm0, xmm7 ; src[ 0- 7] punpcklbw xmm0, xmm7 ; src[ 0- 7]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment