You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avfilter/aeval: silence "may be used uninitialized" warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -105,7 +105,7 @@ static int parse_channel_expressions(AVFilterContext *ctx,
|
|||||||
{
|
{
|
||||||
EvalContext *eval = ctx->priv;
|
EvalContext *eval = ctx->priv;
|
||||||
char *args1 = av_strdup(eval->exprs);
|
char *args1 = av_strdup(eval->exprs);
|
||||||
char *expr, *last_expr, *buf;
|
char *expr, *last_expr = NULL, *buf;
|
||||||
double (* const *func1)(void *, double) = NULL;
|
double (* const *func1)(void *, double) = NULL;
|
||||||
const char * const *func1_names = NULL;
|
const char * const *func1_names = NULL;
|
||||||
int i, ret = 0;
|
int i, ret = 0;
|
||||||
|
Reference in New Issue
Block a user