libavfilter/vsrc_mandelbrot.c
658d166d
 /*
  * Copyright (c) 2011 Michael Niedermayer
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
  * The vsrc_color filter from Stefano Sabatini was used as template to create
  * this
  */
 
 /**
  * @file
15dcc506
  * Mandelbrot fractal renderer
658d166d
  */
 
 #include "avfilter.h"
c9e183b4
 #include "formats.h"
 #include "video.h"
c17808ce
 #include "internal.h"
658d166d
 #include "libavutil/imgutils.h"
3a9f2f1d
 #include "libavutil/opt.h"
658d166d
 #include "libavutil/parseutils.h"
70eb58cd
 #include <float.h>
73af8ea3
 #include <math.h>
658d166d
 
41fd1b2d
 #define SQR(a) ((a)*(a))
 
4ccd898a
 enum Outer{
     ITERATION_COUNT,
     NORMALIZED_ITERATION_COUNT,
a2b58256
     WHITE,
79938a4e
     OUTZ,
4ccd898a
 };
 
e8499ab1
 enum Inner{
     BLACK,
08dadd33
     PERIOD,
5a68b1ac
     CONVTIME,
8d51cb4f
     MINCOL,
e8499ab1
 };
 
07f272bd
 typedef struct Point {
     double p[2];
     uint32_t val;
 } Point;
 
ed93ed5e
 typedef struct MBContext {
3a9f2f1d
     const AVClass *class;
658d166d
     int w, h;
975efc88
     AVRational frame_rate;
658d166d
     uint64_t pts;
     int maxiter;
     double start_x;
     double start_y;
     double start_scale;
ddeb194b
     double end_scale;
     double end_pts;
75e30916
     double bailout;
9caec04a
     int outer;
     int inner;
07f272bd
     int cache_allocated;
     int cache_used;
     Point *point_cache;
     Point *next_cache;
50b8f938
     double (*zyklus)[2];
04bb26e3
     uint32_t dither;
0d6e5a17
 
     double morphxf;
     double morphyf;
     double morphamp;
658d166d
 } MBContext;
 
3a9f2f1d
 #define OFFSET(x) offsetof(MBContext, x)
42d621d1
 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
3a9f2f1d
 
 static const AVOption mandelbrot_options[] = {
42d621d1
     {"size",        "set frame size",                OFFSET(w),       AV_OPT_TYPE_IMAGE_SIZE, {.str="640x480"},  CHAR_MIN, CHAR_MAX, FLAGS },
     {"s",           "set frame size",                OFFSET(w),       AV_OPT_TYPE_IMAGE_SIZE, {.str="640x480"},  CHAR_MIN, CHAR_MAX, FLAGS },
975efc88
     {"rate",        "set frame rate",                OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str="25"},  CHAR_MIN, CHAR_MAX, FLAGS },
     {"r",           "set frame rate",                OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str="25"},  CHAR_MIN, CHAR_MAX, FLAGS },
d46c1c72
     {"maxiter",     "set max iterations number",     OFFSET(maxiter), AV_OPT_TYPE_INT,        {.i64=7189},  1,        INT_MAX, FLAGS },
42d621d1
     {"start_x",     "set the initial x position",    OFFSET(start_x), AV_OPT_TYPE_DOUBLE,     {.dbl=-0.743643887037158704752191506114774}, -100, 100, FLAGS },
     {"start_y",     "set the initial y position",    OFFSET(start_y), AV_OPT_TYPE_DOUBLE,     {.dbl=-0.131825904205311970493132056385139}, -100, 100, FLAGS },
     {"start_scale", "set the initial scale value",   OFFSET(start_scale), AV_OPT_TYPE_DOUBLE, {.dbl=3.0},  0, FLT_MAX, FLAGS },
     {"end_scale",   "set the terminal scale value",  OFFSET(end_scale), AV_OPT_TYPE_DOUBLE,   {.dbl=0.3},  0, FLT_MAX, FLAGS },
     {"end_pts",     "set the terminal pts value",    OFFSET(end_pts), AV_OPT_TYPE_DOUBLE,     {.dbl=400},  0, INT64_MAX, FLAGS },
     {"bailout",     "set the bailout value",         OFFSET(bailout), AV_OPT_TYPE_DOUBLE,     {.dbl=10},   0, FLT_MAX, FLAGS },
