Commit 206b25f9 authored by Marc-Antoine Arnaud's avatar Marc-Antoine Arnaud Committed by Michael Niedermayer

avfilter: reorder variable definition in geq

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent d36335bd
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment