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
206b25f9
Commit
206b25f9
authored
Nov 30, 2017
by
Marc-Antoine Arnaud
Committed by
Michael Niedermayer
Jan 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: reorder variable definition in geq
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
d36335bd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vf_geq.c
libavfilter/vf_geq.c
+3
-3
No files found.
libavfilter/vf_geq.c
View file @
206b25f9
...
...
@@ -33,6 +33,9 @@
#include "libavutil/pixdesc.h"
#include "internal.h"
static
const
char
*
const
var_names
[]
=
{
"X"
,
"Y"
,
"W"
,
"H"
,
"N"
,
"SW"
,
"SH"
,
"T"
,
NULL
};
enum
{
VAR_X
,
VAR_Y
,
VAR_W
,
VAR_H
,
VAR_N
,
VAR_SW
,
VAR_SH
,
VAR_T
,
VAR_VARS_NB
};
typedef
struct
GEQContext
{
const
AVClass
*
class
;
AVExpr
*
e
[
4
];
///< expressions for each plane
...
...
@@ -107,9 +110,6 @@ static double cb(void *priv, double x, double y) { return getpix(priv, x, y, 1)
static
double
cr
(
void
*
priv
,
double
x
,
double
y
)
{
return
getpix
(
priv
,
x
,
y
,
2
);
}
static
double
alpha
(
void
*
priv
,
double
x
,
double
y
)
{
return
getpix
(
priv
,
x
,
y
,
3
);
}
static
const
char
*
const
var_names
[]
=
{
"X"
,
"Y"
,
"W"
,
"H"
,
"N"
,
"SW"
,
"SH"
,
"T"
,
NULL
};
enum
{
VAR_X
,
VAR_Y
,
VAR_W
,
VAR_H
,
VAR_N
,
VAR_SW
,
VAR_SH
,
VAR_T
,
VAR_VARS_NB
};
static
av_cold
int
geq_init
(
AVFilterContext
*
ctx
)
{
GEQContext
*
geq
=
ctx
->
priv
;
...
...
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