Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
8132629b
Commit
8132629b
authored
Dec 20, 2014
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp9/x86: make cglobal statement more conservative in register allocation.
parent
c013ca58
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
5 deletions
+16
-5
vp9lpf.asm
libavcodec/x86/vp9lpf.asm
+16
-5
No files found.
libavcodec/x86/vp9lpf.asm
View file @
8132629b
...
...
@@ -307,7 +307,20 @@ SECTION .text
%endif
%endmacro
%macro
LOOPFILTER
2
; %1=v/h %2=size1
%macro
LOOPFILTER
3
; %1=v/h %2=size1 %3=stack
%if
UNIX64
cglobal
vp9_loop_filter_
%1
_
%2
_16
,
5
,
9
,
16
,
%3
,
dst
,
stride
,
E
,
I
,
H
,
mstride
,
dst2
,
stride3
,
mstride3
%else
%if
WIN64
cglobal
vp9_loop_filter_
%1
_
%2
_16
,
4
,
8
,
16
,
%3
,
dst
,
stride
,
E
,
I
,
mstride
,
dst2
,
stride3
,
mstride3
%else
cglobal
vp9_loop_filter_
%1
_
%2
_16
,
2
,
6
,
16
,
%3
,
dst
,
stride
,
mstride
,
dst2
,
stride3
,
mstride3
%define
Ed
dword
r2m
%define
Id
dword
r3m
%endif
%define
Hd
dword
r4m
%endif
mov
mstrideq
,
strideq
neg
mstrideq
...
...
@@ -795,10 +808,8 @@ SECTION .text
%macro
LPF_16_VH
2
INIT_XMM
%2
cglobal
vp9_loop_filter_v_
%1
_16
,
5
,
10
,
16
,
dst
,
stride
,
E
,
I
,
H
,
mstride
,
dst2
,
stride3
,
mstride3
LOOPFILTER
v
,
%1
cglobal
vp9_loop_filter_h_
%1
_16
,
5
,
10
,
16
,
256
,
dst
,
stride
,
E
,
I
,
H
,
mstride
,
dst2
,
stride3
,
mstride3
LOOPFILTER
h
,
%1
LOOPFILTER
v
,
%1
,
0
LOOPFILTER
h
,
%1
,
256
%endmacro
%macro
LPF_16_VH_ALL_OPTS
1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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