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
cb44b21d
Commit
cb44b21d
authored
Feb 18, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dct-test: Move cpu_flags variable out of global scope
parent
7e18a727
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
dct-test.c
libavcodec/dct-test.c
+1
-4
No files found.
libavcodec/dct-test.c
View file @
cb44b21d
...
...
@@ -66,8 +66,6 @@ struct algo {
int
nonspec
;
};
static
int
cpu_flags
;
static
const
struct
algo
fdct_tab
[]
=
{
{
"REF-DBL"
,
ff_ref_fdct
,
NO_PERM
},
{
"FAAN"
,
ff_faandct
,
NO_PERM
},
...
...
@@ -470,8 +468,6 @@ int main(int argc, char **argv)
int
speed
=
0
;
int
err
=
0
;
cpu_flags
=
av_get_cpu_flags
();
ff_ref_dct_init
();
idct_mmx_init
();
...
...
@@ -504,6 +500,7 @@ int main(int argc, char **argv)
if
(
test_248_dct
)
{
idct248_error
(
"SIMPLE-C"
,
ff_simple_idct248_put
,
speed
);
}
else
{
const
int
cpu_flags
=
av_get_cpu_flags
();
const
struct
algo
*
algos
=
test_idct
?
idct_tab
:
fdct_tab
;
for
(
i
=
0
;
algos
[
i
].
name
;
i
++
)
if
(
!
(
~
cpu_flags
&
algos
[
i
].
mm_support
))
{
...
...
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