diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-08 01:24:35 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-20 18:58:38 +0200 |
commit | 6e1ca92206ad5c149f69693191a61aa98a1b5209 (patch) | |
tree | e957bc4ef50d4e9e485db712ff64aa5869445cec /libavcodec | |
parent | 7bccf63de5d89f21561456613cf58f44ef87edbd (diff) | |
download | ffmpeg-6e1ca92206ad5c149f69693191a61aa98a1b5209.tar.gz |
avcodec/vc1_block: Remove unnecessary assignments
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vc1_block.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/vc1_block.c b/libavcodec/vc1_block.c index 640f7329ca..384979caf5 100644 --- a/libavcodec/vc1_block.c +++ b/libavcodec/vc1_block.c @@ -2675,12 +2675,11 @@ static int vc1_decode_i_blocks_adv(VC1Context *v) } // do frame decode - s->mb_x = s->mb_y = 0; s->mb_intra = 1; s->first_slice_line = 1; + s->mb_x = 0; s->mb_y = s->start_mb_y; if (s->start_mb_y) { - s->mb_x = 0; init_block_index(v); memset(&s->coded_block[s->block_index[0] - s->b8_stride], 0, (1 + s->b8_stride) * sizeof(*s->coded_block)); |