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
d9d2f88d
Commit
d9d2f88d
authored
Nov 07, 2006
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify
Originally committed as revision 6932 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
4802a7a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
fft_altivec.c
libavcodec/ppc/fft_altivec.c
+1
-5
No files found.
libavcodec/ppc/fft_altivec.c
View file @
d9d2f88d
...
...
@@ -65,11 +65,7 @@
void
ff_fft_calc_altivec
(
FFTContext
*
s
,
FFTComplex
*
z
)
{
POWERPC_PERF_DECLARE
(
altivec_fft_num
,
s
->
nbits
>=
6
);
#ifdef CONFIG_DARWIN
register
const
vector
float
vczero
=
(
const
vector
float
)(
0
.);
#else
register
const
vector
float
vczero
=
(
const
vector
float
){
0
.,
0
.,
0
.,
0
.};
#endif
register
const
vector
float
vczero
=
(
const
vector
float
)
vec_splat_u32
(
0
.);
int
ln
=
s
->
nbits
;
int
j
,
np
,
np2
;
...
...
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