You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	Add av_uninit to variable declarations to fix the false positive warnings:
vhook/ppm.c:236: warning: 'out_height' may be used uninitialized in this function vhook/ppm.c:235: warning: 'out_width' may be used uninitialized in this function patch by Patrik Kullman, patrik yes nu Originally committed as revision 17223 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		
				
					committed by
					
						 Diego Biurrun
						Diego Biurrun
					
				
			
			
				
	
			
			
			
						parent
						
							fd51ff1643
						
					
				
				
					commit
					3fd2d1c4bc
				
			| @@ -232,8 +232,8 @@ void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, | ||||
|     AVPicture picture1; | ||||
|     AVPicture picture2; | ||||
|     AVPicture *pict = picture; | ||||
|     int out_width; | ||||
|     int out_height; | ||||
|     int av_uninit(out_width); | ||||
|     int av_uninit(out_height); | ||||
|     int i; | ||||
|     uint8_t *ptr = NULL; | ||||
|     FILE *in = rwpipe_reader( ci->rw ); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user