Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
45125ee5
Commit
45125ee5
authored
Aug 27, 2013
by
Yaowu Xu
Committed by
Gerrit Code Review
Aug 27, 2013
Browse files
Merge "fixed the reading too many bytes"
parents
3e43e49f
9482c079
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/x86/vp9_subpel_variance.asm
View file @
45125ee5
...
...
@@ -270,7 +270,12 @@ cglobal sub_pixel_variance%1xh, 7, 7, 13, src, src_stride, x_offset, y_offset, \
%if mmsize == 16
movhps
m2
,
[
srcq
+
src_strideq
*
2
]
%else
; mmsize == 8
%if %1 == 4
movh
m1
,
[
srcq
+
src_strideq
*
2
]
punpckldq
m2
,
m1
%else
punpckldq
m2
,
[
srcq
+
src_strideq
*
2
]
%endif
%endif
movh
m1
,
[
ds
tq
]
%if mmsize == 16
...
...
@@ -541,9 +546,16 @@ cglobal sub_pixel_variance%1xh, 7, 7, 13, src, src_stride, x_offset, y_offset, \
%if mmsize == 16
movhps
m2
,
[
srcq
+
src_strideq
]
movhps
m3
,
[
srcq
+
src_strideq
+
1
]
%else
%if %1 == 4
movh
m1
,
[
srcq
+
src_strideq
]
punpckldq
m2
,
m1
movh
m1
,
[
srcq
+
src_strideq
+
1
]
punpckldq
m3
,
m1
%else
punpckldq
m2
,
[
srcq
+
src_strideq
]
punpckldq
m3
,
[
srcq
+
src_strideq
+
1
]
%endif
%endif
pavgb
m2
,
m3
%if mmsize == 16
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment