mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 20:42:49 +08:00 
			
		
		
		
	avcodec/takdec: Fix multiple runtime error: signed integer overflow: 637072 * 4096 cannot be represented in type 'int'
Fixes: 2079/clusterfuzz-testcase-minimized-5345861779324928 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
		| @@ -862,7 +862,7 @@ static int tak_decode_frame(AVCodecContext *avctx, void *data, | |||||||
|  |  | ||||||
|             if (s->sample_shift[chan] > 0) |             if (s->sample_shift[chan] > 0) | ||||||
|                 for (i = 0; i < s->nb_samples; i++) |                 for (i = 0; i < s->nb_samples; i++) | ||||||
|                     decoded[i] *= 1 << s->sample_shift[chan]; |                     decoded[i] *= 1U << s->sample_shift[chan]; | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|  |  | ||||||
| @@ -904,7 +904,7 @@ static int tak_decode_frame(AVCodecContext *avctx, void *data, | |||||||
|         for (chan = 0; chan < avctx->channels; chan++) { |         for (chan = 0; chan < avctx->channels; chan++) { | ||||||
|             int32_t *samples = (int32_t *)frame->extended_data[chan]; |             int32_t *samples = (int32_t *)frame->extended_data[chan]; | ||||||
|             for (i = 0; i < s->nb_samples; i++) |             for (i = 0; i < s->nb_samples; i++) | ||||||
|                 samples[i] *= 1 << 8; |                 samples[i] *= 1U << 8; | ||||||
|         } |         } | ||||||
|         break; |         break; | ||||||
|     } |     } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Michael Niedermayer
					Michael Niedermayer