mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
mandelbrot: fix inner=period coloring routine
Fixes CID717571 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9c669672c7
commit
4cc4ca5847
@ -346,7 +346,7 @@ static void draw_mandelbrot(AVFilterContext *ctx, uint32_t *color, int linesize,
|
||||
break;
|
||||
if(j){
|
||||
c= i-j;
|
||||
c= ((c<<5)&0xE0) + ((c<<16)&0xE000) + ((c<<27)&0xE00000);
|
||||
c= ((c<<5)&0xE0) + ((c<<10)&0xE000) + ((c<<15)&0xE00000);
|
||||
}
|
||||
}else if(mb->inner==CONVTIME){
|
||||
c= floor(i*255.0/mb->maxiter+dv)*0x010101;
|
||||
|
Loading…
Reference in New Issue
Block a user