Commit a342c2a5 authored by Paul B Mahol's avatar Paul B Mahol

afilter/af_extrastereo: remove dead initialization

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 755242b9
...@@ -64,7 +64,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) ...@@ -64,7 +64,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
ExtraStereoContext *s = ctx->priv; ExtraStereoContext *s = ctx->priv;
const float *src = (const float *)in->data[0]; const float *src = (const float *)in->data[0];
const float mult = s->mult; const float mult = s->mult;
AVFrame *out = NULL; AVFrame *out;
float *dst; float *dst;
int n; int n;
......
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