1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec/svq1dec: fix runtime error: applying non-zero offset 4 to null pointer

This commit is contained in:
Paul B Mahol 2023-09-23 09:57:06 +02:00
parent 5d98259841
commit cb26b85953

View File

@ -282,7 +282,7 @@ static int svq1_decode_block_non_intra(GetBitContext *bitbuf, uint8_t *pixels,
SVQ1_CALC_CODEBOOK_ENTRIES(ff_svq1_inter_codebooks); SVQ1_CALC_CODEBOOK_ENTRIES(ff_svq1_inter_codebooks);
for (y = 0; y < height; y++) { for (y = 0; y < height; y++) {
for (x = 0; x < width / 4; x++, codebook++) { for (x = 0; x < width / 4; x++) {
n3 = dst[x]; n3 = dst[x];
/* add mean value to vector */ /* add mean value to vector */
n1 = n4 + ((n3 & 0xFF00FF00) >> 8); n1 = n4 + ((n3 & 0xFF00FF00) >> 8);
@ -290,6 +290,8 @@ static int svq1_decode_block_non_intra(GetBitContext *bitbuf, uint8_t *pixels,
SVQ1_ADD_CODEBOOK() SVQ1_ADD_CODEBOOK()
/* store result */ /* store result */
dst[x] = n1 << 8 | n2; dst[x] = n1 << 8 | n2;
if (codebook != NULL)
codebook++;
} }
dst += pitch / 4; dst += pitch / 4;
} }