libavfilter/vsrc_cellauto.c
6c44ff38
 /*
  * Copyright (c) Stefano Sabatini 2011
  *
  * 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
  */
 
 /**
  * @file
  * cellular automaton video source, based on Stephen Wolfram "experimentus crucis"
  */
 
 /* #define DEBUG */
 
 #include "libavutil/file.h"
229843aa
 #include "libavutil/internal.h"
6c44ff38
 #include "libavutil/lfg.h"
 #include "libavutil/opt.h"
 #include "libavutil/parseutils.h"
 #include "libavutil/random_seed.h"
88d55b82
 #include "libavutil/avstring.h"
6c44ff38
 #include "avfilter.h"
c17808ce
 #include "internal.h"
c9e183b4
 #include "formats.h"
 #include "video.h"
6c44ff38
 
ed93ed5e
 typedef struct CellAutoContext {
6c44ff38
     const AVClass *class;
     int w, h;
     char *filename;
     char *rule_str;
     uint8_t *file_buf;
     size_t file_bufsize;
     uint8_t *buf;
     int buf_prev_row_idx, buf_row_idx;
     uint8_t rule;
     uint64_t pts;
401f9c95
     AVRational frame_rate;
6c44ff38
     double   random_fill_ratio;
     uint32_t random_seed;
     int stitch, scroll, start_full;
     int64_t generation;         ///< the generation number, starting from 0
     AVLFG lfg;
     char *pattern;
 } CellAutoContext;
 
 #define OFFSET(x) offsetof(CellAutoContext, x)
42d621d1
 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
