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
efac6f74
Commit
efac6f74
authored
Sep 18, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86/mpegaudiodec: drop likely now unneeded #if HAVE_AVX_EXTERNAL
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
c0dfc720
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
mpegaudiodec.c
libavcodec/x86/mpegaudiodec.c
+1
-4
No files found.
libavcodec/x86/mpegaudiodec.c
View file @
efac6f74
...
...
@@ -257,12 +257,9 @@ void ff_mpadsp_init_mmx(MPADSPContext *s)
#endif
/* HAVE_SSE2_INLINE */
#if HAVE_YASM
#if HAVE_AVX_EXTERNAL
if
(
EXTERNAL_AVX
(
mm_flags
))
{
s
->
imdct36_blocks_float
=
imdct36_blocks_avx
;
}
else
#endif
if
(
EXTERNAL_SSSE3
(
mm_flags
))
{
}
else
if
(
EXTERNAL_SSSE3
(
mm_flags
))
{
s
->
imdct36_blocks_float
=
imdct36_blocks_ssse3
;
}
else
if
(
EXTERNAL_SSE3
(
mm_flags
))
{
s
->
imdct36_blocks_float
=
imdct36_blocks_sse3
;
...
...
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