0d6e5a17
     {"morphxf",     "set morph x frequency",         OFFSET(morphxf), AV_OPT_TYPE_DOUBLE,     {.dbl=0.01},   -FLT_MAX, FLT_MAX, FLAGS },
     {"morphyf",     "set morph y frequency",         OFFSET(morphyf), AV_OPT_TYPE_DOUBLE,     {.dbl=0.0123}, -FLT_MAX, FLT_MAX, FLAGS },
     {"morphamp",    "set morph amplitude",           OFFSET(morphamp), AV_OPT_TYPE_DOUBLE,    {.dbl=0},      -FLT_MAX, FLT_MAX, FLAGS },
3a9f2f1d
 
d46c1c72
     {"outer",       "set outer coloring mode",       OFFSET(outer), AV_OPT_TYPE_INT, {.i64=NORMALIZED_ITERATION_COUNT}, 0, INT_MAX, FLAGS, "outer" },
d5f65e9d
     {"iteration_count", "set iteration count mode",  0, AV_OPT_TYPE_CONST, {.i64=ITERATION_COUNT}, INT_MIN, INT_MAX, FLAGS, "outer" },
     {"normalized_iteration_count", "set normalized iteration count mode",   0, AV_OPT_TYPE_CONST, {.i64=NORMALIZED_ITERATION_COUNT}, INT_MIN, INT_MAX, FLAGS, "outer" },
a2b58256
     {"white", "set white mode",                      0, AV_OPT_TYPE_CONST, {.i64=WHITE}, INT_MIN, INT_MAX, FLAGS, "outer" },
79938a4e
     {"outz",        "set outz mode",                 0, AV_OPT_TYPE_CONST, {.i64=OUTZ}, INT_MIN, INT_MAX, FLAGS, "outer" },
3a9f2f1d
 
d46c1c72
     {"inner",       "set inner coloring mode",       OFFSET(inner), AV_OPT_TYPE_INT, {.i64=MINCOL}, 0, INT_MAX, FLAGS, "inner" },
d5f65e9d
     {"black",       "set black mode",                0, AV_OPT_TYPE_CONST, {.i64=BLACK}, INT_MIN, INT_MAX, FLAGS, "inner"},
     {"period",      "set period mode",               0, AV_OPT_TYPE_CONST, {.i64=PERIOD}, INT_MIN, INT_MAX, FLAGS, "inner"},
     {"convergence", "show time until convergence",   0, AV_OPT_TYPE_CONST, {.i64=CONVTIME}, INT_MIN, INT_MAX, FLAGS, "inner"},
     {"mincol",      "color based on point closest to the origin of the iterations",   0, AV_OPT_TYPE_CONST, {.i64=MINCOL}, INT_MIN, INT_MAX, FLAGS, "inner"},
3a9f2f1d
 
     {NULL},
 };
 
c17808ce
 AVFILTER_DEFINE_CLASS(mandelbrot);
3a9f2f1d
 
fd6228e6
 static av_cold int init(AVFilterContext *ctx)
658d166d
 {
d13a2df8
     MBContext *s = ctx->priv;
3a9f2f1d
 
d13a2df8
     s->bailout *= s->bailout;
658d166d
 
d13a2df8
     s->start_scale /=s->h;
     s->end_scale /=s->h;
658d166d
 
d13a2df8
     s->cache_allocated = s->w * s->h * 3;
     s->cache_used = 0;
     s->point_cache= av_malloc_array(s->cache_allocated, sizeof(*s->point_cache));
     s-> next_cache= av_malloc_array(s->cache_allocated, sizeof(*s-> next_cache));
     s-> zyklus    = av_malloc_array(s->maxiter + 16, sizeof(*s->zyklus));
07f272bd
 
658d166d
     return 0;
 }
 
 static av_cold void uninit(AVFilterContext *ctx)
 {
d13a2df8
     MBContext *s = ctx->priv;
658d166d
 
d13a2df8
     av_freep(&s->point_cache);
     av_freep(&s-> next_cache);
     av_freep(&s->zyklus);
658d166d
 }
 
 static int query_formats(AVFilterContext *ctx)
 {
ac627b3d
     static const enum AVPixelFormat pix_fmts[] = {
ac7b1f74
         AV_PIX_FMT_0BGR32,
ac627b3d
         AV_PIX_FMT_NONE
658d166d
     };
 
a0854c08
     AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
     if (!fmts_list)
         return AVERROR(ENOMEM);
     return ff_set_common_formats(ctx, fmts_list);
658d166d
 }
 
 static int config_props(AVFilterLink *inlink)
 {
     AVFilterContext *ctx = inlink->src;
d13a2df8
     MBContext *s = ctx->priv;
658d166d
 
d13a2df8
     if (av_image_check_size(s->w, s->h, 0, ctx) < 0)
658d166d
         return AVERROR(EINVAL);
 
d13a2df8
     inlink->w = s->w;
     inlink->h = s->h;
     inlink->time_base = av_inv_q(s->frame_rate);
658d166d
 
     return 0;
 }
 
