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
50208a04
Commit
50208a04
authored
Mar 03, 2016
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_ciescope: Fix "incompatible pointer type" warnings
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
0786b284
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
vf_ciescope.c
libavfilter/vf_ciescope.c
+5
-5
No files found.
libavfilter/vf_ciescope.c
View file @
50208a04
...
...
@@ -1229,7 +1229,7 @@ static int draw_background(AVFilterContext *ctx)
tongue_outline
(
pixels
,
s
->
f
->
linesize
[
0
]
/
2
,
w
,
h
,
65535
,
s
->
cie
);
fill_in_tongue
(
pixels
,
s
->
f
->
linesize
[
0
]
/
2
,
w
,
h
,
65535
,
cs
,
s
->
i
,
s
->
cie
,
fill_in_tongue
(
pixels
,
s
->
f
->
linesize
[
0
]
/
2
,
w
,
h
,
65535
,
cs
,
(
const
double
(
*
)[
3
])
s
->
i
,
s
->
cie
,
s
->
correct_gamma
,
s
->
contrast
);
return
0
;
...
...
@@ -1244,7 +1244,7 @@ static void filter_rgb48(AVFilterContext *ctx, AVFrame *in, double *cx, double *
double
b
=
src
[
2
]
/
65535
.;
double
cz
;
rgb_to_xy
(
r
,
g
,
b
,
cx
,
cy
,
&
cz
,
s
->
m
);
rgb_to_xy
(
r
,
g
,
b
,
cx
,
cy
,
&
cz
,
(
const
double
(
*
)[
3
])
s
->
m
);
}
static
void
filter_rgba64
(
AVFilterContext
*
ctx
,
AVFrame
*
in
,
double
*
cx
,
double
*
cy
,
int
x
,
int
y
)
...
...
@@ -1256,7 +1256,7 @@ static void filter_rgba64(AVFilterContext *ctx, AVFrame *in, double *cx, double
double
b
=
src
[
2
]
/
65535
.;
double
cz
;
rgb_to_xy
(
r
,
g
,
b
,
cx
,
cy
,
&
cz
,
s
->
m
);
rgb_to_xy
(
r
,
g
,
b
,
cx
,
cy
,
&
cz
,
(
const
double
(
*
)[
3
])
s
->
m
);
}
static
void
filter_rgb24
(
AVFilterContext
*
ctx
,
AVFrame
*
in
,
double
*
cx
,
double
*
cy
,
int
x
,
int
y
)
...
...
@@ -1268,7 +1268,7 @@ static void filter_rgb24(AVFilterContext *ctx, AVFrame *in, double *cx, double *
double
b
=
src
[
2
]
/
255
.;
double
cz
;
rgb_to_xy
(
r
,
g
,
b
,
cx
,
cy
,
&
cz
,
s
->
m
);
rgb_to_xy
(
r
,
g
,
b
,
cx
,
cy
,
&
cz
,
(
const
double
(
*
)[
3
])
s
->
m
);
}
static
void
filter_rgba
(
AVFilterContext
*
ctx
,
AVFrame
*
in
,
double
*
cx
,
double
*
cy
,
int
x
,
int
y
)
...
...
@@ -1280,7 +1280,7 @@ static void filter_rgba(AVFilterContext *ctx, AVFrame *in, double *cx, double *c
double
b
=
src
[
2
]
/
255
.;
double
cz
;
rgb_to_xy
(
r
,
g
,
b
,
cx
,
cy
,
&
cz
,
s
->
m
);
rgb_to_xy
(
r
,
g
,
b
,
cx
,
cy
,
&
cz
,
(
const
double
(
*
)[
3
])
s
->
m
);
}
static
void
filter_xyz
(
AVFilterContext
*
ctx
,
AVFrame
*
in
,
double
*
cx
,
double
*
cy
,
int
x
,
int
y
)
...
...
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