summaryrefslogtreecommitdiffstats
path: root/libavfilter/aeval.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-07 16:14:44 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-05-07 16:15:50 +0200
commitefbf107f5b28866d2e82701484e2859f5aa77e6d (patch)
treef8a9059a71b819c0c8999924ef1bdbd31ff36643 /libavfilter/aeval.c
parent1898c2f49da3151fbce04ecf35971005707a609d (diff)
downloadffmpeg-streaming-efbf107f5b28866d2e82701484e2859f5aa77e6d.zip
ffmpeg-streaming-efbf107f5b28866d2e82701484e2859f5aa77e6d.tar.gz
avfilter/aeval: silence "may be used uninitialized" warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/aeval.c')
-rw-r--r--libavfilter/aeval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/aeval.c b/libavfilter/aeval.c
index 2790cee..45629a9 100644
--- a/libavfilter/aeval.c
+++ b/libavfilter/aeval.c
@@ -105,7 +105,7 @@ static int parse_channel_expressions(AVFilterContext *ctx,
{
EvalContext *eval = ctx->priv;
char *args1 = av_strdup(eval->exprs);
- char *expr, *last_expr, *buf;
+ char *expr, *last_expr = NULL, *buf;
double (* const *func1)(void *, double) = NULL;
const char * const *func1_names = NULL;
int i, ret = 0;
OpenPOWER on IntegriCloud