libavfilter/vsrc_mptestsrc.c
1a5e63f9
 /*
  * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 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 General Public License for more details.
  *
  * You should have received a copy of the GNU 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
  * MP test source, ported from MPlayer libmpcodecs/vf_test.c
  */
 
 #include "libavutil/avstring.h"
 #include "libavutil/opt.h"
 #include "libavutil/parseutils.h"
 #include "libavutil/pixdesc.h"
 #include "avfilter.h"
c17808ce
 #include "internal.h"
c9e183b4
 #include "formats.h"
 #include "video.h"
1a5e63f9
 
 #define WIDTH 512
 #define HEIGHT 512
 
 enum test_type {
     TEST_DC_LUMA,
     TEST_DC_CHROMA,
     TEST_FREQ_LUMA,
     TEST_FREQ_CHROMA,
     TEST_AMP_LUMA,
     TEST_AMP_CHROMA,
     TEST_CBP,
     TEST_MV,
     TEST_RING1,
     TEST_RING2,
     TEST_ALL,
     TEST_NB
 };
 
 typedef struct MPTestContext {
     const AVClass *class;
62d36abe
     AVRational frame_rate;
db84088e
     int64_t pts, max_pts, duration;
1a5e63f9
     int hsub, vsub;
8a8a1cce
     int test;           ///< test_type
1a5e63f9
 } MPTestContext;
 
 #define OFFSET(x) offsetof(MPTestContext, x)
8a12c96d
 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
1a5e63f9
 static const AVOption mptestsrc_options[]= {
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 },
db84088e
     { "duration", "set video duration", OFFSET(duration), AV_OPT_TYPE_DURATION, {.i64 = -1}, -1, INT64_MAX, FLAGS },
     { "d",        "set video duration", OFFSET(duration), AV_OPT_TYPE_DURATION, {.i64 = -1}, -1, INT64_MAX, FLAGS },
8a12c96d
 
     { "test", "set test to perform", OFFSET(test),  AV_OPT_TYPE_INT,   {.i64=TEST_ALL}, 0, INT_MAX, FLAGS, "test" },
     { "t",    "set test to perform", OFFSET(test),  AV_OPT_TYPE_INT,   {.i64=TEST_ALL}, 0, INT_MAX, FLAGS, "test" },
