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
9d6e0ac6
Commit
9d6e0ac6
authored
Jan 23, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
floatdsp: restrict->av_restrict
Fix msvc Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
7357ca90
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
float_dsp.c
libavutil/float_dsp.c
+1
-1
float_dsp.h
libavutil/float_dsp.h
+1
-1
No files found.
libavutil/float_dsp.c
View file @
9d6e0ac6
...
...
@@ -92,7 +92,7 @@ static void vector_fmul_reverse_c(float *dst, const float *src0,
dst
[
i
]
=
src0
[
i
]
*
src1
[
-
i
];
}
static
void
butterflies_float_c
(
float
*
restrict
v1
,
float
*
restrict
v2
,
static
void
butterflies_float_c
(
float
*
av_restrict
v1
,
float
*
av_
restrict
v2
,
int
len
)
{
int
i
;
...
...
libavutil/float_dsp.h
View file @
9d6e0ac6
...
...
@@ -147,7 +147,7 @@ typedef struct AVFloatDSPContext {
* @param v2 second input vector, difference output, 16-byte aligned
* @param len length of vectors, multiple of 4
*/
void
(
*
butterflies_float
)(
float
*
restrict
v1
,
float
*
restrict
v2
,
int
len
);
void
(
*
butterflies_float
)(
float
*
av_restrict
v1
,
float
*
av_
restrict
v2
,
int
len
);
/**
* Calculate the scalar product of two vectors of floats.
...
...
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