diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2018-11-16 21:45:49 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2018-11-16 21:45:49 +0100 |
commit | 21dd05ee6ad3fccfd57a7171a8d8d882d9abf940 (patch) | |
tree | 8d6124fc60580c295c0145606e587273c56c4da1 /libavfilter/vf_minterpolate.c | |
parent | 395508d9b6c7ad7ddef5ae9a9d1229913b118437 (diff) | |
download | ffmpeg-21dd05ee6ad3fccfd57a7171a8d8d882d9abf940.tar.gz |
lavfi/minterpolate: Remove declaration of two unused variables.
Diffstat (limited to 'libavfilter/vf_minterpolate.c')
-rw-r--r-- | libavfilter/vf_minterpolate.c | 1 |
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]; |