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
7976d92d
Commit
7976d92d
authored
Mar 16, 2013
by
James Darnley
Committed by
Michael Niedermayer
Mar 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yadif: cosmetic indentation from previous commits
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
0a5814c9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
vf_yadif.c
libavfilter/vf_yadif.c
+2
-2
vf_yadif_init.c
libavfilter/x86/vf_yadif_init.c
+6
-6
No files found.
libavfilter/vf_yadif.c
View file @
7976d92d
...
...
@@ -466,8 +466,8 @@ static int config_props(AVFilterLink *link)
s
->
filter_edges
=
filter_edges
;
}
if
(
ARCH_X86
)
ff_yadif_init_x86
(
s
);
if
(
ARCH_X86
)
ff_yadif_init_x86
(
s
);
return
0
;
}
...
...
libavfilter/x86/vf_yadif_init.c
View file @
7976d92d
...
...
@@ -88,13 +88,13 @@ av_cold void ff_yadif_init_x86(YADIFContext *yadif)
yadif
->
filter_line
=
ff_yadif_filter_line_10bit_ssse3
;
}
else
{
#if ARCH_X86_32
if
(
EXTERNAL_MMXEXT
(
cpu_flags
))
yadif
->
filter_line
=
ff_yadif_filter_line_mmxext
;
if
(
EXTERNAL_MMXEXT
(
cpu_flags
))
yadif
->
filter_line
=
ff_yadif_filter_line_mmxext
;
#endif
/* ARCH_X86_32 */
if
(
EXTERNAL_SSE2
(
cpu_flags
))
yadif
->
filter_line
=
ff_yadif_filter_line_sse2
;
if
(
EXTERNAL_SSSE3
(
cpu_flags
))
yadif
->
filter_line
=
ff_yadif_filter_line_ssse3
;
if
(
EXTERNAL_SSE2
(
cpu_flags
))
yadif
->
filter_line
=
ff_yadif_filter_line_sse2
;
if
(
EXTERNAL_SSSE3
(
cpu_flags
))
yadif
->
filter_line
=
ff_yadif_filter_line_ssse3
;
}
#endif
/* HAVE_YASM */
}
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