avcodec/error_resilience: Remove set-but-not-used variable
Fixes a -Wunused-but-set-variable from Clang 15. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
945760b347
commit
8eb094adb2
@ -393,7 +393,7 @@ static void guess_mv(ERContext *s)
|
||||
const ptrdiff_t mb_stride = s->mb_stride;
|
||||
const int mb_width = s->mb_width;
|
||||
int mb_height = s->mb_height;
|
||||
int i, depth, num_avail;
|
||||
int i, num_avail;
|
||||
int mb_x, mb_y;
|
||||
ptrdiff_t mot_step, mot_stride;
|
||||
int blocklist_length, next_blocklist_length;
|
||||
@ -469,7 +469,7 @@ static void guess_mv(ERContext *s)
|
||||
}
|
||||
}
|
||||
|
||||
for (depth = 0; ; depth++) {
|
||||
for (;;) {
|
||||
int changed, pass, none_left;
|
||||
int blocklist_index;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user