07f272bd
 static void fill_from_cache(AVFilterContext *ctx, uint32_t *color, int *in_cidx, int *out_cidx, double py, double scale){
d13a2df8
     MBContext *s = ctx->priv;
     if(s->morphamp)
0d6e5a17
         return;
d13a2df8
     for(; *in_cidx < s->cache_used; (*in_cidx)++){
         Point *p= &s->point_cache[*in_cidx];
07f272bd
         int x;
c15400af
         if(p->p[1] > py)
07f272bd
             break;
5484cbe9
         x= lrint((p->p[0] - s->start_x) / scale + s->w/2);
d13a2df8
         if(x<0 || x >= s->w)
07f272bd
             continue;
         if(color) color[x] = p->val;
d13a2df8
         if(out_cidx && *out_cidx < s->cache_allocated)
             s->next_cache[(*out_cidx)++]= *p;
07f272bd
     }
 }
 
d13a2df8
 static int interpol(MBContext *s, uint32_t *color, int x, int y, int linesize)
ca148082
 {
     uint32_t a,b,c,d, i;
4ebbcdb3
     uint32_t ipol=0xFF000000;
ca148082
     int dist;
 
d13a2df8
     if(!x || !y || x+1==s->w || y+1==s->h)
ca148082
         return 0;
 
d13a2df8
     dist= FFMAX(FFABS(x-(s->w>>1))*s->h, FFABS(y-(s->h>>1))*s->w);
ca148082
 
d13a2df8
     if(dist<(s->w*s->h>>3))
ca148082
         return 0;
 
     a=color[(x+1) + (y+0)*linesize];
     b=color[(x-1) + (y+1)*linesize];
     c=color[(x+0) + (y+1)*linesize];
     d=color[(x+1) + (y+1)*linesize];
 
     if(a&&c){
         b= color[(x-1) + (y+0)*linesize];
         d= color[(x+0) + (y-1)*linesize];
     }else if(b&&d){
         a= color[(x+1) + (y-1)*linesize];
         c= color[(x-1) + (y-1)*linesize];
     }else if(c){
         d= color[(x+0) + (y-1)*linesize];
         a= color[(x-1) + (y+0)*linesize];
         b= color[(x+1) + (y-1)*linesize];
     }else if(d){
         c= color[(x-1) + (y-1)*linesize];
         a= color[(x-1) + (y+0)*linesize];
         b= color[(x+1) + (y-1)*linesize];
     }else
         return 0;
 
     for(i=0; i<3; i++){
         int s= 8*i;
         uint8_t ac= a>>s;
         uint8_t bc= b>>s;
         uint8_t cc= c>>s;
         uint8_t dc= d>>s;
         int ipolab= (ac + bc);
         int ipolcd= (cc + dc);
         if(FFABS(ipolab - ipolcd) > 5)
             return 0;
a5dfedd3
         if(FFABS(ac-bc)+FFABS(cc-dc) > 20)
             return 0;
ca148082
         ipol |= ((ipolab + ipolcd + 2)/4)<<s;
     }
4ebbcdb3
     color[x + y*linesize]= ipol;
ca148082
     return 1;
 }
 
