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.

236 lines
7.1KB

  1. /*
  2. * Copyright (c) 2019 Paul B Mahol
  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. /**
  21. * @file
  22. * Sierpinski carpet fractal renderer
  23. */
  24. #include "avfilter.h"
  25. #include "formats.h"
  26. #include "video.h"
  27. #include "internal.h"
  28. #include "libavutil/imgutils.h"
  29. #include "libavutil/intreadwrite.h"
  30. #include "libavutil/opt.h"
  31. #include "libavutil/parseutils.h"
  32. #include "libavutil/lfg.h"
  33. #include "libavutil/random_seed.h"
  34. #include <float.h>
  35. #include <math.h>
  36. typedef struct SierpinskiContext {
  37. const AVClass *class;
  38. int w, h;
  39. int type;
  40. AVRational frame_rate;
  41. uint64_t pts;
  42. int64_t seed;
  43. int jump;
  44. int pos_x, pos_y;
  45. int dest_x, dest_y;
  46. AVLFG lfg;
  47. int (*draw_slice)(AVFilterContext *ctx, void *arg, int job, int nb_jobs);
  48. } SierpinskiContext;
  49. #define OFFSET(x) offsetof(SierpinskiContext, x)
  50. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  51. static const AVOption sierpinski_options[] = {
  52. {"size", "set frame size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str="640x480"}, 0, 0, FLAGS },
  53. {"s", "set frame size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str="640x480"}, 0, 0, FLAGS },
  54. {"rate", "set frame rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str="25"}, 0, 0, FLAGS },
  55. {"r", "set frame rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str="25"}, 0, 0, FLAGS },
  56. {"seed", "set the seed", OFFSET(seed), AV_OPT_TYPE_INT64, {.i64=-1}, -1, UINT32_MAX, FLAGS },
  57. {"jump", "set the jump", OFFSET(jump), AV_OPT_TYPE_INT, {.i64=100}, 1, 10000, FLAGS },
  58. {"type","set fractal type",OFFSET(type), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, "type" },
  59. {"carpet", "sierpinski carpet", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "type" },
  60. {"triangle", "sierpinski triangle", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "type" },
  61. {NULL},
  62. };
  63. AVFILTER_DEFINE_CLASS(sierpinski);
  64. static int query_formats(AVFilterContext *ctx)
  65. {
  66. static const enum AVPixelFormat pix_fmts[] = {
  67. AV_PIX_FMT_0BGR32,
  68. AV_PIX_FMT_NONE
  69. };
  70. AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
  71. if (!fmts_list)
  72. return AVERROR(ENOMEM);
  73. return ff_set_common_formats(ctx, fmts_list);
  74. }
  75. static int fill_sierpinski(SierpinskiContext *s, int x, int y)
  76. {
  77. int pos_x = x + s->pos_x;
  78. int pos_y = y + s->pos_y;
  79. while (pos_x != 0 && pos_y != 0) {
  80. if (FFABS(pos_x % 3) == 1 && FFABS(pos_y % 3) == 1)
  81. return 1;
  82. pos_x /= 3;
  83. pos_y /= 3;
  84. }
  85. return 0;
  86. }
  87. static int draw_triangle_slice(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
  88. {
  89. SierpinskiContext *s = ctx->priv;
  90. AVFrame *frame = arg;
  91. const int width = frame->width;
  92. const int height = frame->height;
  93. const int start = (height * job ) / nb_jobs;
  94. const int end = (height * (job+1)) / nb_jobs;
  95. uint8_t *dst = frame->data[0] + start * frame->linesize[0];
  96. for (int y = start; y < end; y++) {
  97. for (int x = 0; x < width; x++) {
  98. if ((s->pos_x + x) & (s->pos_y + y)) {
  99. AV_WL32(&dst[x*4], 0x00000000);
  100. } else {
  101. AV_WL32(&dst[x*4], 0xFFFFFFFF);
  102. }
  103. }
  104. dst += frame->linesize[0];
  105. }
  106. return 0;
  107. }
  108. static int draw_carpet_slice(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
  109. {
  110. SierpinskiContext *s = ctx->priv;
  111. AVFrame *frame = arg;
  112. const int width = frame->width;
  113. const int height = frame->height;
  114. const int start = (height * job ) / nb_jobs;
  115. const int end = (height * (job+1)) / nb_jobs;
  116. uint8_t *dst = frame->data[0] + start * frame->linesize[0];
  117. for (int y = start; y < end; y++) {
  118. for (int x = 0; x < width; x++) {
  119. if (fill_sierpinski(s, x, y)) {
  120. AV_WL32(&dst[x*4], 0x00000000);
  121. } else {
  122. AV_WL32(&dst[x*4], 0xFFFFFFFF);
  123. }
  124. }
  125. dst += frame->linesize[0];
  126. }
  127. return 0;
  128. }
  129. static int config_output(AVFilterLink *inlink)
  130. {
  131. AVFilterContext *ctx = inlink->src;
  132. SierpinskiContext *s = ctx->priv;
  133. if (av_image_check_size(s->w, s->h, 0, ctx) < 0)
  134. return AVERROR(EINVAL);
  135. inlink->w = s->w;
  136. inlink->h = s->h;
  137. inlink->time_base = av_inv_q(s->frame_rate);
  138. inlink->sample_aspect_ratio = (AVRational) {1, 1};
  139. if (s->seed == -1)
  140. s->seed = av_get_random_seed();
  141. av_lfg_init(&s->lfg, s->seed);
  142. s->draw_slice = s->type ? draw_triangle_slice : draw_carpet_slice;
  143. return 0;
  144. }
  145. static void draw_sierpinski(AVFilterContext *ctx, AVFrame *frame)
  146. {
  147. SierpinskiContext *s = ctx->priv;
  148. AVFilterLink *outlink = ctx->outputs[0];
  149. if (s->pos_x == s->dest_x && s->pos_y == s->dest_y) {
  150. unsigned int rnd = av_lfg_get(&s->lfg);
  151. int mod = 2 * s->jump + 1;
  152. s->dest_x += (int)((rnd & 0xffff) % mod) - s->jump;
  153. s->dest_y += (int)((rnd >> 16) % mod) - s->jump;
  154. } else {
  155. if (s->pos_x < s->dest_x)
  156. s->pos_x++;
  157. else if (s->pos_x > s->dest_x)
  158. s->pos_x--;
  159. if (s->pos_y < s->dest_y)
  160. s->pos_y++;
  161. else if (s->pos_y > s->dest_y)
  162. s->pos_y--;
  163. }
  164. ctx->internal->execute(ctx, s->draw_slice, frame, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
  165. }
  166. static int sierpinski_request_frame(AVFilterLink *link)
  167. {
  168. SierpinskiContext *s = link->src->priv;
  169. AVFrame *frame = ff_get_video_buffer(link, s->w, s->h);
  170. if (!frame)
  171. return AVERROR(ENOMEM);
  172. frame->sample_aspect_ratio = (AVRational) {1, 1};
  173. frame->pts = s->pts++;
  174. draw_sierpinski(link->src, frame);
  175. return ff_filter_frame(link, frame);
  176. }
  177. static const AVFilterPad sierpinski_outputs[] = {
  178. {
  179. .name = "default",
  180. .type = AVMEDIA_TYPE_VIDEO,
  181. .request_frame = sierpinski_request_frame,
  182. .config_props = config_output,
  183. },
  184. { NULL }
  185. };
  186. AVFilter ff_vsrc_sierpinski = {
  187. .name = "sierpinski",
  188. .description = NULL_IF_CONFIG_SMALL("Render a Sierpinski fractal."),
  189. .priv_size = sizeof(SierpinskiContext),
  190. .priv_class = &sierpinski_class,
  191. .query_formats = query_formats,
  192. .inputs = NULL,
  193. .outputs = sierpinski_outputs,
  194. .flags = AVFILTER_FLAG_SLICE_THREADS,
  195. };