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
a826efb5
Commit
a826efb5
authored
Oct 24, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/x86/vf_gradfun_init: fix const and related warnings
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b2fdf3fc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
vf_gradfun_init.c
libavfilter/x86/vf_gradfun_init.c
+5
-4
No files found.
libavfilter/x86/vf_gradfun_init.c
View file @
a826efb5
...
...
@@ -30,7 +30,8 @@
void
ff_gradfun_filter_line_mmxext
(
intptr_t
x
,
uint8_t
*
dst
,
const
uint8_t
*
src
,
const
uint16_t
*
dc
,
int
thresh
,
const
uint16_t
*
dithers
);
static
void
gradfun_filter_line_mmxext
(
uint8_t
*
dst
,
uint8_t
*
src
,
uint16_t
*
dc
,
static
void
gradfun_filter_line_mmxext
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
const
uint16_t
*
dc
,
int
width
,
int
thresh
,
const
uint16_t
*
dithers
)
{
...
...
@@ -48,7 +49,7 @@ static void gradfun_filter_line_mmxext(uint8_t *dst, uint8_t *src, uint16_t *dc,
void
ff_gradfun_filter_line_ssse3
(
intptr_t
x
,
uint8_t
*
dst
,
const
uint8_t
*
src
,
const
uint16_t
*
dc
,
int
thresh
,
const
uint16_t
*
dithers
);
static
void
gradfun_filter_line_ssse3
(
uint8_t
*
dst
,
uint8_t
*
src
,
uint16_t
*
dc
,
int
width
,
int
thresh
,
const
uint16_t
*
dithers
)
static
void
gradfun_filter_line_ssse3
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
const
uint16_t
*
dc
,
int
width
,
int
thresh
,
const
uint16_t
*
dithers
)
{
intptr_t
x
;
if
(
width
&
7
)
{
...
...
@@ -62,8 +63,8 @@ static void gradfun_filter_line_ssse3(uint8_t *dst, uint8_t *src, uint16_t *dc,
thresh
,
dithers
);
}
void
ff_gradfun_blur_line_movdqa_sse2
(
intptr_t
x
,
uint16_t
*
buf
,
uint16_t
*
buf1
,
uint16_t
*
dc
,
uint8_t
*
src1
,
uint8_t
*
src2
);
void
ff_gradfun_blur_line_movdqu_sse2
(
intptr_t
x
,
uint16_t
*
buf
,
uint16_t
*
buf1
,
uint16_t
*
dc
,
uint8_t
*
src1
,
uint8_t
*
src2
);
void
ff_gradfun_blur_line_movdqa_sse2
(
intptr_t
x
,
uint16_t
*
buf
,
const
uint16_t
*
buf1
,
uint16_t
*
dc
,
const
uint8_t
*
src1
,
const
uint8_t
*
src2
);
void
ff_gradfun_blur_line_movdqu_sse2
(
intptr_t
x
,
uint16_t
*
buf
,
const
uint16_t
*
buf1
,
uint16_t
*
dc
,
const
uint8_t
*
src1
,
const
uint8_t
*
src2
);
static
void
gradfun_blur_line_sse2
(
uint16_t
*
dc
,
uint16_t
*
buf
,
const
uint16_t
*
buf1
,
const
uint8_t
*
src
,
int
src_linesize
,
int
width
)
{
intptr_t
x
=
-
2
*
width
;
...
...
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