658d166d
 static void draw_mandelbrot(AVFilterContext *ctx, uint32_t *color, int linesize, int64_t pts)
 {
d13a2df8
     MBContext *s = ctx->priv;
07f272bd
     int x,y,i, in_cidx=0, next_cidx=0, tmp_cidx;
d13a2df8
     double scale= s->start_scale*pow(s->end_scale/s->start_scale, pts/s->end_pts);
6c5dd858
     int use_zyklus=0;
d13a2df8
     fill_from_cache(ctx, NULL, &in_cidx, NULL, s->start_y+scale*(-s->h/2-0.5), scale);
ca148082
     tmp_cidx= in_cidx;
d13a2df8
     memset(color, 0, sizeof(*color)*s->w);
     for(y=0; y<s->h; y++){
ca148082
         int y1= y+1;
d13a2df8
         const double ci=s->start_y+scale*(y-s->h/2);
ca148082
         fill_from_cache(ctx, NULL, &in_cidx, &next_cidx, ci, scale);
d13a2df8
         if(y1<s->h){
             memset(color+linesize*y1, 0, sizeof(*color)*s->w);
ca148082
             fill_from_cache(ctx, color+linesize*y1, &tmp_cidx, NULL, ci + 3*scale/2, scale);
         }
07f272bd
 
d13a2df8
         for(x=0; x<s->w; x++){
656911d8
             float av_uninit(epsilon);
d13a2df8
             const double cr=s->start_x+scale*(x-s->w/2);
51bcd5cd
             double zr=cr;
             double zi=ci;
658d166d
             uint32_t c=0;
d13a2df8
             double dv= s->dither / (double)(1LL<<32);
             s->dither= s->dither*1664525+1013904223;
658d166d
 
07f272bd
             if(color[x + y*linesize] & 0xFF000000)
                 continue;
d13a2df8
             if(!s->morphamp){
                 if(interpol(s, color, x, y, linesize)){
                     if(next_cidx < s->cache_allocated){
                         s->next_cache[next_cidx  ].p[0]= cr;
                         s->next_cache[next_cidx  ].p[1]= ci;
                         s->next_cache[next_cidx++].val = color[x + y*linesize];
e82f562f
                     }
                     continue;
51bcd5cd
                 }
             }else{
d13a2df8
                 zr += cos(pts * s->morphxf) * s->morphamp;
                 zi += sin(pts * s->morphyf) * s->morphamp;
ca148082
             }
07f272bd
 
d13a2df8
             use_zyklus= (x==0 || s->inner!=BLACK ||color[x-1 + y*linesize] == 0xFF000000);
690860d0
             if(use_zyklus)
e9c7493f
                 epsilon= scale*(abs(x-s->w/2) + abs(y-s->h/2))/s->w;
2fee131b
 
cf670fbc
 #define Z_Z2_C(outr,outi,inr,ini)\
             outr= inr*inr - ini*ini + cr;\
             outi= 2*inr*ini + ci;
 
fe2efc52
 #define Z_Z2_C_ZYKLUS(outr,outi,inr,ini, Z)\
             Z_Z2_C(outr,outi,inr,ini)\
             if(use_zyklus){\
d13a2df8
                 if(Z && fabs(s->zyklus[i>>1][0]-outr)+fabs(s->zyklus[i>>1][1]-outi) <= epsilon)\
fe2efc52
                     break;\
56fc4cf0
             }\
d13a2df8
             s->zyklus[i][0]= outr;\
             s->zyklus[i][1]= outi;\
56fc4cf0
 
fe2efc52
 
 
d13a2df8
             for(i=0; i<s->maxiter-8; i++){
649d3932
                 double t;
                 Z_Z2_C_ZYKLUS(t, zi, zr, zi, 0)
                 i++;
                 Z_Z2_C_ZYKLUS(zr, zi, t, zi, 1)
                 i++;
                 Z_Z2_C_ZYKLUS(t, zi, zr, zi, 0)
                 i++;
                 Z_Z2_C_ZYKLUS(zr, zi, t, zi, 1)
                 i++;
                 Z_Z2_C_ZYKLUS(t, zi, zr, zi, 0)
                 i++;
                 Z_Z2_C_ZYKLUS(zr, zi, t, zi, 1)
                 i++;
                 Z_Z2_C_ZYKLUS(t, zi, zr, zi, 0)
                 i++;
                 Z_Z2_C_ZYKLUS(zr, zi, t, zi, 1)
d13a2df8
                 if(zr*zr + zi*zi > s->bailout){
da1344e0
                     i-= FFMIN(7, i);
d13a2df8
                     for(; i<s->maxiter; i++){
                         zr= s->zyklus[i][0];
                         zi= s->zyklus[i][1];
                         if(zr*zr + zi*zi > s->bailout){
                             switch(s->outer){
a2b58256
                             case            ITERATION_COUNT:
                                 zr = i;
99061996
                                 c = lrintf((sinf(zr)+1)*127) + lrintf((sinf(zr/1.234)+1)*127)*256*256 + lrintf((sinf(zr/100)+1)*127)*256;
a2b58256
                                 break;
                             case NORMALIZED_ITERATION_COUNT:
d13a2df8
                                 zr = i + log2(log(s->bailout) / log(zr*zr + zi*zi));
99061996
                                 c = lrintf((sinf(zr)+1)*127) + lrintf((sinf(zr/1.234)+1)*127)*256*256 + lrintf((sinf(zr/100)+1)*127)*256;
a2b58256
                                 break;
                             case                      WHITE:
                                 c = 0xFFFFFF;
79938a4e
                                 break;
                             case                      OUTZ:
d13a2df8
                                 zr /= s->bailout;
                                 zi /= s->bailout;
79938a4e
                                 c = (((int)(zr*128+128))&0xFF)*256 + (((int)(zi*128+128))&0xFF);
da1344e0
                             }
                             break;
                         }
4ccd898a
                     }
658d166d
                     break;
                 }
             }
5a68b1ac
             if(!c){
d13a2df8
                 if(s->inner==PERIOD){
1567ec43
                     int j;
                     for(j=i-1; j; j--)
d13a2df8
                         if(SQR(s->zyklus[j][0]-zr) + SQR(s->zyklus[j][1]-zi) < epsilon*epsilon*10)
1567ec43
                             break;
                     if(j){
                         c= i-j;
                         c= ((c<<5)&0xE0) + ((c<<10)&0xE000) + ((c<<15)&0xE00000);
                     }
d13a2df8
                 }else if(s->inner==CONVTIME){
                     c= floor(i*255.0/s->maxiter+dv)*0x010101;
                 } else if(s->inner==MINCOL){
8d51cb4f
                     int j;
                     double closest=9999;
                     int closest_index=0;
974d25e2
                     for(j=i-1; j>=0; j--)
d13a2df8
                         if(SQR(s->zyklus[j][0]) + SQR(s->zyklus[j][1]) < closest){
                             closest= SQR(s->zyklus[j][0]) + SQR(s->zyklus[j][1]);
8d51cb4f
                             closest_index= j;
                         }
                     closest = sqrt(closest);
d13a2df8
                     c= lrintf((s->zyklus[closest_index][0]/closest+1)*127+dv) + lrintf((s->zyklus[closest_index][1]/closest+1)*127+dv)*256;
5a68b1ac
                 }
08dadd33
             }
e4bfc726
             c |= 0xFF000000;
658d166d
             color[x + y*linesize]= c;
d13a2df8
             if(next_cidx < s->cache_allocated){
                 s->next_cache[next_cidx  ].p[0]= cr;
                 s->next_cache[next_cidx  ].p[1]= ci;
                 s->next_cache[next_cidx++].val = c;
07f272bd
             }
658d166d
         }
07f272bd
         fill_from_cache(ctx, NULL, &in_cidx, &next_cidx, ci + scale/2, scale);
658d166d
     }
d13a2df8
     FFSWAP(void*, s->next_cache, s->point_cache);
     s->cache_used = next_cidx;
     if(s->cache_used == s->cache_allocated)
c322f198
         av_log(ctx, AV_LOG_INFO, "Mandelbrot cache is too small!\n");
658d166d
 }
 
 static int request_frame(AVFilterLink *link)
 {
d13a2df8
     MBContext *s = link->src->priv;
     AVFrame *picref = ff_get_video_buffer(link, s->w, s->h);
ed8373e7
     if (!picref)
         return AVERROR(ENOMEM);
 
a05a44e2
     picref->sample_aspect_ratio = (AVRational) {1, 1};
d13a2df8
     picref->pts = s->pts++;
658d166d
 
4c52adad
     draw_mandelbrot(link->src, (uint32_t*)picref->data[0], picref->linesize[0]/4, picref->pts);
afa0b908
     return ff_filter_frame(link, picref);
658d166d
 }
 
2d9d4440
 static const AVFilterPad mandelbrot_outputs[] = {
     {
         .name          = "default",
         .type          = AVMEDIA_TYPE_VIDEO,
         .request_frame = request_frame,
         .config_props  = config_props,
     },
b211607b
     { NULL }
2d9d4440
 };
 
325f6e0a
 AVFilter ff_vsrc_mandelbrot = {
b211607b
     .name          = "mandelbrot",
     .description   = NULL_IF_CONFIG_SMALL("Render a Mandelbrot fractal."),
     .priv_size     = sizeof(MBContext),
     .priv_class    = &mandelbrot_class,
     .init          = init,
     .uninit        = uninit,
658d166d
     .query_formats = query_formats,
2d9d4440
     .inputs        = NULL,
     .outputs       = mandelbrot_outputs,
658d166d
 };