81 #define OFFSET(x) offsetof(TestSourceContext, x)
82 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
84 #define SIZE_OPTIONS \
85 { "size", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "320x240"}, 0, 0, FLAGS },\
86 { "s", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "320x240"}, 0, 0, FLAGS },\
88 #define COMMON_OPTIONS_NOSIZE \
89 { "rate", "set video rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT_MAX, FLAGS },\
90 { "r", "set video rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT_MAX, FLAGS },\
91 { "duration", "set video duration", OFFSET(duration), AV_OPT_TYPE_DURATION, {.i64 = -1}, -1, INT64_MAX, FLAGS },\
92 { "d", "set video duration", OFFSET(duration), AV_OPT_TYPE_DURATION, {.i64 = -1}, -1, INT64_MAX, FLAGS },\
93 { "sar", "set video sample aspect ratio", OFFSET(sar), AV_OPT_TYPE_RATIONAL, {.dbl= 1}, 0, INT_MAX, FLAGS },
95 #define COMMON_OPTIONS SIZE_OPTIONS COMMON_OPTIONS_NOSIZE
128 outlink->
w = test->
w;
129 outlink->
h = test->
h;
178 #if CONFIG_COLOR_FILTER
180 static const AVOption color_options[] = {
194 0, 0, test->
w, test->
h);
231 char *res,
int res_len,
int flags)
236 if (!strcmp(cmd,
"color") || !strcmp(cmd,
"c")) {
243 memcpy(test->
color_rgba, color_rgba,
sizeof(color_rgba));
257 .config_props = color_config_props,
265 .priv_class = &color_class,
277 #if CONFIG_HALDCLUTSRC_FILTER
279 static const AVOption haldclutsrc_options[] = {
289 int i, j, k, x = 0, y = 0, is16bit = 0, step;
294 const int w = frame->
width;
297 const int linesize = frame->
linesize[0];
322 scale = ((float)(1 << (8*(is16bit+1))) - 1) / (level*level - 1);
324 #define LOAD_CLUT(nbits) do { \
325 uint##nbits##_t *dst = ((uint##nbits##_t *)(data + y*linesize)) + x*step; \
326 dst[rgba_map[0]] = av_clip_uint##nbits(i * scale); \
327 dst[rgba_map[1]] = av_clip_uint##nbits(j * scale); \
328 dst[rgba_map[2]] = av_clip_uint##nbits(k * scale); \
330 dst[rgba_map[3]] = alpha; \
334 for (k = 0; k <
level; k++) {
335 for (j = 0; j <
level; j++) {
336 for (i = 0; i <
level; i++) {
377 static int haldclutsrc_config_props(
AVFilterLink *outlink)
391 .config_props = haldclutsrc_config_props,
397 .
name =
"haldclutsrc",
399 .priv_class = &haldclutsrc_class,
401 .
init = haldclutsrc_init,
405 .
outputs = haldclutsrc_outputs,
409 #if CONFIG_NULLSRC_FILTER
411 #define nullsrc_options options
437 .init = nullsrc_init,
440 .priv_class = &nullsrc_class,
447 #if CONFIG_TESTSRC_FILTER
449 static const AVOption testsrc_options[] = {
471 int x,
int y,
int w,
int h)
476 dst += segment_width * (step * x + y * dst_linesize);
477 w *= segment_width * step;
479 for (i = 0; i <
h; i++) {
485 static void draw_digit(
int digit,
uint8_t *dst,
int dst_linesize,
491 #define LEFT_TOP_VBAR 8
492 #define LEFT_BOT_VBAR 16
493 #define RIGHT_TOP_VBAR 32
494 #define RIGHT_BOT_VBAR 64
506 static const unsigned char masks[10] = {
507 TOP_HBAR |BOT_HBAR|LEFT_TOP_VBAR|LEFT_BOT_VBAR|RIGHT_TOP_VBAR|RIGHT_BOT_VBAR,
508 RIGHT_TOP_VBAR|RIGHT_BOT_VBAR,
509 TOP_HBAR|MID_HBAR|BOT_HBAR|LEFT_BOT_VBAR |RIGHT_TOP_VBAR,
510 TOP_HBAR|MID_HBAR|BOT_HBAR |RIGHT_TOP_VBAR|RIGHT_BOT_VBAR,
511 MID_HBAR |LEFT_TOP_VBAR |RIGHT_TOP_VBAR|RIGHT_BOT_VBAR,
512 TOP_HBAR|BOT_HBAR|MID_HBAR|LEFT_TOP_VBAR |RIGHT_BOT_VBAR,
513 TOP_HBAR|BOT_HBAR|MID_HBAR|LEFT_TOP_VBAR|LEFT_BOT_VBAR |RIGHT_BOT_VBAR,
514 TOP_HBAR |RIGHT_TOP_VBAR|RIGHT_BOT_VBAR,
515 TOP_HBAR|BOT_HBAR|MID_HBAR|LEFT_TOP_VBAR|LEFT_BOT_VBAR|RIGHT_TOP_VBAR|RIGHT_BOT_VBAR,
516 TOP_HBAR|BOT_HBAR|MID_HBAR|LEFT_TOP_VBAR |RIGHT_TOP_VBAR|RIGHT_BOT_VBAR,
518 unsigned mask = masks[digit];
525 segments[i].x, segments[i].y, segments[i].w, segments[i].h);
528 #define GRADIENT_SIZE (6 * 256)
535 int color, color_rest;
539 int dquad_x, dquad_y;
540 int grad, dgrad, rgrad, drgrad;
549 radius = (width +
height) / 4;
550 quad0 = width * width / 4 + height * height / 4 - radius * radius;
553 for (y = 0; y <
height; y++) {
559 for (x = 0; x <
width; x++) {
565 *(p++) = icolor & 1 ? 255 : 0;
566 *(p++) = icolor & 2 ? 255 : 0;
567 *(p++) = icolor & 4 ? 255 : 0;
569 if (color_rest >= width) {
580 p0 = p = data + frame->
linesize[0] * (height * 3/4);
584 dgrad = GRADIENT_SIZE /
width;
585 drgrad = GRADIENT_SIZE %
width;
586 for (x = 0; x <
width; x++) {
588 grad < 256 || grad >= 5 * 256 ? 255 :
589 grad >= 2 * 256 && grad < 4 * 256 ? 0 :
590 grad < 2 * 256 ? 2 * 256 - 1 - grad : grad - 4 * 256;
592 grad >= 4 * 256 ? 0 :
593 grad >= 1 * 256 && grad < 3 * 256 ? 255 :
594 grad < 1 * 256 ? grad : 4 * 256 - 1 - grad;
597 grad >= 3 * 256 && grad < 5 * 256 ? 255 :
598 grad < 3 * 256 ? grad - 2 * 256 : 6 * 256 - 1 - grad;
601 if (rgrad >= GRADIENT_SIZE) {
603 rgrad -= GRADIENT_SIZE;
605 if (grad >= GRADIENT_SIZE)
606 grad -= GRADIENT_SIZE;
609 for (y = height / 8; y > 0; y--) {
610 memcpy(p+frame->
linesize[0], p, 3 * width);
615 seg_size = width / 80;
616 if (seg_size >= 1 && height >= 13 * seg_size) {
617 int64_t p10decimals = 1;
627 x = width - (width - seg_size * 64) / 2;
628 y = (height - seg_size * 13) / 2;
629 p = data + (x*3 + y * frame->
linesize[0]);
630 for (i = 0; i < 8; i++) {
631 p -= 3 * 8 * seg_size;
632 draw_digit(second % 10, p, frame->
linesize[0], seg_size);
660 static const AVFilterPad avfilter_vsrc_testsrc_outputs[] = {
674 .priv_class = &testsrc_class,
679 .
outputs = avfilter_vsrc_testsrc_outputs,
684 #if CONFIG_TESTSRC2_FILTER
686 static const AVOption testsrc2_options[] = {
695 uint8_t rgba[4] = { (argb >> 16) & 0xFF,
698 (argb >> 24) & 0xFF, };
702 static uint32_t color_gradient(
unsigned index)
704 unsigned si = index & 0xFF, sd = 0xFF - si;
705 switch (index >> 8) {
706 case 0:
return 0xFF0000 + (si << 8);
707 case 1:
return 0x00FF00 + (sd << 16);
708 case 2:
return 0x00FF00 + (si << 0);
709 case 3:
return 0x0000FF + (sd << 8);
710 case 4:
return 0x0000FF + (si << 16);
711 case 5:
return 0xFF0000 + (sd << 0);
717 int x0,
int y0,
const uint8_t *text)
721 for (; *text; text++) {
741 unsigned i, x = 0, x2;
744 for (i = 1; i < 7; i++) {
747 set_color(s, &color, ((i & 1) ? 0xFF0000 : 0) |
748 ((i & 2) ? 0x00FF00 : 0) |
749 ((i & 4) ? 0x0000FF : 0));
751 x, 0, x2 - x, frame->
height);
759 unsigned x, dx, y0, y, g0,
g;
764 for (x = 0; x < s->
w; x += dx) {
765 g = (
av_rescale(x, 6 * 256, s->
w) + g0) % (6 * 256);
766 set_color(s, &color, color_gradient(g));
768 y %= 2 * (s->
h - 16);
770 y = 2 * (s->
h - 16) - y;
778 if (s->
w >= 64 && s->
h >= 64) {
779 int l = (
FFMIN(s->
w, s->
h) - 32) >> 1;
780 int steps =
FFMAX(4, l >> 5);
781 int xc = (s->
w >> 2) + (s->
w >> 1);
782 int yc = (s->
h >> 2);
787 for (c = 0; c < 3; c++) {
788 set_color(s, &color, 0xBBBBBB ^ (0xFF << (c << 3)));
790 xh = pos < 1 * l ? pos :
792 pos < 3 * l ? 3 * l - pos : 0;
793 yh = pos < 1 * l ? 0 :
794 pos < 2 * l ? pos - l :
799 for (i = 1; i <= steps; i++) {
811 if (s->
w >= 64 && s->
h >= 64) {
812 int l = (
FFMIN(s->
w, s->
h) - 16) >> 2;
814 int xc = (s->
w >> 2);
815 int yc = (s->
h >> 2) + (s->
h >> 1);
820 int size, step, x1, x2, y1, y2;
827 step = (step >> 1) & 3;
828 set_color(s, &color, 0xFF808080);
833 if (step == 0 || step == 2)
835 x1, ym1, x2 - x1, ym2 - ym1);
836 if (step == 1 || step == 2)
838 xm1, y1, xm2 - xm1, y2 - y1);
841 x1, y1, x2 - x1, y2 - y1);
854 for (y = ymin; y < ymax - 15; y += 16) {
855 for (x = xmin; x < xmax - 15; x += 16) {
858 for (i = 0; i < 256; i++) {
859 r = r * 1664525 + 1013904223;
862 set_color(s, &color, 0xFF00FF80);
865 alpha, 16, 16, 16, 3, 0, x, y);
871 if (s->
w >= 16 && s->
h >= 16) {
872 unsigned w = s->
w - 8;
873 unsigned h = s->
h - 8;
882 set_color(s, &color, 0xFF8000FF);
893 set_color(s, &color, 0xC0000000);
897 set_color(s, &color, 0xFFFF8000);
898 snprintf(buf,
sizeof(buf),
"%02d:%02d:%02d.%03d\n%12"PRIi64,
899 time / 3600000, (time / 60000) % 60, (time / 1000) % 60,
900 time % 1000, s->
pts);
930 static const AVFilterPad avfilter_vsrc_testsrc2_outputs[] = {
935 .config_props = test2_config_props,
944 .priv_class = &testsrc2_class,
949 .
outputs = avfilter_vsrc_testsrc2_outputs,
954 #if CONFIG_RGBTESTSRC_FILTER
956 #define rgbtestsrc_options options
964 static void rgbtest_put_pixel(
uint8_t *dst,
int dst_linesize,
972 case AV_PIX_FMT_BGR444: ((uint16_t*)(dst + y*dst_linesize))[x] = ((r >> 4) << 8) | ((g >> 4) << 4) | (b >> 4);
break;
973 case AV_PIX_FMT_RGB444: ((uint16_t*)(dst + y*dst_linesize))[x] = ((b >> 4) << 8) | ((g >> 4) << 4) | (r >> 4);
break;
974 case AV_PIX_FMT_BGR555: ((uint16_t*)(dst + y*dst_linesize))[x] = ((r>>3)<<10) | ((g>>3)<<5) | (b>>3);
break;
975 case AV_PIX_FMT_RGB555: ((uint16_t*)(dst + y*dst_linesize))[x] = ((b>>3)<<10) | ((g>>3)<<5) | (r>>3);
break;
976 case AV_PIX_FMT_BGR565: ((uint16_t*)(dst + y*dst_linesize))[x] = ((r>>3)<<11) | ((g>>2)<<5) | (b>>3);
break;
977 case AV_PIX_FMT_RGB565: ((uint16_t*)(dst + y*dst_linesize))[x] = ((b>>3)<<11) | ((g>>2)<<5) | (r>>3);
break;
980 v = (r << (rgba_map[
R]*8)) + (g << (rgba_map[
G]*8)) + (b << (rgba_map[
B]*8));
981 p = dst + 3*x + y*dst_linesize;
988 v = (r << (rgba_map[
R]*8)) + (g << (rgba_map[
G]*8)) + (b << (rgba_map[
B]*8)) + (255 << (rgba_map[
A]*8));
989 p = dst + 4*x + y*dst_linesize;
1000 for (y = 0; y <
h; y++) {
1001 for (x = 0; x < w; x++) {
1003 int r = 0, g = 0, b = 0;
1005 if (3*y < h ) r =
c;
1006 else if (3*y < 2*h) g =
c;
1009 rgbtest_put_pixel(frame->
data[0], frame->
linesize[0], x, y, r, g, b,
1049 static const AVFilterPad avfilter_vsrc_rgbtestsrc_outputs[] = {
1054 .config_props = rgbtest_config_props,
1060 .
name =
"rgbtestsrc",
1063 .priv_class = &rgbtestsrc_class,
1064 .
init = rgbtest_init,
1068 .
outputs = avfilter_vsrc_rgbtestsrc_outputs,
1073 #if CONFIG_SMPTEBARS_FILTER || CONFIG_SMPTEHDBARS_FILTER
1075 static const uint8_t rainbow[7][4] = {
1076 { 180, 128, 128, 255 },
1077 { 162, 44, 142, 255 },
1078 { 131, 156, 44, 255 },
1079 { 112, 72, 58, 255 },
1080 { 84, 184, 198, 255 },
1081 { 65, 100, 212, 255 },
1082 { 35, 212, 114, 255 },
1085 static const uint8_t rainbowhd[7][4] = {
1086 { 180, 128, 128, 255 },
1087 { 168, 44, 136, 255 },
1088 { 145, 147, 44, 255 },
1089 { 133, 63, 52, 255 },
1090 { 63, 193, 204, 255 },
1091 { 51, 109, 212, 255 },
1092 { 28, 212, 120, 255 },
1095 static const uint8_t wobnair[7][4] = {
1096 { 35, 212, 114, 255 },
1097 { 19, 128, 128, 255 },
1098 { 84, 184, 198, 255 },
1099 { 19, 128, 128, 255 },
1100 { 131, 156, 44, 255 },
1101 { 19, 128, 128, 255 },
1102 { 180, 128, 128, 255 },
1105 static const uint8_t white[4] = { 235, 128, 128, 255 };
1108 static const uint8_t neg4ire[4] = { 7, 128, 128, 255 };
1109 static const uint8_t pos4ire[4] = { 24, 128, 128, 255 };
1112 static const uint8_t i_pixel[4] = { 57, 156, 97, 255 };
1113 static const uint8_t q_pixel[4] = { 44, 171, 147, 255 };
1115 static const uint8_t gray40[4] = { 104, 128, 128, 255 };
1116 static const uint8_t gray15[4] = { 49, 128, 128, 255 };
1117 static const uint8_t cyan[4] = { 188, 154, 16, 255 };
1118 static const uint8_t yellow[4] = { 219, 16, 138, 255 };
1119 static const uint8_t blue[4] = { 32, 240, 118, 255 };
1120 static const uint8_t red[4] = { 63, 102, 240, 255 };
1121 static const uint8_t black0[4] = { 16, 128, 128, 255 };
1122 static const uint8_t black2[4] = { 20, 128, 128, 255 };
1123 static const uint8_t black4[4] = { 25, 128, 128, 255 };
1124 static const uint8_t neg2[4] = { 12, 128, 128, 255 };
1127 int x,
int y,
int w,
int h,
1134 x =
FFMIN(x, test->
w - 1);
1135 y =
FFMIN(y, test->
h - 1);
1136 w =
FFMIN(w, test->
w - x);
1137 h =
FFMIN(h, test->
h - y);
1142 for (plane = 0; frame->
data[
plane]; plane++) {
1143 const int c = color[
plane];
1145 int i, px, py, pw, ph;
1147 if (plane == 1 || plane == 2) {
1159 p0 = p = frame->
data[
plane] + py * linesize + px;
1162 for (i = 1; i < ph; i++, p += linesize)
1192 #if CONFIG_SMPTEBARS_FILTER
1194 #define smptebars_options options
1200 int r_w, r_h, w_h, p_w, p_h, i,
tmp, x = 0;
1209 p_h = test->
h - w_h - r_h;
1211 for (i = 0; i < 7; i++) {
1212 draw_bar(test, rainbow[i], x, 0, r_w, r_h, picref);
1213 draw_bar(test, wobnair[i], x, r_h, r_w, w_h, picref);
1217 draw_bar(test, i_pixel, x, r_h + w_h, p_w, p_h, picref);
1219 draw_bar(test, white, x, r_h + w_h, p_w, p_h, picref);
1221 draw_bar(test, q_pixel, x, r_h + w_h, p_w, p_h, picref);
1224 draw_bar(test, black0, x, r_h + w_h, tmp, p_h, picref);
1227 draw_bar(test, neg4ire, x, r_h + w_h, tmp, p_h, picref);
1229 draw_bar(test, black0, x, r_h + w_h, tmp, p_h, picref);
1231 draw_bar(test, pos4ire, x, r_h + w_h, tmp, p_h, picref);
1233 draw_bar(test, black0, x, r_h + w_h, test->
w - x, p_h, picref);
1246 .
name =
"smptebars",
1249 .priv_class = &smptebars_class,
1250 .
init = smptebars_init,
1259 #if CONFIG_SMPTEHDBARS_FILTER
1261 #define smptehdbars_options options
1267 int d_w, r_w, r_h, l_w, i,
tmp, x = 0, y = 0;
1274 draw_bar(test, gray40, x, 0, d_w, r_h, picref);
1278 for (i = 0; i < 7; i++) {
1279 draw_bar(test, rainbowhd[i], x, 0, r_w, r_h, picref);
1282 draw_bar(test, gray40, x, 0, test->
w - x, r_h, picref);
1285 draw_bar(test, cyan, 0, y, d_w, r_h, picref);
1287 draw_bar(test, i_pixel, x, y, r_w, r_h, picref);
1290 draw_bar(test, rainbowhd[0], x, y, tmp, r_h, picref);
1293 draw_bar(test, blue, x, y, test->
w - x, r_h, picref);
1295 draw_bar(test, yellow, 0, y, d_w, r_h, picref);
1297 draw_bar(test, q_pixel, x, y, r_w, r_h, picref);
1303 yramp[0] = i * 255 /
tmp;
1308 draw_bar(test, yramp, x, y, 1 << pixdesc->
log2_chroma_w, r_h, picref);
1311 draw_bar(test, red, x, y, test->
w - x, r_h, picref);
1313 draw_bar(test, gray15, 0, y, d_w, test->
h - y, picref);
1316 draw_bar(test, black0, x, y, tmp, test->
h - y, picref);
1319 draw_bar(test, white, x, y, tmp, test->
h - y, picref);
1322 draw_bar(test, black0, x, y, tmp, test->
h - y, picref);
1325 draw_bar(test, neg2, x, y, tmp, test->
h - y, picref);
1327 draw_bar(test, black0, x, y, tmp, test->
h - y, picref);
1329 draw_bar(test, black2, x, y, tmp, test->
h - y, picref);
1331 draw_bar(test, black0, x, y, tmp, test->
h - y, picref);
1333 draw_bar(test, black4, x, y, tmp, test->
h - y, picref);
1336 draw_bar(test, black0, x, y, r_w, test->
h - y, picref);
1338 draw_bar(test, gray15, x, y, test->
w - x, test->
h - y, picref);
1351 .
name =
"smptehdbars",
1354 .priv_class = &smptehdbars_class,
1355 .
init = smptehdbars_init,
1365 #if CONFIG_ALLYUV_FILTER
1367 static const AVOption allyuv_options[] = {
1381 for (y = 0; y < 4096; y++) {
1382 for (x = 0; x < 2048; x++) {
1383 frame->
data[0][y * ys + x] = ((x / 8) % 256);
1384 frame->
data[0][y * ys + 4095 - x] = ((x / 8) % 256);
1387 for (x = 0; x < 2048; x+=8) {
1388 for (j = 0; j < 8; j++) {
1389 frame->
data[1][vs * y + x + j] = (y%16 + (j % 8) * 16);
1390 frame->
data[1][vs * y + 4095 - x - j] = (128 + y%16 + (j % 8) * 16);
1394 for (x = 0; x < 4096; x++)
1395 frame->
data[2][y * us + x] = 256 * y / 4096;
1403 test->
w = test->
h = 4096;
1422 static const AVFilterPad avfilter_vsrc_allyuv_outputs[] = {
1436 .priv_class = &allyuv_class,
1437 .
init = allyuv_init,
1441 .
outputs = avfilter_vsrc_allyuv_outputs,
1446 #if CONFIG_ALLRGB_FILTER
1448 static const AVOption allrgb_options[] = {
1458 const int linesize = frame->
linesize[0];
1461 for (y = 0; y < 4096; y++) {
1464 for (x = 0; x < 4096; x++) {
1467 *dst++ = (x >> 8) | ((y >> 8) << 4);
1477 test->
w = test->
h = 4096;
1503 static const AVFilterPad avfilter_vsrc_allrgb_outputs[] = {
1508 .config_props = allrgb_config_props,
1517 .priv_class = &allrgb_class,
1518 .
init = allrgb_init,
1522 .
outputs = avfilter_vsrc_allrgb_outputs,
also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / SMPTE RP177 Annex B
AVFilterFormats * ff_draw_supported_pixel_formats(unsigned flags)
Return the list of pixel formats supported by the draw functions.
const char const char void * val
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd)
Rescale a 64-bit integer with specified rounding.
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Main libavfilter public API header.
packed RGB 8:8:8, 24bpp, RGBRGB...
#define AV_PIX_FMT_RGBA64
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM / IEC 61966-2-4 xvYCC601 ...
int h
agreed upon image height
static void draw_rectangle(AVFormatContext *s)
static av_cold void uninit(AVFilterContext *ctx)
#define AV_PIX_FMT_BGRA64
#define COMMON_OPTIONS_NOSIZE
const uint8_t avpriv_vga16_font[4096]
packed BGR 8:8:8, 32bpp, XBGRXBGR... X=unused/undefined
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
int draw_once
draw only the first frame, always put out the same picture
#define AV_PIX_FMT_RGB444
static AVRational av_make_q(int num, int den)
Create a rational.
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
static av_cold int init(AVFilterContext *ctx)
int ff_draw_round_to_sub(FFDrawContext *draw, int sub_dir, int round_dir, int value)
Round a dimension according to subsampling.
const char * name
Pad name.
#define av_assert0(cond)
assert() equivalent, that is always enabled.
int draw_once_reset
draw only the first frame or in case of reset
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
packed RGB 8:8:8, 32bpp, RGBXRGBX... X=unused/undefined
static const uint32_t color[16+AV_CLASS_CATEGORY_NB]
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
static double av_q2d(AVRational a)
Convert rational to double.
static int request_frame(AVFilterLink *outlink)
#define AVERROR_EOF
End of file.
#define AV_LOG_VERBOSE
Detailed information.
int interlaced_frame
The content of the picture is interlaced.
int av_parse_color(uint8_t *rgba_color, const char *color_string, int slen, void *log_ctx)
Put the RGBA values that correspond to color_string in rgba_color.
A filter pad used for either input or output.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
A link between two filters.
static double alpha(void *priv, double x, double y)
static av_always_inline double ff_exp10(double x)
Compute 10^x for floating point values.
int width
width and height of the video frame
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
AVRational frame_rate
Frame rate of the stream on the link, or 1/0 if unknown or variable; if left to 0/0, will be automatically copied from the first input of the source filter if it exists.
static const uint16_t mask[17]
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
void av_frame_set_colorspace(AVFrame *frame, enum AVColorSpace val)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
void * priv
private data for use by the filter
int av_get_padded_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel for the pixel format described by pixdesc, including any padding ...
void ff_draw_color(FFDrawContext *draw, FFDrawColor *color, const uint8_t rgba[4])
Prepare a color.
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link...
simple assert() macros that are a bit more flexible than ISO C assert().
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
int w
agreed upon image width
AVRational sar
sample aspect ratio
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
enum AVPictureType pict_type
Picture type of the frame.
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
int64_t duration
duration expressed in microseconds
static void draw_text(DatascopeContext *s, AVFrame *frame, FFDrawColor *color, int x0, int y0, const uint8_t *text, int vertical)
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
static int config_props(AVFilterLink *outlink)
packed RGB 8:8:8, 24bpp, BGRBGR...
AVFilterContext * src
source filter
static const AVFilterPad outputs[]
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
int format
agreed upon media format
#define FF_ARRAY_ELEMS(a)
int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt)
void ff_blend_mask(FFDrawContext *draw, FFDrawColor *color, uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h, const uint8_t *mask, int mask_linesize, int mask_w, int mask_h, int l2depth, unsigned endianness, int x0, int y0)
Blend an alpha mask with an uniform color.
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
#define AV_PIX_FMT_BGR555
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
static const AVFilterPad inputs[]
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
static void test(const char *pattern, const char *host)
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Describe the class of an AVClass context structure.
rational number numerator/denominator
void ff_blend_rectangle(FFDrawContext *draw, FFDrawColor *color, uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h, int x0, int y0, int w, int h)
Blend a rectangle with an uniform color.
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
const char * name
Filter name.
int ff_draw_init(FFDrawContext *draw, enum AVPixelFormat format, unsigned flags)
Init a draw context.
AVRational sample_aspect_ratio
agreed upon sample aspect ratio
AVFilterLink ** outputs
array of pointers to output links
static enum AVPixelFormat pix_fmts[]
#define AV_PIX_FMT_BGR565
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
internal math functions header
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
static int query_formats(AVFilterContext *ctx)
common internal and external API header
#define AV_PIX_FMT_BGR444
static const AVOption options[]
#define AV_PIX_FMT_RGB555
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
#define AVFILTER_DEFINE_CLASS(fname)
int key_frame
1 -> keyframe, 0-> not
void(* fill_picture_fn)(AVFilterContext *ctx, AVFrame *frame)
#define AV_PIX_FMT_RGB565
void ff_fill_rectangle(FFDrawContext *draw, FFDrawColor *color, uint8_t *dst[], int dst_linesize[], int dst_x, int dst_y, int w, int h)
Fill a rectangle with an uniform color.
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
packed RGB 8:8:8, 32bpp, XRGBXRGB... X=unused/undefined
AVFrame * picref
cached reference containing the painted picture
AVPixelFormat
Pixel format.
CGA/EGA/VGA ROM font data.
#define AV_CEIL_RSHIFT(a, b)