mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
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
1 changed files with 2 additions and 2 deletions
|
|
@ -393,7 +393,7 @@ static void guess_mv(ERContext *s)
|
||||||
const ptrdiff_t mb_stride = s->mb_stride;
|
const ptrdiff_t mb_stride = s->mb_stride;
|
||||||
const int mb_width = s->mb_width;
|
const int mb_width = s->mb_width;
|
||||||
int mb_height = s->mb_height;
|
int mb_height = s->mb_height;
|
||||||
int i, depth, num_avail;
|
int i, num_avail;
|
||||||
int mb_x, mb_y;
|
int mb_x, mb_y;
|
||||||
ptrdiff_t mot_step, mot_stride;
|
ptrdiff_t mot_step, mot_stride;
|
||||||
int blocklist_length, next_blocklist_length;
|
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 changed, pass, none_left;
|
||||||
int blocklist_index;
|
int blocklist_index;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue