ffvpx: update ffmpeg to 3.4.13 ( c721020755 )

This commit is contained in:
roytam1 2023-08-28 07:48:28 +08:00
commit 6f9d5a9385
9 changed files with 31 additions and 8 deletions

View file

@ -313,7 +313,7 @@ static void FUNC(sao_band_filter)(uint8_t *_dst, uint8_t *_src,
offset_table[(k + sao_left_class) & 31] = sao_offset_val[k + 1];
for (y = 0; y < height; y++) {
for (x = 0; x < width; x++)
dst[x] = av_clip_pixel(src[x] + offset_table[src[x] >> shift]);
dst[x] = av_clip_pixel(src[x] + offset_table[(src[x] >> shift) & 31]);
dst += stride_dst;
src += stride_src;
}