6c44ff38
 
 static const AVOption cellauto_options[] = {
42d621d1
     { "filename", "read initial pattern from file", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
     { "f",        "read initial pattern from file", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
     { "pattern",  "set initial pattern", OFFSET(pattern), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
     { "p",        "set initial pattern", OFFSET(pattern), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS },
f2c8b666
     { "rate",     "set video rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT_MAX, FLAGS },
     { "r",        "set video rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT_MAX, FLAGS },
42d621d1
     { "size",     "set video size", OFFSET(w),    AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, FLAGS },
     { "s",        "set video size", OFFSET(w),    AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, FLAGS },
d46c1c72
     { "rule",     "set rule",       OFFSET(rule), AV_OPT_TYPE_INT,    {.i64 = 110},  0, 255, FLAGS },
42d621d1
     { "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 },
     { "ratio",             "set fill ratio for filling initial grid randomly", OFFSET(random_fill_ratio), AV_OPT_TYPE_DOUBLE, {.dbl = 1/M_PHI}, 0, 1, FLAGS },
d46c1c72
     { "random_seed", "set the seed for filling the initial grid randomly", OFFSET(random_seed), AV_OPT_TYPE_INT, {.i64 = -1}, -1, UINT32_MAX, FLAGS },
     { "seed",        "set the seed for filling the initial grid randomly", OFFSET(random_seed), AV_OPT_TYPE_INT, {.i64 = -1}, -1, UINT32_MAX, FLAGS },
7b600720
     { "scroll",      "scroll pattern downward", OFFSET(scroll), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, FLAGS },
     { "start_full",  "start filling the whole video", OFFSET(start_full), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, FLAGS },
     { "full",        "start filling the whole video", OFFSET(start_full), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, FLAGS },
     { "stitch",      "stitch boundaries", OFFSET(stitch), AV_OPT_TYPE_BOOL,    {.i64 = 1},   0, 1, FLAGS },
b211607b
     { NULL }
6c44ff38
 };
 
c17808ce
 AVFILTER_DEFINE_CLASS(cellauto);
6c44ff38
 
 #ifdef DEBUG
 static void show_cellauto_row(AVFilterContext *ctx)
 {
0f711126
     CellAutoContext *s = ctx->priv;
6c44ff38
     int i;
0f711126
     uint8_t *row = s->buf + s->w * s->buf_row_idx;
     char *line = av_malloc(s->w + 1);
6c44ff38
     if (!line)
         return;
 
0f711126
     for (i = 0; i < s->w; i++)
6c44ff38
         line[i] = row[i] ? '@' : ' ';
     line[i] = 0;
0f711126
     av_log(ctx, AV_LOG_DEBUG, "generation:%"PRId64" row:%s|\n", s->generation, line);
6c44ff38
     av_free(line);
 }
 #endif
 
 static int init_pattern_from_string(AVFilterContext *ctx)
 {
0f711126
     CellAutoContext *s = ctx->priv;
6c44ff38
     char *p;
     int i, w = 0;
 
0f711126
     w = strlen(s->pattern);
6c44ff38
     av_log(ctx, AV_LOG_DEBUG, "w:%d\n", w);
 
0f711126
     if (s->w) {
         if (w > s->w) {
6c44ff38
             av_log(ctx, AV_LOG_ERROR,
                    "The specified width is %d which cannot contain the provided string width of %d\n",
0f711126
                    s->w, w);
6c44ff38
             return AVERROR(EINVAL);
         }
     } else {
         /* width was not specified, set it to width of the provided row */
0f711126
         s->w = w;
         s->h = (double)s->w * M_PHI;
6c44ff38
     }
 
0f711126
     s->buf = av_mallocz_array(sizeof(uint8_t) * s->w, s->h);
     if (!s->buf)
6c44ff38
         return AVERROR(ENOMEM);
 
     /* fill buf */
0f711126
     p = s->pattern;
     for (i = (s->w - w)/2;; i++) {
6c44ff38
         av_log(ctx, AV_LOG_DEBUG, "%d %c\n", i, *p == '\n' ? 'N' : *p);
         if (*p == '\n' || !*p)
             break;
         else
0f711126
             s->buf[i] = !!av_isgraph(*(p++));
6c44ff38
     }
 
     return 0;
 }
 
 static int init_pattern_from_file(AVFilterContext *ctx)
 {
0f711126
     CellAutoContext *s = ctx->priv;
6c44ff38
     int ret;
 
0f711126
     ret = av_file_map(s->filename,
                       &s->file_buf, &s->file_bufsize, 0, ctx);
6c44ff38
     if (ret < 0)
         return ret;
 
     /* create a string based on the read file */
0f711126
     s->pattern = av_malloc(s->file_bufsize + 1);
     if (!s->pattern)
6c44ff38
         return AVERROR(ENOMEM);
0f711126
     memcpy(s->pattern, s->file_buf, s->file_bufsize);
     s->pattern[s->file_bufsize] = 0;
6c44ff38
 
     return init_pattern_from_string(ctx);
 }
 
b890198b
 static av_cold int init(AVFilterContext *ctx)
6c44ff38
 {
0f711126
     CellAutoContext *s = ctx->priv;
6c44ff38
     int ret;
 
0f711126
     if (!s->w && !s->filename && !s->pattern)
         av_opt_set(s, "size", "320x518", 0);
6c44ff38
 
0f711126
     if (s->filename && s->pattern) {
6c44ff38
         av_log(ctx, AV_LOG_ERROR, "Only one of the filename or pattern options can be used\n");
         return AVERROR(EINVAL);
     }
 
0f711126
     if (s->filename) {
6c44ff38
         if ((ret = init_pattern_from_file(ctx)) < 0)
             return ret;
0f711126
     } else if (s->pattern) {
6c44ff38
         if ((ret = init_pattern_from_string(ctx)) < 0)
             return ret;
     } else {
         /* fill the first row randomly */
         int i;
 
0f711126
         s->buf = av_mallocz_array(sizeof(uint8_t) * s->w, s->h);
         if (!s->buf)
6c44ff38
             return AVERROR(ENOMEM);
0f711126
         if (s->random_seed == -1)
             s->random_seed = av_get_random_seed();
6c44ff38
 
0f711126
         av_lfg_init(&s->lfg, s->random_seed);
6c44ff38
 
0f711126
         for (i = 0; i < s->w; i++) {
             double r = (double)av_lfg_get(&s->lfg) / UINT32_MAX;
             if (r <= s->random_fill_ratio)
                 s->buf[i] = 1;
6c44ff38
         }
     }
 
fda968aa
     av_log(ctx, AV_LOG_VERBOSE,
54904525
            "s:%dx%d r:%d/%d rule:%d stitch:%d scroll:%d full:%d seed:%"PRIu32"\n",
0f711126
            s->w, s->h, s->frame_rate.num, s->frame_rate.den,
            s->rule, s->stitch, s->scroll, s->start_full,
            s->random_seed);
6c44ff38
     return 0;
 }
 
 static av_cold void uninit(AVFilterContext *ctx)
 {
0f711126
     CellAutoContext *s = ctx->priv;
6c44ff38
 
0f711126
     av_file_unmap(s->file_buf, s->file_bufsize);
     av_freep(&s->buf);
     av_freep(&s->pattern);
6c44ff38
 }
 
 static int config_props(AVFilterLink *outlink)
 {
0f711126
     CellAutoContext *s = outlink->src->priv;
6c44ff38
 
0f711126
     outlink->w = s->w;
     outlink->h = s->h;
     outlink->time_base = av_inv_q(s->frame_rate);
6c44ff38
 
     return 0;
 }
 
 static void evolve(AVFilterContext *ctx)
 {
0f711126
     CellAutoContext *s = ctx->priv;
6c44ff38
     int i, v, pos[3];
0f711126
     uint8_t *row, *prev_row = s->buf + s->buf_row_idx * s->w;
6c44ff38
     enum { NW, N, NE };
 
0f711126
     s->buf_prev_row_idx = s->buf_row_idx;
     s->buf_row_idx      = s->buf_row_idx == s->h-1 ? 0 : s->buf_row_idx+1;
     row = s->buf + s->w * s->buf_row_idx;
6c44ff38
 
0f711126
     for (i = 0; i < s->w; i++) {
         if (s->stitch) {
             pos[NW] = i-1 < 0 ? s->w-1 : i-1;
6c44ff38
             pos[N]  = i;
0f711126
             pos[NE] = i+1 == s->w ? 0  : i+1;
6c44ff38
             v = prev_row[pos[NW]]<<2 | prev_row[pos[N]]<<1 | prev_row[pos[NE]];
         } else {
             v = 0;
             v|= i-1 >= 0          ? prev_row[i-1]<<2 : 0;
             v|=                     prev_row[i  ]<<1    ;
0f711126
             v|= i+1 < s->w ? prev_row[i+1]    : 0;
6c44ff38
         }
0f711126
         row[i] = !!(s->rule & (1<<v));
229843aa
         ff_dlog(ctx, "i:%d context:%c%c%c -> cell:%d\n", i,
6c44ff38
                 v&4?'@':' ', v&2?'@':' ', v&1?'@':' ', row[i]);
     }
 
0f711126
     s->generation++;
6c44ff38
 }
 
a05a44e2
 static void fill_picture(AVFilterContext *ctx, AVFrame *picref)
6c44ff38
 {
0f711126
     CellAutoContext *s = ctx->priv;
6c44ff38
     int i, j, k, row_idx = 0;
     uint8_t *p0 = picref->data[0];
 
0f711126
     if (s->scroll && s->generation >= s->h)
6c44ff38
         /* show on top the oldest row */
0f711126
         row_idx = (s->buf_row_idx + 1) % s->h;
6c44ff38
 
     /* fill the output picture with the whole buffer */
0f711126
     for (i = 0; i < s->h; i++) {
6c44ff38
         uint8_t byte = 0;
0f711126
         uint8_t *row = s->buf + row_idx*s->w;
6c44ff38
         uint8_t *p = p0;
0f711126
         for (k = 0, j = 0; j < s->w; j++) {
6c44ff38
             byte |= row[j]<<(7-k++);
0f711126
             if (k==8 || j == s->w-1) {
6c44ff38
                 k = 0;
                 *p++ = byte;
                 byte = 0;
             }
         }
0f711126
         row_idx = (row_idx + 1) % s->h;
6c44ff38
         p0 += picref->linesize[0];
     }
 }
 
 static int request_frame(AVFilterLink *outlink)
 {
0f711126
     CellAutoContext *s = outlink->src->priv;
     AVFrame *picref = ff_get_video_buffer(outlink, s->w, s->h);
ed8373e7
     if (!picref)
         return AVERROR(ENOMEM);
a05a44e2
     picref->sample_aspect_ratio = (AVRational) {1, 1};
0f711126
     if (s->generation == 0 && s->start_full) {
6c44ff38
         int i;
0f711126
         for (i = 0; i < s->h-1; i++)
6c44ff38
             evolve(outlink->src);
     }
     fill_picture(outlink->src, picref);
     evolve(outlink->src);
 
0f711126
     picref->pts = s->pts++;
6c44ff38
 
 #ifdef DEBUG
     show_cellauto_row(outlink->src);
 #endif
fe6077d9
     return ff_filter_frame(outlink, picref);
6c44ff38
 }
 
 static int query_formats(AVFilterContext *ctx)
 {
ac627b3d
     static const enum AVPixelFormat pix_fmts[] = { AV_PIX_FMT_MONOBLACK, AV_PIX_FMT_NONE };
a0854c08
     AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
     if (!fmts_list)
         return AVERROR(ENOMEM);
     return ff_set_common_formats(ctx, fmts_list);
6c44ff38
 }
 
2d9d4440
 static const AVFilterPad cellauto_outputs[] = {
     {
b211607b
         .name          = "default",
         .type          = AVMEDIA_TYPE_VIDEO,
         .request_frame = request_frame,
         .config_props  = config_props,
2d9d4440
     },
     { NULL }
 };
 
325f6e0a
 AVFilter ff_vsrc_cellauto = {
b211607b
     .name          = "cellauto",
     .description   = NULL_IF_CONFIG_SMALL("Create pattern generated by an elementary cellular automaton."),
     .priv_size     = sizeof(CellAutoContext),
     .priv_class    = &cellauto_class,
     .init          = init,
     .uninit        = uninit,
6c44ff38
     .query_formats = query_formats,
2d9d4440
     .inputs        = NULL,
     .outputs       = cellauto_outputs,
6c44ff38
 };