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
5fb67d80
Commit
5fb67d80
authored
Jun 16, 2011
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation with old yasm.
parent
f6e2af4f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
h264_deblock.asm
libavcodec/x86/h264_deblock.asm
+6
-0
h264_deblock_10bit.asm
libavcodec/x86/h264_deblock_10bit.asm
+8
-0
h264dsp_mmx.c
libavcodec/x86/h264dsp_mmx.c
+1
-1
No files found.
libavcodec/x86/h264_deblock.asm
View file @
5fb67d80
...
...
@@ -386,8 +386,10 @@ cglobal deblock_h_luma_8_%1, 5,7
INIT_XMM
DEBLOCK_LUMA
sse2
%ifdef
HAVE_AVX
INIT_AVX
DEBLOCK_LUMA
avx
%endif
%else
...
...
@@ -506,8 +508,10 @@ INIT_MMX
DEBLOCK_LUMA
mmxext
,
v8
,
8
INIT_XMM
DEBLOCK_LUMA
sse2
,
v
,
16
%ifdef
HAVE_AVX
INIT_AVX
DEBLOCK_LUMA
avx
,
v
,
16
%endif
%endif
; ARCH
...
...
@@ -778,8 +782,10 @@ cglobal deblock_h_luma_intra_8_%1, 2,4
INIT_XMM
DEBLOCK_LUMA_INTRA
sse2
,
v
%ifdef
HAVE_AVX
INIT_AVX
DEBLOCK_LUMA_INTRA
avx
,
v
%endif
%ifndef
ARCH_X86_64
INIT_MMX
DEBLOCK_LUMA_INTRA
mmxext
,
v8
...
...
libavcodec/x86/h264_deblock_10bit.asm
View file @
5fb67d80
...
...
@@ -419,9 +419,11 @@ cglobal deblock_h_luma_10_%1, 5,7,15
INIT_XMM
DEBLOCK_LUMA_64
sse2
%ifdef
HAVE_AVX
INIT_AVX
DEBLOCK_LUMA_64
avx
%endif
%endif
%macro
SWAPMOVA
2
%ifid
%1
...
...
@@ -714,8 +716,10 @@ cglobal deblock_h_luma_intra_10_%1, 4,7,16
INIT_XMM
DEBLOCK_LUMA_INTRA_64
sse2
%ifdef
HAVE_AVX
INIT_AVX
DEBLOCK_LUMA_INTRA_64
avx
%endif
%endif
...
...
@@ -799,10 +803,12 @@ DEBLOCK_LUMA_INTRA mmxext
INIT_XMM
DEBLOCK_LUMA
sse2
DEBLOCK_LUMA_INTRA
sse2
%ifdef
HAVE_AVX
INIT_AVX
DEBLOCK_LUMA
avx
DEBLOCK_LUMA_INTRA
avx
%endif
%endif
; in: %1=p0, %2=q0, %3=p1, %4=q1, %5=mask, %6=tmp, %7=tmp
; out: %1=p0', %2=q0'
...
...
@@ -913,5 +919,7 @@ DEBLOCK_CHROMA mmxext
%endif
INIT_XMM
DEBLOCK_CHROMA
sse2
%ifdef
HAVE_AVX
INIT_AVX
DEBLOCK_CHROMA
avx
%endif
libavcodec/x86/h264dsp_mmx.c
View file @
5fb67d80
...
...
@@ -418,7 +418,7 @@ void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth)
c
->
biweight_h264_pixels_tab
[
3
]
=
ff_h264_biweight_8x8_ssse3
;
c
->
biweight_h264_pixels_tab
[
4
]
=
ff_h264_biweight_8x4_ssse3
;
}
if
(
mm_flags
&
AV_CPU_FLAG_AVX
)
{
if
(
HAVE_AVX
&&
mm_flags
&
AV_CPU_FLAG_AVX
)
{
#if HAVE_ALIGNED_STACK
c
->
h264_v_loop_filter_luma
=
ff_deblock_v_luma_8_avx
;
c
->
h264_h_loop_filter_luma
=
ff_deblock_h_luma_8_avx
;
...
...
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