Browse Source

avcodec/vvcdec: Fix compiling with MSVC 2022 17.8 and older

Versions of MSVC older than 17.9 error out here with the following
error:

    src/libavcodec/vvc/filter.c(815): error C2059: syntax error: '}'
    src/libavcodec/vvc/filter.c(832): error C2065: 'all_zero_bs': undeclared identifier
    src/libavcodec/vvc/filter.c(836): error C2065: 'all_zero_bs': undeclared identifier

This was a regression from 5b9320b209c727ab2df3e76f77aad676f986c8e4.

Signed-off-by: Martin Storsjö <martin@martin.st>
Martin Storsjö 1 week ago
parent
commit
75e3b81f75
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libavcodec/vvc/filter.c

+ 1 - 1
libavcodec/vvc/filter.c

@@ -812,7 +812,7 @@ static void vvc_deblock(const VVCLocalContext *lc, int x0, int y0, const int rs,
         for (int y = y0; y < y_end; y += (DEBLOCK_STEP << vs)) {
             for (int x = x0 ? x0 : grid; x < x_end; x += grid) {
                 const uint8_t horizontal_ctu_edge = !vertical && !(x % ctb_size);
-                int32_t bs[4], beta[4], tc[4] = { }, all_zero_bs = 1;
+                int32_t bs[4], beta[4], tc[4] = { 0 }, all_zero_bs = 1;
                 uint8_t max_len_p[4], max_len_q[4];
 
                 for (int i = 0; i < DEBLOCK_STEP >> (2 - vs); i++) {