bbf003e9
         { "dc_luma",     "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_DC_LUMA},     INT_MIN, INT_MAX, FLAGS, "test" },
         { "dc_chroma",   "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_DC_CHROMA},   INT_MIN, INT_MAX, FLAGS, "test" },
         { "freq_luma",   "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_FREQ_LUMA},   INT_MIN, INT_MAX, FLAGS, "test" },
         { "freq_chroma", "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_FREQ_CHROMA}, INT_MIN, INT_MAX, FLAGS, "test" },
         { "amp_luma",    "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_AMP_LUMA},    INT_MIN, INT_MAX, FLAGS, "test" },
         { "amp_chroma",  "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_AMP_CHROMA},  INT_MIN, INT_MAX, FLAGS, "test" },
         { "cbp",         "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_CBP},         INT_MIN, INT_MAX, FLAGS, "test" },
         { "mv",          "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_MV},          INT_MIN, INT_MAX, FLAGS, "test" },
         { "ring1",       "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_RING1},       INT_MIN, INT_MAX, FLAGS, "test" },
         { "ring2",       "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_RING2},       INT_MIN, INT_MAX, FLAGS, "test" },
         { "all",         "", 0, AV_OPT_TYPE_CONST, {.i64=TEST_ALL},         INT_MIN, INT_MAX, FLAGS, "test" },
b211607b
     { NULL }
1a5e63f9
 };
 
c17808ce
 AVFILTER_DEFINE_CLASS(mptestsrc);
1a5e63f9
 
 static double c[64];
 
 static void init_idct(void)
 {
     int i, j;
 
     for (i = 0; i < 8; i++) {
         double s = i == 0 ? sqrt(0.125) : 0.5;
 
         for (j = 0; j < 8; j++)
             c[i*8+j] = s*cos((M_PI/8.0)*i*(j+0.5));
     }
 }
 
 static void idct(uint8_t *dst, int dst_linesize, int src[64])
 {
     int i, j, k;
     double tmp[64];
 
     for (i = 0; i < 8; i++) {
         for (j = 0; j < 8; j++) {
             double sum = 0.0;
 
             for (k = 0; k < 8; k++)
                 sum += c[k*8+j] * src[8*i+k];
 
             tmp[8*i+j] = sum;
         }
     }
 
     for (j = 0; j < 8; j++) {
         for (i = 0; i < 8; i++) {
             double sum = 0.0;
 
             for (k = 0; k < 8; k++)
                 sum += c[k*8+i]*tmp[8*k+j];
 
fa5d2994
             dst[dst_linesize*i + j] = av_clip_uint8(lrint(sum));
1a5e63f9
         }
     }
 }
 
 static void draw_dc(uint8_t *dst, int dst_linesize, int color, int w, int h)
 {
     int x, y;
 
     for (y = 0; y < h; y++)
         for (x = 0; x < w; x++)
             dst[x + y*dst_linesize] = color;
 }
 
 static void draw_basis(uint8_t *dst, int dst_linesize, int amp, int freq, int dc)
 {
     int src[64];
 
     memset(src, 0, 64*sizeof(int));
     src[0] = dc;
     if (amp)
         src[freq] = amp;
     idct(dst, dst_linesize, src);
 }
 
 static void draw_cbp(uint8_t *dst[3], int dst_linesize[3], int cbp, int amp, int dc)
 {
     if (cbp&1)  draw_basis(dst[0]                    , dst_linesize[0], amp, 1, dc);
     if (cbp&2)  draw_basis(dst[0]+8                  , dst_linesize[0], amp, 1, dc);
     if (cbp&4)  draw_basis(dst[0]+  8*dst_linesize[0], dst_linesize[0], amp, 1, dc);
     if (cbp&8)  draw_basis(dst[0]+8+8*dst_linesize[0], dst_linesize[0], amp, 1, dc);
     if (cbp&16) draw_basis(dst[1]                    , dst_linesize[1], amp, 1, dc);
     if (cbp&32) draw_basis(dst[2]                    , dst_linesize[2], amp, 1, dc);
 }
 
 static void dc_test(uint8_t *dst, int dst_linesize, int w, int h, int off)
 {
     const int step = FFMAX(256/(w*h/256), 1);
     int x, y, color = off;
 
     for (y = 0; y < h; y += 16) {
         for (x = 0; x < w; x += 16) {
             draw_dc(dst + x + y*dst_linesize, dst_linesize, color, 8, 8);
             color += step;
         }
     }
 }
 
 static void freq_test(uint8_t *dst, int dst_linesize, int off)
 {
     int x, y, freq = 0;
 
     for (y = 0; y < 8*16; y += 16) {
         for (x = 0; x < 8*16; x += 16) {
             draw_basis(dst + x + y*dst_linesize, dst_linesize, 4*(96+off), freq, 128*8);
             freq++;
         }
     }
 }
 
 static void amp_test(uint8_t *dst, int dst_linesize, int off)
 {
     int x, y, amp = off;
 
     for (y = 0; y < 16*16; y += 16) {
         for (x = 0; x < 16*16; x += 16) {
             draw_basis(dst + x + y*dst_linesize, dst_linesize, 4*amp, 1, 128*8);
             amp++;
         }
     }
 }
 
 static void cbp_test(uint8_t *dst[3], int dst_linesize[3], int off)
 {
     int x, y, cbp = 0;
 
     for (y = 0; y < 16*8; y += 16) {
         for (x = 0; x < 16*8; x += 16) {
             uint8_t *dst1[3];
             dst1[0] = dst[0] + x*2 + y*2*dst_linesize[0];
             dst1[1] = dst[1] + x   + y*  dst_linesize[1];
             dst1[2] = dst[2] + x   + y*  dst_linesize[2];
 
             draw_cbp(dst1, dst_linesize, cbp, (64+off)*4, 128*8);
             cbp++;
         }
     }
 }
 
 static void mv_test(uint8_t *dst, int dst_linesize, int off)
 {
     int x, y;
 
     for (y = 0; y < 16*16; y++) {
         if (y&16)
             continue;
         for (x = 0; x < 16*16; x++)
             dst[x + y*dst_linesize] = x + off*8/(y/32+1);
     }
 }
 
 static void ring1_test(uint8_t *dst, int dst_linesize, int off)
 {
     int x, y, color = 0;
 
     for (y = off; y < 16*16; y += 16) {
         for (x = off; x < 16*16; x += 16) {
             draw_dc(dst + x + y*dst_linesize, dst_linesize, ((x+y)&16) ? color : -color, 16, 16);
             color++;
         }
     }
 }
 
 static void ring2_test(uint8_t *dst, int dst_linesize, int off)
 {
     int x, y;
 
     for (y = 0; y < 16*16; y++) {
         for (x = 0; x < 16*16; x++) {
74b79dcf
             double d = hypot(x-8*16, y-8*16);
1a5e63f9
             double r = d/20 - (int)(d/20);
             if (r < off/30.0) {
                 dst[x + y*dst_linesize]     = 255;
                 dst[x + y*dst_linesize+256] = 0;
             } else {
                 dst[x + y*dst_linesize]     = x;
                 dst[x + y*dst_linesize+256] = x;
             }
         }
     }
 }
 
fd6228e6
 static av_cold int init(AVFilterContext *ctx)
1a5e63f9
 {
     MPTestContext *test = ctx->priv;
 
db84088e
     test->max_pts = test->duration >= 0 ?
         av_rescale_q(test->duration, AV_TIME_BASE_Q, av_inv_q(test->frame_rate)) : -1;
1a5e63f9
     test->pts = 0;
 
fda968aa
     av_log(ctx, AV_LOG_VERBOSE, "rate:%d/%d duration:%f\n",
62d36abe
            test->frame_rate.num, test->frame_rate.den,
db84088e
            test->duration < 0 ? -1 : test->max_pts * av_q2d(av_inv_q(test->frame_rate)));
1a5e63f9
     init_idct();
 
     return 0;
 }
 
 static int config_props(AVFilterLink *outlink)
 {
     AVFilterContext *ctx = outlink->src;
     MPTestContext *test = ctx->priv;
79393a83
     const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(outlink->format);
1a5e63f9
 
     test->hsub = pix_desc->log2_chroma_w;
     test->vsub = pix_desc->log2_chroma_h;
 
     outlink->w = WIDTH;
     outlink->h = HEIGHT;
62d36abe
     outlink->time_base = av_inv_q(test->frame_rate);
1a5e63f9
 
     return 0;
 }
 
 static int query_formats(AVFilterContext *ctx)
 {
ac627b3d
     static const enum AVPixelFormat pix_fmts[] = {
         AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE
1a5e63f9
     };
 
a0854c08
     AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
     if (!fmts_list)
         return AVERROR(ENOMEM);
     return ff_set_common_formats(ctx, fmts_list);
1a5e63f9
 }
 
 static int request_frame(AVFilterLink *outlink)
 {
     MPTestContext *test = outlink->src->priv;
a05a44e2
     AVFrame *picref;
1fb52bf9
     int w = WIDTH, h = HEIGHT,
21f94684
         cw = AV_CEIL_RSHIFT(w, test->hsub), ch = AV_CEIL_RSHIFT(h, test->vsub);
183ce55b
     unsigned int frame = outlink->frame_count_in;
1a5e63f9
     enum test_type tt = test->test;
c6a43a72
     int i;
1a5e63f9
 
     if (test->max_pts >= 0 && test->pts > test->max_pts)
         return AVERROR_EOF;
a05a44e2
     picref = ff_get_video_buffer(outlink, w, h);
ed8373e7
     if (!picref)
         return AVERROR(ENOMEM);
1a5e63f9
     picref->pts = test->pts++;
 
     // clean image
c6a43a72
     for (i = 0; i < h; i++)
         memset(picref->data[0] + i*picref->linesize[0], 0, w);
     for (i = 0; i < ch; i++) {
         memset(picref->data[1] + i*picref->linesize[1], 128, cw);
         memset(picref->data[2] + i*picref->linesize[2], 128, cw);
     }
1a5e63f9
 
     if (tt == TEST_ALL && frame%30) /* draw a black frame at the beginning of each test */
         tt = (frame/30)%(TEST_NB-1);
 
     switch (tt) {
     case TEST_DC_LUMA:       dc_test(picref->data[0], picref->linesize[0], 256, 256, frame%30); break;
     case TEST_DC_CHROMA:     dc_test(picref->data[1], picref->linesize[1], 256, 256, frame%30); break;
     case TEST_FREQ_LUMA:   freq_test(picref->data[0], picref->linesize[0], frame%30); break;
     case TEST_FREQ_CHROMA: freq_test(picref->data[1], picref->linesize[1], frame%30); break;
     case TEST_AMP_LUMA:     amp_test(picref->data[0], picref->linesize[0], frame%30); break;
     case TEST_AMP_CHROMA:   amp_test(picref->data[1], picref->linesize[1], frame%30); break;
     case TEST_CBP:          cbp_test(picref->data   , picref->linesize   , frame%30); break;
     case TEST_MV:            mv_test(picref->data[0], picref->linesize[0], frame%30); break;
     case TEST_RING1:      ring1_test(picref->data[0], picref->linesize[0], frame%30); break;
     case TEST_RING2:      ring2_test(picref->data[0], picref->linesize[0], frame%30); break;
     }
 
bce2e97a
     return ff_filter_frame(outlink, picref);
1a5e63f9
 }
 
2d9d4440
 static const AVFilterPad mptestsrc_outputs[] = {
     {
         .name          = "default",
         .type          = AVMEDIA_TYPE_VIDEO,
         .request_frame = request_frame,
         .config_props  = config_props,
     },
     { NULL }
 };
 
325f6e0a
 AVFilter ff_vsrc_mptestsrc = {
b211607b
     .name          = "mptestsrc",
     .description   = NULL_IF_CONFIG_SMALL("Generate various test pattern."),
     .priv_size     = sizeof(MPTestContext),
     .priv_class    = &mptestsrc_class,
     .init          = init,
     .query_formats = query_formats,
     .inputs        = NULL,
     .outputs       = mptestsrc_outputs,
1a5e63f9
 };