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
6ef3426d
Commit
6ef3426d
authored
May 05, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/x86/deinterlace: use INIT_MMX like other asm code does too
parent
c7369f3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
deinterlace.asm
libavcodec/x86/deinterlace.asm
+4
-2
No files found.
libavcodec/x86/deinterlace.asm
View file @
6ef3426d
...
@@ -31,10 +31,10 @@ SECTION .text
...
@@ -31,10 +31,10 @@ SECTION .text
%macro
DEINTERLACE
1
%macro
DEINTERLACE
1
%ifidn
%1
,
inplace
%ifidn
%1
,
inplace
;void ff_deinterlace_line_inplace_mmx(const uint8_t *lum_m4, const uint8_t *lum_m3, const uint8_t *lum_m2, const uint8_t *lum_m1, const uint8_t *lum, int size)
;void ff_deinterlace_line_inplace_mmx(const uint8_t *lum_m4, const uint8_t *lum_m3, const uint8_t *lum_m2, const uint8_t *lum_m1, const uint8_t *lum, int size)
cglobal
deinterlace_line_inplace
_mmx
,
6
,
6
,
7
,
lum_m4
,
lum_m3
,
lum_m2
,
lum_m1
,
lum
,
size
cglobal
deinterlace_line_inplace
,
6
,
6
,
7
,
lum_m4
,
lum_m3
,
lum_m2
,
lum_m1
,
lum
,
size
%else
%else
;void ff_deinterlace_line_mmx(uint8_t *dst, const uint8_t *lum_m4, const uint8_t *lum_m3, const uint8_t *lum_m2, const uint8_t *lum_m1, const uint8_t *lum, int size)
;void ff_deinterlace_line_mmx(uint8_t *dst, const uint8_t *lum_m4, const uint8_t *lum_m3, const uint8_t *lum_m2, const uint8_t *lum_m1, const uint8_t *lum, int size)
cglobal
deinterlace_line
_mmx
,
7
,
7
,
7
,
dst
,
lum_m4
,
lum_m3
,
lum_m2
,
lum_m1
,
lum
,
size
cglobal
deinterlace_line
,
7
,
7
,
7
,
dst
,
lum_m4
,
lum_m3
,
lum_m2
,
lum_m1
,
lum
,
size
%endif
%endif
pxor
mm7
,
mm7
pxor
mm7
,
mm7
movq
mm6
,
[
pw_4
]
movq
mm6
,
[
pw_4
]
...
@@ -77,6 +77,8 @@ cglobal deinterlace_line_mmx, 7,7,7, dst, lum_m4, lum_m3, lum_m2, lum_m1
...
@@ -77,6 +77,8 @@ cglobal deinterlace_line_mmx, 7,7,7, dst, lum_m4, lum_m3, lum_m2, lum_m1
REP_RET
REP_RET
%endmacro
%endmacro
INIT_MMX
mmx
DEINTERLACE
""
DEINTERLACE
""
DEINTERLACE
inplace
DEINTERLACE
inplace
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