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
ab8cbfe0
Commit
ab8cbfe0
authored
Oct 14, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/x86/dsputil_init: remove duplicated sse2 idct init
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
1bf8fa75
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
dsputil_init.c
libavcodec/x86/dsputil_init.c
+1
-6
No files found.
libavcodec/x86/dsputil_init.c
View file @
ab8cbfe0
...
...
@@ -693,12 +693,7 @@ av_cold void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx)
c
->
idct
=
ff_simple_idct_mmx
;
c
->
idct_permutation_type
=
FF_SIMPLE_IDCT_PERM
;
}
else
if
(
idct_algo
==
FF_IDCT_XVIDMMX
)
{
if
(
X86_SSE2
(
cpu_flags
))
{
c
->
idct_put
=
ff_idct_xvid_sse2_put
;
c
->
idct_add
=
ff_idct_xvid_sse2_add
;
c
->
idct
=
ff_idct_xvid_sse2
;
c
->
idct_permutation_type
=
FF_SSE2_IDCT_PERM
;
}
else
if
(
X86_MMXEXT
(
cpu_flags
))
{
if
(
X86_MMXEXT
(
cpu_flags
))
{
c
->
idct_put
=
ff_idct_xvid_mmxext_put
;
c
->
idct_add
=
ff_idct_xvid_mmxext_add
;
c
->
idct
=
ff_idct_xvid_mmxext
;
...
...
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