You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avfilter/paletteuse: fix error dithering accuracy
This commit is contained in:
		| @@ -133,9 +133,9 @@ static int query_formats(AVFilterContext *ctx) | ||||
|  | ||||
| static av_always_inline int dither_color(uint32_t px, int er, int eg, int eb, int scale, int shift) | ||||
| { | ||||
|     return av_clip_uint8((px >> 16 & 0xff) + ((er * scale) >> shift)) << 16 | ||||
|          | av_clip_uint8((px >>  8 & 0xff) + ((eg * scale) >> shift)) <<  8 | ||||
|          | av_clip_uint8((px       & 0xff) + ((eb * scale) >> shift)); | ||||
|     return av_clip_uint8((px >> 16 & 0xff) + ((er * scale) / (1<<shift))) << 16 | ||||
|          | av_clip_uint8((px >>  8 & 0xff) + ((eg * scale) / (1<<shift))) <<  8 | ||||
|          | av_clip_uint8((px       & 0xff) + ((eb * scale) / (1<<shift))); | ||||
| } | ||||
|  | ||||
| static av_always_inline int diff(const uint8_t *c1, const uint8_t *c2) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user