diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-02-01 17:51:59 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-02-01 17:51:59 +0100 |
commit | aecdb14ad9a0c5d68c15e10dfbcefa36bf5ed7cd (patch) | |
tree | 1f49a803c791c245263eef71bb7e2063353387f2 | |
parent | b28ae1e09bd3ee3942fa986a674acee7fca899e8 (diff) | |
download | ffmpeg-aecdb14ad9a0c5d68c15e10dfbcefa36bf5ed7cd.tar.gz |
lavc/error_resilience: Remove two unused variables.
-rw-r--r-- | libavcodec/error_resilience.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/error_resilience.c b/libavcodec/error_resilience.c index c73d4a7349..3dbcb53b08 100644 --- a/libavcodec/error_resilience.c +++ b/libavcodec/error_resilience.c @@ -475,7 +475,6 @@ static void guess_mv(ERContext *s) none_left = 1; changed = 1; for (pass = 0; (changed || pass < 2) && pass < 10; pass++) { - int mb_x, mb_y; int score_sum = 0; changed = 0; |