diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2019-12-25 12:59:07 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-12-26 16:06:25 +0100 |
commit | 398a5f5d8ffe3c39b320c2e5584beba26c99b2ff (patch) | |
tree | 873317342a90b52028d1bbaba2e31aae35ff1246 | |
parent | c991e9cd91845044e93a9c89dd25b48ae707461b (diff) | |
download | ffmpeg-398a5f5d8ffe3c39b320c2e5584beba26c99b2ff.tar.gz |
avfilter/buffersrc: Remove unused variables
Unused since f09ae730.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavfilter/buffersrc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c index 72a5ea9370..2fa9e00daf 100644 --- a/libavfilter/buffersrc.c +++ b/libavfilter/buffersrc.c @@ -435,8 +435,6 @@ static int config_props(AVFilterLink *link) static int request_frame(AVFilterLink *link) { BufferSourceContext *c = link->src->priv; - AVFrame *frame; - int ret; if (c->eof) return AVERROR_EOF; |