You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

253 lines
8.0KB

  1. /*
  2. * Copyright (c) 2011 Michael Niedermayer
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. *
  20. * The vsrc_color filter from Stefano Sabatini was used as template to create
  21. * this
  22. */
  23. /**
  24. * @file
  25. * Mandelbrot fraktal renderer
  26. */
  27. #include "avfilter.h"
  28. #include "libavutil/imgutils.h"
  29. #include "libavutil/parseutils.h"
  30. enum Outer{
  31. ITERATION_COUNT,
  32. NORMALIZED_ITERATION_COUNT,
  33. };
  34. typedef struct Point {
  35. double p[2];
  36. uint32_t val;
  37. } Point;
  38. typedef struct {
  39. int w, h;
  40. AVRational time_base;
  41. uint64_t pts;
  42. int maxiter;
  43. double start_x;
  44. double start_y;
  45. double start_scale;
  46. double end_scale;
  47. double end_pts;
  48. double bailout;
  49. enum Outer outer;
  50. int cache_allocated;
  51. int cache_used;
  52. Point *point_cache;
  53. Point *next_cache;
  54. double (*zyklus)[2];
  55. } MBContext;
  56. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  57. {
  58. MBContext *mb = ctx->priv;
  59. char frame_size [128] = "640x480";
  60. char frame_rate [128] = "25";
  61. AVRational frame_rate_q;
  62. mb->maxiter=4096;
  63. mb->start_x=-0.743643887037158704752191506114774;
  64. mb->start_y=-0.131825904205311970493132056385139;
  65. mb->start_scale=3.0;
  66. mb->end_scale=0.3;
  67. mb->end_pts=800;
  68. mb->bailout=10;
  69. mb->outer= NORMALIZED_ITERATION_COUNT;
  70. if (args)
  71. sscanf(args, "%127[^:]:%127[^:]:%d:%lf:%lf:%lf:%lf:%lf:%lf:%d", frame_size, frame_rate,
  72. &mb->maxiter, &mb->start_x, &mb->start_y, &mb->start_scale, &mb->end_scale,
  73. &mb->end_pts, &mb->bailout, &mb->outer);
  74. mb->bailout *= mb->bailout;
  75. if (av_parse_video_size(&mb->w, &mb->h, frame_size) < 0) {
  76. av_log(ctx, AV_LOG_ERROR, "Invalid frame size: %s\n", frame_size);
  77. return AVERROR(EINVAL);
  78. }
  79. mb->start_scale /=mb->h;
  80. mb->end_scale /=mb->h;
  81. if (av_parse_video_rate(&frame_rate_q, frame_rate) < 0 ||
  82. frame_rate_q.den <= 0 || frame_rate_q.num <= 0) {
  83. av_log(ctx, AV_LOG_ERROR, "Invalid frame rate: %s\n", frame_rate);
  84. return AVERROR(EINVAL);
  85. }
  86. mb->time_base.num = frame_rate_q.den;
  87. mb->time_base.den = frame_rate_q.num;
  88. mb->cache_allocated = mb->w * mb->h * 3;
  89. mb->cache_used = 0;
  90. mb->point_cache= av_malloc(sizeof(*mb->point_cache)*mb->cache_allocated);
  91. mb-> next_cache= av_malloc(sizeof(*mb-> next_cache)*mb->cache_allocated);
  92. mb-> zyklus = av_malloc(sizeof(*mb->zyklus) * mb->maxiter);
  93. return 0;
  94. }
  95. static av_cold void uninit(AVFilterContext *ctx)
  96. {
  97. MBContext *mb = ctx->priv;
  98. av_freep(&mb->point_cache);
  99. av_freep(&mb-> next_cache);
  100. av_freep(&mb->zyklus);
  101. }
  102. static int query_formats(AVFilterContext *ctx)
  103. {
  104. static const enum PixelFormat pix_fmts[] = {
  105. PIX_FMT_BGR32,
  106. PIX_FMT_NONE
  107. };
  108. avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts));
  109. return 0;
  110. }
  111. static int config_props(AVFilterLink *inlink)
  112. {
  113. AVFilterContext *ctx = inlink->src;
  114. MBContext *mb = ctx->priv;
  115. if (av_image_check_size(mb->w, mb->h, 0, ctx) < 0)
  116. return AVERROR(EINVAL);
  117. inlink->w = mb->w;
  118. inlink->h = mb->h;
  119. inlink->time_base = mb->time_base;
  120. return 0;
  121. }
  122. static void fill_from_cache(AVFilterContext *ctx, uint32_t *color, int *in_cidx, int *out_cidx, double py, double scale){
  123. MBContext *mb = ctx->priv;
  124. for(; *in_cidx < mb->cache_used; (*in_cidx)++){
  125. Point *p= &mb->point_cache[*in_cidx];
  126. int x;
  127. if(*in_cidx >= mb->cache_used || p->p[1] > py)
  128. break;
  129. x= round((p->p[0] - mb->start_x) / scale + mb->w/2);
  130. if(x<0 || x >= mb->w)
  131. continue;
  132. if(color) color[x] = p->val;
  133. if(out_cidx && *out_cidx < mb->cache_allocated)
  134. mb->next_cache[(*out_cidx)++]= *p;
  135. }
  136. }
  137. static void draw_mandelbrot(AVFilterContext *ctx, uint32_t *color, int linesize, int64_t pts)
  138. {
  139. MBContext *mb = ctx->priv;
  140. int x,y,i, in_cidx=0, next_cidx=0, tmp_cidx;
  141. double scale= mb->start_scale*pow(mb->end_scale/mb->start_scale, pts/mb->end_pts);
  142. int use_zyklus=0;
  143. fill_from_cache(ctx, NULL, &in_cidx, NULL, mb->start_y+scale*(-mb->h/2-0.5), scale);
  144. for(y=0; y<mb->h; y++){
  145. const double ci=mb->start_y+scale*(y-mb->h/2);
  146. memset(color+linesize*y, 0, sizeof(*color)*mb->w);
  147. fill_from_cache(ctx, color+linesize*y, &in_cidx, &next_cidx, ci, scale);
  148. tmp_cidx= in_cidx;
  149. fill_from_cache(ctx, color+linesize*y, &tmp_cidx, NULL, ci + scale/2, scale);
  150. for(x=0; x<mb->w; x++){
  151. const double cr=mb->start_x+scale*(x-mb->w/2);
  152. double zr=cr;
  153. double zi=ci;
  154. uint32_t c=0;
  155. if(color[x + y*linesize] & 0xFF000000)
  156. continue;
  157. for(i=0; i<mb->maxiter; i++){
  158. double t;
  159. if(zr*zr + zi*zi > mb->bailout){
  160. switch(mb->outer){
  161. case ITERATION_COUNT: zr= i; break;
  162. case NORMALIZED_ITERATION_COUNT: zr= i + (log(log(mb->bailout)) - log(log(sqrt(zr*zr + zi*zi))))/log(2); break;
  163. }
  164. c= lrintf((sin(zr)+1)*127) + lrintf((sin(zr/1.234)+1)*127)*256*256 + lrintf((sin(zr/100)+1)*127)*256;
  165. break;
  166. }
  167. t= zr*zr - zi*zi;
  168. zi= 2*zr*zi + ci;
  169. zr= t + cr;
  170. if(use_zyklus){
  171. if(i && mb->zyklus[i>>1][0]==zr && mb->zyklus[i>>1][1]==zi)
  172. break;
  173. mb->zyklus[i][0]= zr;
  174. mb->zyklus[i][1]= zi;
  175. }
  176. }
  177. use_zyklus = !c;
  178. c |= 0xFF000000;
  179. color[x + y*linesize]= c;
  180. if(next_cidx < mb->cache_allocated){
  181. mb->next_cache[next_cidx ].p[0]= cr;
  182. mb->next_cache[next_cidx ].p[1]= ci;
  183. mb->next_cache[next_cidx++].val = c;
  184. }
  185. }
  186. fill_from_cache(ctx, NULL, &in_cidx, &next_cidx, ci + scale/2, scale);
  187. }
  188. FFSWAP(void*, mb->next_cache, mb->point_cache);
  189. mb->cache_used = next_cidx;
  190. if(mb->cache_used == mb->cache_allocated)
  191. av_log(0, AV_LOG_INFO, "Mandelbrot cache is too small!\n");
  192. }
  193. static int request_frame(AVFilterLink *link)
  194. {
  195. MBContext *mb = link->src->priv;
  196. AVFilterBufferRef *picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, mb->w, mb->h);
  197. picref->video->sample_aspect_ratio = (AVRational) {1, 1};
  198. picref->pts = mb->pts++;
  199. picref->pos = -1;
  200. avfilter_start_frame(link, avfilter_ref_buffer(picref, ~0));
  201. draw_mandelbrot(link->src, picref->data[0], picref->linesize[0]/4, picref->pts);
  202. avfilter_draw_slice(link, 0, mb->h, 1);
  203. avfilter_end_frame(link);
  204. avfilter_unref_buffer(picref);
  205. return 0;
  206. }
  207. AVFilter avfilter_vsrc_mandelbrot = {
  208. .name = "mandelbrot",
  209. .description = NULL_IF_CONFIG_SMALL("Mandelbrot renderer"),
  210. .priv_size = sizeof(MBContext),
  211. .init = init,
  212. .uninit = uninit,
  213. .query_formats = query_formats,
  214. .inputs = (const AVFilterPad[]) {{ .name = NULL}},
  215. .outputs = (const AVFilterPad[]) {{ .name = "default",
  216. .type = AVMEDIA_TYPE_VIDEO,
  217. .request_frame = request_frame,
  218. .config_props = config_props },
  219. { .name = NULL}},
  220. };