summaryrefslogtreecommitdiff
path: root/libavfilter/vf_minterpolate.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2018-11-16 21:45:49 +0100
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2018-11-16 21:45:49 +0100
commit21dd05ee6ad3fccfd57a7171a8d8d882d9abf940 (patch)
tree8d6124fc60580c295c0145606e587273c56c4da1 /libavfilter/vf_minterpolate.c
parent395508d9b6c7ad7ddef5ae9a9d1229913b118437 (diff)
downloadffmpeg-21dd05ee6ad3fccfd57a7171a8d8d882d9abf940.tar.gz
lavfi/minterpolate: Remove declaration of two unused variables.
Diffstat (limited to 'libavfilter/vf_minterpolate.c')
-rw-r--r--libavfilter/vf_minterpolate.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/vf_minterpolate.c b/libavfilter/vf_minterpolate.c
index 532f5ed235..b0bb238ade 100644
--- a/libavfilter/vf_minterpolate.c
+++ b/libavfilter/vf_minterpolate.c
@@ -826,7 +826,6 @@ static int inject_frame(AVFilterLink *inlink, AVFrame *avf_in)
static int detect_scene_change(MIContext *mi_ctx)
{
AVMotionEstContext *me_ctx = &mi_ctx->me_ctx;
- int x, y;
uint8_t *p1 = mi_ctx->frames[1].avf->data[0];
ptrdiff_t linesize1 = mi_ctx->frames[1].avf->linesize[0];
uint8_t *p2 = mi_ctx->frames[2].avf->data[0];