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
f67e0b82
Commit
f67e0b82
authored
Oct 04, 2009
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: replace some #if with if()
Originally committed as revision 20165 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
701c618f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
10 deletions
+3
-10
dsputil_init_arm.c
libavcodec/arm/dsputil_init_arm.c
+3
-10
No files found.
libavcodec/arm/dsputil_init_arm.c
View file @
f67e0b82
...
...
@@ -117,14 +117,7 @@ void dsputil_init_arm(DSPContext* c, AVCodecContext *avctx)
if
(
HAVE_ARMV5TE
)
ff_dsputil_init_armv5te
(
c
,
avctx
);
if
(
HAVE_ARMV6
)
ff_dsputil_init_armv6
(
c
,
avctx
);
#if HAVE_IWMMXT
dsputil_init_iwmmxt
(
c
,
avctx
);
#endif
#if HAVE_ARMVFP
ff_dsputil_init_vfp
(
c
,
avctx
);
#endif
#if HAVE_NEON
ff_dsputil_init_neon
(
c
,
avctx
);
#endif
if
(
HAVE_IWMMXT
)
dsputil_init_iwmmxt
(
c
,
avctx
);
if
(
HAVE_ARMVFP
)
ff_dsputil_init_vfp
(
c
,
avctx
);
if
(
HAVE_NEON
)
ff_dsputil_init_neon
(
c
,
avctx
);
}
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