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.

342 lines
12KB

  1. /*
  2. * Copyright (c) Stefano Sabatini 2011
  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. * cellular automaton video source, based on Stephen Wolfram "experimentus crucis"
  23. */
  24. /* #define DEBUG */
  25. #include "libavutil/file.h"
  26. #include "libavutil/lfg.h"
  27. #include "libavutil/opt.h"
  28. #include "libavutil/parseutils.h"
  29. #include "libavutil/random_seed.h"
  30. #include "libavutil/avstring.h"
  31. #include "avfilter.h"
  32. #include "internal.h"
  33. #include "formats.h"
  34. #include "video.h"
  35. typedef struct {
  36. const AVClass *class;
  37. int w, h;
  38. char *filename;
  39. char *rule_str;
  40. uint8_t *file_buf;
  41. size_t file_bufsize;
  42. uint8_t *buf;
  43. int buf_prev_row_idx, buf_row_idx;
  44. uint8_t rule;
  45. uint64_t pts;
  46. AVRational frame_rate;
  47. double random_fill_ratio;
  48. uint32_t random_seed;
  49. int stitch, scroll, start_full;
  50. int64_t generation; ///< the generation number, starting from 0
  51. AVLFG lfg;
  52. char *pattern;
  53. } CellAutoContext;
  54. #define OFFSET(x) offsetof(CellAutoContext, x)
  55. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  56. static const AVOption cellauto_options[] = {
  57. { "filename", "read initial pattern from file", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
  58. { "f", "read initial pattern from file", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
  59. { "pattern", "set initial pattern", OFFSET(pattern), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
  60. { "p", "set initial pattern", OFFSET(pattern), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
  61. { "rate", "set video rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0, FLAGS },
  62. { "r", "set video rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0, FLAGS },
  63. { "size", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, FLAGS },
  64. { "s", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, FLAGS },
  65. { "rule", "set rule", OFFSET(rule), AV_OPT_TYPE_INT, {.i64 = 110}, 0, 255, FLAGS },
  66. { "random_fill_ratio", "set fill ratio for filling initial grid randomly", OFFSET(random_fill_ratio), AV_OPT_TYPE_DOUBLE, {.dbl = 1/M_PHI}, 0, 1, FLAGS },
  67. { "ratio", "set fill ratio for filling initial grid randomly", OFFSET(random_fill_ratio), AV_OPT_TYPE_DOUBLE, {.dbl = 1/M_PHI}, 0, 1, FLAGS },
  68. { "random_seed", "set the seed for filling the initial grid randomly", OFFSET(random_seed), AV_OPT_TYPE_INT, {.i64 = -1}, -1, UINT32_MAX, FLAGS },
  69. { "seed", "set the seed for filling the initial grid randomly", OFFSET(random_seed), AV_OPT_TYPE_INT, {.i64 = -1}, -1, UINT32_MAX, FLAGS },
  70. { "scroll", "scroll pattern downward", OFFSET(scroll), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, FLAGS },
  71. { "start_full", "start filling the whole video", OFFSET(start_full), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, FLAGS },
  72. { "full", "start filling the whole video", OFFSET(start_full), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, FLAGS },
  73. { "stitch", "stitch boundaries", OFFSET(stitch), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, FLAGS },
  74. { NULL },
  75. };
  76. AVFILTER_DEFINE_CLASS(cellauto);
  77. #ifdef DEBUG
  78. static void show_cellauto_row(AVFilterContext *ctx)
  79. {
  80. CellAutoContext *cellauto = ctx->priv;
  81. int i;
  82. uint8_t *row = cellauto->buf + cellauto->w * cellauto->buf_row_idx;
  83. char *line = av_malloc(cellauto->w + 1);
  84. if (!line)
  85. return;
  86. for (i = 0; i < cellauto->w; i++)
  87. line[i] = row[i] ? '@' : ' ';
  88. line[i] = 0;
  89. av_log(ctx, AV_LOG_DEBUG, "generation:%"PRId64" row:%s|\n", cellauto->generation, line);
  90. av_free(line);
  91. }
  92. #endif
  93. static int init_pattern_from_string(AVFilterContext *ctx)
  94. {
  95. CellAutoContext *cellauto = ctx->priv;
  96. char *p;
  97. int i, w = 0;
  98. w = strlen(cellauto->pattern);
  99. av_log(ctx, AV_LOG_DEBUG, "w:%d\n", w);
  100. if (cellauto->w) {
  101. if (w > cellauto->w) {
  102. av_log(ctx, AV_LOG_ERROR,
  103. "The specified width is %d which cannot contain the provided string width of %d\n",
  104. cellauto->w, w);
  105. return AVERROR(EINVAL);
  106. }
  107. } else {
  108. /* width was not specified, set it to width of the provided row */
  109. cellauto->w = w;
  110. cellauto->h = (double)cellauto->w * M_PHI;
  111. }
  112. cellauto->buf = av_mallocz(sizeof(uint8_t) * cellauto->w * cellauto->h);
  113. if (!cellauto->buf)
  114. return AVERROR(ENOMEM);
  115. /* fill buf */
  116. p = cellauto->pattern;
  117. for (i = (cellauto->w - w)/2;; i++) {
  118. av_log(ctx, AV_LOG_DEBUG, "%d %c\n", i, *p == '\n' ? 'N' : *p);
  119. if (*p == '\n' || !*p)
  120. break;
  121. else
  122. cellauto->buf[i] = !!av_isgraph(*(p++));
  123. }
  124. return 0;
  125. }
  126. static int init_pattern_from_file(AVFilterContext *ctx)
  127. {
  128. CellAutoContext *cellauto = ctx->priv;
  129. int ret;
  130. ret = av_file_map(cellauto->filename,
  131. &cellauto->file_buf, &cellauto->file_bufsize, 0, ctx);
  132. if (ret < 0)
  133. return ret;
  134. /* create a string based on the read file */
  135. cellauto->pattern = av_malloc(cellauto->file_bufsize + 1);
  136. if (!cellauto->pattern)
  137. return AVERROR(ENOMEM);
  138. memcpy(cellauto->pattern, cellauto->file_buf, cellauto->file_bufsize);
  139. cellauto->pattern[cellauto->file_bufsize] = 0;
  140. return init_pattern_from_string(ctx);
  141. }
  142. static int init(AVFilterContext *ctx, const char *args)
  143. {
  144. CellAutoContext *cellauto = ctx->priv;
  145. int ret;
  146. cellauto->class = &cellauto_class;
  147. av_opt_set_defaults(cellauto);
  148. if ((ret = av_set_options_string(cellauto, args, "=", ":")) < 0)
  149. return ret;
  150. if (!cellauto->w && !cellauto->filename && !cellauto->pattern)
  151. av_opt_set(cellauto, "size", "320x518", 0);
  152. if (cellauto->filename && cellauto->pattern) {
  153. av_log(ctx, AV_LOG_ERROR, "Only one of the filename or pattern options can be used\n");
  154. return AVERROR(EINVAL);
  155. }
  156. if (cellauto->filename) {
  157. if ((ret = init_pattern_from_file(ctx)) < 0)
  158. return ret;
  159. } else if (cellauto->pattern) {
  160. if ((ret = init_pattern_from_string(ctx)) < 0)
  161. return ret;
  162. } else {
  163. /* fill the first row randomly */
  164. int i;
  165. cellauto->buf = av_mallocz(sizeof(uint8_t) * cellauto->w * cellauto->h);
  166. if (!cellauto->buf)
  167. return AVERROR(ENOMEM);
  168. if (cellauto->random_seed == -1)
  169. cellauto->random_seed = av_get_random_seed();
  170. av_lfg_init(&cellauto->lfg, cellauto->random_seed);
  171. for (i = 0; i < cellauto->w; i++) {
  172. double r = (double)av_lfg_get(&cellauto->lfg) / UINT32_MAX;
  173. if (r <= cellauto->random_fill_ratio)
  174. cellauto->buf[i] = 1;
  175. }
  176. }
  177. av_log(ctx, AV_LOG_VERBOSE,
  178. "s:%dx%d r:%d/%d rule:%d stitch:%d scroll:%d full:%d seed:%u\n",
  179. cellauto->w, cellauto->h, cellauto->frame_rate.num, cellauto->frame_rate.den,
  180. cellauto->rule, cellauto->stitch, cellauto->scroll, cellauto->start_full,
  181. cellauto->random_seed);
  182. return 0;
  183. }
  184. static av_cold void uninit(AVFilterContext *ctx)
  185. {
  186. CellAutoContext *cellauto = ctx->priv;
  187. av_file_unmap(cellauto->file_buf, cellauto->file_bufsize);
  188. av_freep(&cellauto->buf);
  189. av_freep(&cellauto->pattern);
  190. }
  191. static int config_props(AVFilterLink *outlink)
  192. {
  193. CellAutoContext *cellauto = outlink->src->priv;
  194. outlink->w = cellauto->w;
  195. outlink->h = cellauto->h;
  196. outlink->time_base = av_inv_q(cellauto->frame_rate);
  197. return 0;
  198. }
  199. static void evolve(AVFilterContext *ctx)
  200. {
  201. CellAutoContext *cellauto = ctx->priv;
  202. int i, v, pos[3];
  203. uint8_t *row, *prev_row = cellauto->buf + cellauto->buf_row_idx * cellauto->w;
  204. enum { NW, N, NE };
  205. cellauto->buf_prev_row_idx = cellauto->buf_row_idx;
  206. cellauto->buf_row_idx = cellauto->buf_row_idx == cellauto->h-1 ? 0 : cellauto->buf_row_idx+1;
  207. row = cellauto->buf + cellauto->w * cellauto->buf_row_idx;
  208. for (i = 0; i < cellauto->w; i++) {
  209. if (cellauto->stitch) {
  210. pos[NW] = i-1 < 0 ? cellauto->w-1 : i-1;
  211. pos[N] = i;
  212. pos[NE] = i+1 == cellauto->w ? 0 : i+1;
  213. v = prev_row[pos[NW]]<<2 | prev_row[pos[N]]<<1 | prev_row[pos[NE]];
  214. } else {
  215. v = 0;
  216. v|= i-1 >= 0 ? prev_row[i-1]<<2 : 0;
  217. v|= prev_row[i ]<<1 ;
  218. v|= i+1 < cellauto->w ? prev_row[i+1] : 0;
  219. }
  220. row[i] = !!(cellauto->rule & (1<<v));
  221. av_dlog(ctx, "i:%d context:%c%c%c -> cell:%d\n", i,
  222. v&4?'@':' ', v&2?'@':' ', v&1?'@':' ', row[i]);
  223. }
  224. cellauto->generation++;
  225. }
  226. static void fill_picture(AVFilterContext *ctx, AVFrame *picref)
  227. {
  228. CellAutoContext *cellauto = ctx->priv;
  229. int i, j, k, row_idx = 0;
  230. uint8_t *p0 = picref->data[0];
  231. if (cellauto->scroll && cellauto->generation >= cellauto->h)
  232. /* show on top the oldest row */
  233. row_idx = (cellauto->buf_row_idx + 1) % cellauto->h;
  234. /* fill the output picture with the whole buffer */
  235. for (i = 0; i < cellauto->h; i++) {
  236. uint8_t byte = 0;
  237. uint8_t *row = cellauto->buf + row_idx*cellauto->w;
  238. uint8_t *p = p0;
  239. for (k = 0, j = 0; j < cellauto->w; j++) {
  240. byte |= row[j]<<(7-k++);
  241. if (k==8 || j == cellauto->w-1) {
  242. k = 0;
  243. *p++ = byte;
  244. byte = 0;
  245. }
  246. }
  247. row_idx = (row_idx + 1) % cellauto->h;
  248. p0 += picref->linesize[0];
  249. }
  250. }
  251. static int request_frame(AVFilterLink *outlink)
  252. {
  253. CellAutoContext *cellauto = outlink->src->priv;
  254. AVFrame *picref = ff_get_video_buffer(outlink, cellauto->w, cellauto->h);
  255. picref->sample_aspect_ratio = (AVRational) {1, 1};
  256. if (cellauto->generation == 0 && cellauto->start_full) {
  257. int i;
  258. for (i = 0; i < cellauto->h-1; i++)
  259. evolve(outlink->src);
  260. }
  261. fill_picture(outlink->src, picref);
  262. evolve(outlink->src);
  263. picref->pts = cellauto->pts++;
  264. #ifdef DEBUG
  265. show_cellauto_row(outlink->src);
  266. #endif
  267. return ff_filter_frame(outlink, picref);
  268. }
  269. static int query_formats(AVFilterContext *ctx)
  270. {
  271. static const enum AVPixelFormat pix_fmts[] = { AV_PIX_FMT_MONOBLACK, AV_PIX_FMT_NONE };
  272. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  273. return 0;
  274. }
  275. static const AVFilterPad cellauto_outputs[] = {
  276. {
  277. .name = "default",
  278. .type = AVMEDIA_TYPE_VIDEO,
  279. .request_frame = request_frame,
  280. .config_props = config_props,
  281. },
  282. { NULL }
  283. };
  284. AVFilter avfilter_vsrc_cellauto = {
  285. .name = "cellauto",
  286. .description = NULL_IF_CONFIG_SMALL("Create pattern generated by an elementary cellular automaton."),
  287. .priv_size = sizeof(CellAutoContext),
  288. .init = init,
  289. .uninit = uninit,
  290. .query_formats = query_formats,
  291. .inputs = NULL,
  292. .outputs = cellauto_outputs,
  293. .priv_class = &cellauto_class,
  294. };