You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avfilter/vf_huesaturation: Remove dead store
Fixes Coverity issue #1493345. Reviewed-by: Steven Liu <lingjiujianke@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
		| @@ -297,7 +297,6 @@ static void transform_point(float matrix[4][4], | ||||
|                             float *tx, float *ty, float *tz) | ||||
| { | ||||
|     x = y; | ||||
|     *tx = x; | ||||
|     *tx = x * matrix[0][0] + y * matrix[1][0] + z * matrix[2][0] + matrix[3][0]; | ||||
|     *ty = x * matrix[0][1] + y * matrix[1][1] + z * matrix[2][1] + matrix[3][1]; | ||||
|     *tz = x * matrix[0][2] + y * matrix[1][2] + z * matrix[2][2] + matrix[3][2]; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user