diff options
| author | Paul B Mahol <[email protected]> | 2015-10-06 09:56:22 +0200 | 
|---|---|---|
| committer | Paul B Mahol <[email protected]> | 2015-10-06 09:56:22 +0200 | 
| commit | a342c2a5317f3791bac1ccd3b919c94d4bace8ef (patch) | |
| tree | 805ce15cbf2b04fb5a1766d8f618ddcfaa5294c0 | |
| parent | 755242b9121331af71caf8b47517335c388d8511 (diff) | |
afilter/af_extrastereo: remove dead initialization
Signed-off-by: Paul B Mahol <[email protected]>
| -rw-r--r-- | libavfilter/af_extrastereo.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_extrastereo.c b/libavfilter/af_extrastereo.c index 020d09c025..9d23e88646 100644 --- a/libavfilter/af_extrastereo.c +++ b/libavfilter/af_extrastereo.c @@ -64,7 +64,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)      ExtraStereoContext *s = ctx->priv;      const float *src = (const float *)in->data[0];      const float mult = s->mult; -    AVFrame *out = NULL; +    AVFrame *out;      float *dst;      int n;  | 
