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
6f1960ab
Commit
6f1960ab
authored
Aug 07, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
idct: cosmetics: Drop one unnecessary if-block level
parent
444c7358
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
17 deletions
+15
-17
idctdsp.c
libavcodec/idctdsp.c
+15
-17
No files found.
libavcodec/idctdsp.c
View file @
6f1960ab
...
...
@@ -162,23 +162,21 @@ av_cold void ff_idctdsp_init(IDCTDSPContext *c, AVCodecContext *avctx)
c
->
idct_add
=
ff_simple_idct_add_10
;
c
->
idct
=
ff_simple_idct_10
;
c
->
perm_type
=
FF_IDCT_PERM_NONE
;
}
else
{
if
(
avctx
->
idct_algo
==
FF_IDCT_INT
)
{
c
->
idct_put
=
jref_idct_put
;
c
->
idct_add
=
jref_idct_add
;
c
->
idct
=
ff_j_rev_dct
;
c
->
perm_type
=
FF_IDCT_PERM_LIBMPEG2
;
}
else
if
(
avctx
->
idct_algo
==
FF_IDCT_FAAN
)
{
c
->
idct_put
=
ff_faanidct_put
;
c
->
idct_add
=
ff_faanidct_add
;
c
->
idct
=
ff_faanidct
;
c
->
perm_type
=
FF_IDCT_PERM_NONE
;
}
else
{
// accurate/default
c
->
idct_put
=
ff_simple_idct_put_8
;
c
->
idct_add
=
ff_simple_idct_add_8
;
c
->
idct
=
ff_simple_idct_8
;
c
->
perm_type
=
FF_IDCT_PERM_NONE
;
}
}
else
if
(
avctx
->
idct_algo
==
FF_IDCT_INT
)
{
c
->
idct_put
=
jref_idct_put
;
c
->
idct_add
=
jref_idct_add
;
c
->
idct
=
ff_j_rev_dct
;
c
->
perm_type
=
FF_IDCT_PERM_LIBMPEG2
;
}
else
if
(
avctx
->
idct_algo
==
FF_IDCT_FAAN
)
{
c
->
idct_put
=
ff_faanidct_put
;
c
->
idct_add
=
ff_faanidct_add
;
c
->
idct
=
ff_faanidct
;
c
->
perm_type
=
FF_IDCT_PERM_NONE
;
}
else
{
// accurate/default
c
->
idct_put
=
ff_simple_idct_put_8
;
c
->
idct_add
=
ff_simple_idct_add_8
;
c
->
idct
=
ff_simple_idct_8
;
c
->
perm_type
=
FF_IDCT_PERM_NONE
;
}
c
->
put_pixels_clamped
=
put_pixels_clamped_c
;
...
...
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