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
6bd17412
Commit
6bd17412
authored
May 05, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/f_select: fix incompatible pointer type warning
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
ebf2c2c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
f_select.c
libavfilter/f_select.c
+1
-1
No files found.
libavfilter/f_select.c
View file @
6bd17412
...
...
@@ -271,7 +271,7 @@ static double get_scene_score(AVFilterContext *ctx, AVFrame *frame)
for
(
y
=
0
;
y
<
frame
->
height
-
8
;
y
+=
8
)
{
for
(
x
=
0
;
x
<
frame
->
width
*
3
-
8
;
x
+=
8
)
{
sad
+=
select
->
c
.
sad
[
1
](
select
,
p1
+
x
,
p2
+
x
,
sad
+=
select
->
c
.
sad
[
1
](
NULL
,
p1
+
x
,
p2
+
x
,
linesize
,
8
);
nb_sad
+=
8
*
8
;
}
...
...
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