You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avcodec/svq1dec: fix runtime error: applying non-zero offset 4 to null pointer
This commit is contained in:
		| @@ -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; | ||||||
|         } |         } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user