diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-08-05 21:08:42 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-08-06 00:04:36 +0200 |
commit | ad55244c9674bc52f383a967e0d1502e8a8928e9 (patch) | |
tree | 0f0301a9911b8890aa537506d11e29e735c72358 /libavfilter/vf_overlay.c | |
parent | 5d2f89a23c83c690628eb7e045f2271afdfb2ee2 (diff) | |
download | ffmpeg-ad55244c9674bc52f383a967e0d1502e8a8928e9.tar.gz |
lavfi/overlay: remove dead initialization.
Diffstat (limited to 'libavfilter/vf_overlay.c')
-rw-r--r-- | libavfilter/vf_overlay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_overlay.c b/libavfilter/vf_overlay.c index 05e9e1b480..afe45b57ce 100644 --- a/libavfilter/vf_overlay.c +++ b/libavfilter/vf_overlay.c @@ -486,7 +486,7 @@ static int try_push_frame(AVFilterContext *ctx) { OverlayContext *over = ctx->priv; AVFilterLink *outlink = ctx->outputs[0]; - AVFilterBufferRef *outpicref = outlink->out_buf; + AVFilterBufferRef *outpicref; if (try_start_next_frame(ctx) < 0) return AVERROR(EAGAIN); |