You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avcodec/snowenc-test: use av_mallocz_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		| @@ -1919,8 +1919,8 @@ int main(void){ | ||||
|     s.spatial_decomposition_count=6; | ||||
|     s.spatial_decomposition_type=1; | ||||
|  | ||||
|     s.temp_dwt_buffer  = av_mallocz(width * sizeof(DWTELEM)); | ||||
|     s.temp_idwt_buffer = av_mallocz(width * sizeof(IDWTELEM)); | ||||
|     s.temp_dwt_buffer  = av_mallocz_array(width, sizeof(DWTELEM)); | ||||
|     s.temp_idwt_buffer = av_mallocz_array(width, sizeof(IDWTELEM)); | ||||
|  | ||||
|     if (!s.temp_dwt_buffer || !s.temp_idwt_buffer) { | ||||
|         fprintf(stderr, "Failed to allocate memory\n"); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user