73 int X,
int Y,
int D,
int P);
76 #define OFFSET(x) offsetof(VectorscopeContext, x)
77 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
202 if (!
ctx->inputs[0]->in_formats ||
203 !
ctx->inputs[0]->in_formats->nb_formats) {
207 if (!
ctx->inputs[0]->out_formats) {
210 if ((
s->x == 1 &&
s->y == 2) || (
s->x == 2 &&
s->y == 1))
218 avff =
ctx->inputs[0]->in_formats;
229 if (rgb &&
depth == 8)
231 else if (rgb &&
depth == 9)
233 else if (rgb &&
depth == 10)
235 else if (rgb &&
depth == 12)
241 else if (
depth == 10)
243 else if (
depth == 12)
258 s->intensity =
s->fintensity * (
s->size - 1);
259 outlink->
h = outlink->
w =
s->size;
270 for (
i = 0;
i <
s->size;
i++)
271 s->peak[
i] =
s->peak_memory +
s->size *
i;
278 const int dlinesize =
out->linesize[0] / 2;
279 uint16_t *dpd =
s->mode ==
COLOR || !
s->is_yuv ? (uint16_t *)
out->data[
s->pd] : (uint16_t *)
out->data[0];
280 const int max =
s->size - 1;
283 for (
i = 0;
i <
out->height;
i++) {
284 for (j = 0; j <
out->width; j++) {
285 const int pos =
i * dlinesize + j;
286 const int poa = (
i - 1) * dlinesize + j;
287 const int pob = (
i + 1) * dlinesize + j;
289 if (dpd[pos] && (((!j || !dpd[pos - 1]) || ((j == (
out->width - 1)) || !dpd[pos + 1]))
290 || ((!
i || !dpd[poa]) || ((
i == (
out->height - 1)) || !dpd[pob])))) {
299 const int dlinesize =
out->linesize[0] / 2;
300 uint16_t *dpd =
s->mode ==
COLOR || !
s->is_yuv ? (uint16_t *)
out->data[
s->pd] : (uint16_t *)
out->data[0];
301 const int max =
s->size - 1;
304 for (
i = 0;
i <
out->height;
i++) {
305 for (j = 0; j <
out->width; j++) {
306 const int pos =
i * dlinesize + j;
313 if (
s->envelope == 3)
316 for (
i = 0;
i <
out->height;
i++) {
317 for (j = 0; j <
out->width; j++) {
318 const int pos =
i * dlinesize + j;
320 if (
s->peak[
i][j] && (((!j || !
s->peak[
i][j-1]) || ((j == (
out->width - 1)) || !
s->peak[
i][j + 1]))
321 || ((!
i || !
s->peak[
i-1][j]) || ((
i == (
out->height - 1)) || !
s->peak[
i + 1][j])))) {
330 const int dlinesize =
out->linesize[0];
334 for (
i = 0;
i <
out->height;
i++) {
335 for (j = 0; j <
out->width; j++) {
336 const int pos =
i * dlinesize + j;
337 const int poa = (
i - 1) * dlinesize + j;
338 const int pob = (
i + 1) * dlinesize + j;
340 if (dpd[pos] && (((!j || !dpd[pos - 1]) || ((j == (
out->width - 1)) || !dpd[pos + 1]))
341 || ((!
i || !dpd[poa]) || ((
i == (
out->height - 1)) || !dpd[pob])))) {
350 const int dlinesize =
out->linesize[0];
354 for (
i = 0;
i <
out->height;
i++) {
355 for (j = 0; j <
out->width; j++) {
356 const int pos =
i * dlinesize + j;
363 if (
s->envelope == 3)
366 for (
i = 0;
i <
out->height;
i++) {
367 for (j = 0; j <
out->width; j++) {
368 const int pos =
i * dlinesize + j;
370 if (
s->peak[
i][j] && (((!j || !
s->peak[
i][j-1]) || ((j == (
out->width - 1)) || !
s->peak[
i][j + 1]))
371 || ((!
i || !
s->peak[
i-1][j]) || ((
i == (
out->height - 1)) || !
s->peak[
i + 1][j])))) {
382 }
else if (
s->envelope == 1) {
393 }
else if (
s->envelope == 1) {
402 const uint16_t *
const *
src = (
const uint16_t *
const *)
in->data;
403 const int slinesizex =
in->linesize[
s->x] / 2;
404 const int slinesizey =
in->linesize[
s->y] / 2;
405 const int slinesized =
in->linesize[
pd] / 2;
406 const int dlinesize =
out->linesize[0] / 2;
408 const int px =
s->x, py =
s->y;
409 const int h =
s->planeheight[py];
410 const int w =
s->planewidth[px];
411 const uint16_t *spx =
src[px];
412 const uint16_t *spy =
src[py];
413 const uint16_t *spd =
src[
pd];
414 const int hsub =
s->hsub;
415 const int vsub =
s->vsub;
416 uint16_t **dst = (uint16_t **)
out->data;
417 uint16_t *dpx = dst[px];
418 uint16_t *dpy = dst[py];
419 uint16_t *dpd = dst[
pd];
420 const int max =
s->size - 1;
421 const int mid =
s->size / 2;
422 const int tmin =
s->tmin;
423 const int tmax =
s->tmax;
426 for (k = 0; k < 4 && dst[k]; k++) {
427 for (
i = 0;
i <
out->height ;
i++)
428 for (j = 0; j <
out->width; j++)
430 (
s->mode ==
COLOR ||
s->mode ==
COLOR5) && k ==
s->pd ? 0 :
s->bg_color[k]);
438 for (
i = 0;
i <
h;
i++) {
439 const int iwx =
i * slinesizex;
440 const int iwy =
i * slinesizey;
441 const int iwd =
i * slinesized;
442 for (j = 0; j <
w; j++) {
445 const int z = spd[iwd + j];
446 const int pos =
y * dlinesize +
x;
448 if (z < tmin || z >
tmax)
455 for (
i = 0;
i <
h;
i++) {
456 const int iwx =
i * slinesizex;
457 const int iwy =
i * slinesizey;
458 const int iwd =
i * slinesized;
459 for (j = 0; j <
w; j++) {
462 const int z = spd[iwd + j];
463 const int pos =
y * dlinesize +
x;
465 if (z < tmin || z >
tmax)
477 for (
i = 0;
i <
h;
i++) {
478 const int iw1 =
i * slinesizex;
479 const int iw2 =
i * slinesizey;
480 const int iwd =
i * slinesized;
481 for (j = 0; j <
w; j++) {
484 const int z = spd[iwd + j];
485 const int pos =
y * dlinesize +
x;
487 if (z < tmin || z >
tmax)
497 for (
i = 0;
i <
h;
i++) {
498 const int iw1 =
i * slinesizex;
499 const int iw2 =
i * slinesizey;
500 const int iwd =
i * slinesized;
501 for (j = 0; j <
w; j++) {
504 const int z = spd[iwd + j];
505 const int pos =
y * dlinesize +
x;
507 if (z < tmin || z >
tmax)
519 for (
i = 0;
i <
h;
i++) {
520 const int iw1 =
i * slinesizex;
521 const int iw2 =
i * slinesizey;
522 const int iwd =
i * slinesized;
523 for (j = 0; j <
w; j++) {
526 const int z = spd[iwd + j];
527 const int pos =
y * dlinesize +
x;
529 if (z < tmin || z >
tmax)
539 for (
i = 0;
i <
in->height;
i++) {
540 const int iwx = (
i >>
vsub) * slinesizex;
541 const int iwy = (
i >>
vsub) * slinesizey;
542 const int iwd =
i * slinesized;
543 for (j = 0; j <
in->width; j++) {
546 const int z = spd[iwd + j];
547 const int pos =
y * dlinesize +
x;
549 if (z < tmin || z >
tmax)
552 dpd[pos] =
FFMAX(z, dpd[pos]);
565 for (
i = 0;
i <
out->height;
i++) {
566 for (j = 0; j <
out->width; j++) {
567 int pos =
i * dlinesize + j;
576 for (
i = 0;
i <
out->height;
i++) {
577 for (j = 0; j <
out->width; j++) {
578 if (!dpd[
i * dlinesize + j]) {
579 dpx[
i * dlinesize + j] = j;
580 dpy[
i * dlinesize + j] =
i;
581 dpd[
i * dlinesize + j] = mid;
585 }
else if (
s->mode ==
COLOR5) {
586 for (
i = 0;
i <
out->height;
i++) {
587 for (j = 0; j <
out->width; j++) {
588 if (!dpd[
i * dlinesize + j]) {
589 dpx[
i * dlinesize + j] = j;
590 dpy[
i * dlinesize + j] =
i;
601 const int slinesizex =
in->linesize[
s->x];
602 const int slinesizey =
in->linesize[
s->y];
603 const int slinesized =
in->linesize[
pd];
604 const int dlinesize =
out->linesize[0];
606 const int px =
s->x, py =
s->y;
607 const int h =
s->planeheight[py];
608 const int w =
s->planewidth[px];
612 const int hsub =
s->hsub;
613 const int vsub =
s->vsub;
618 const int tmin =
s->tmin;
619 const int tmax =
s->tmax;
622 for (k = 0; k < 4 && dst[k]; k++)
623 for (
i = 0;
i <
out->height ;
i++)
624 memset(dst[k] +
i *
out->linesize[k],
625 (
s->mode ==
COLOR ||
s->mode ==
COLOR5) && k ==
s->pd ? 0 :
s->bg_color[k],
out->width);
632 for (
i = 0;
i <
h;
i++) {
633 const int iwx =
i * slinesizex;
634 const int iwy =
i * slinesizey;
635 const int iwd =
i * slinesized;
636 for (j = 0; j <
w; j++) {
637 const int x = spx[iwx + j];
638 const int y = spy[iwy + j];
639 const int z = spd[iwd + j];
640 const int pos =
y * dlinesize +
x;
642 if (z < tmin || z >
tmax)
649 for (
i = 0;
i <
h;
i++) {
650 const int iwx =
i * slinesizex;
651 const int iwy =
i * slinesizey;
652 const int iwd =
i * slinesized;
653 for (j = 0; j <
w; j++) {
654 const int x = spx[iwx + j];
655 const int y = spy[iwy + j];
656 const int z = spd[iwd + j];
657 const int pos =
y * dlinesize +
x;
659 if (z < tmin || z >
tmax)
671 for (
i = 0;
i <
h;
i++) {
672 const int iw1 =
i * slinesizex;
673 const int iw2 =
i * slinesizey;
674 const int iwd =
i * slinesized;
675 for (j = 0; j <
w; j++) {
676 const int x = spx[iw1 + j];
677 const int y = spy[iw2 + j];
678 const int z = spd[iwd + j];
679 const int pos =
y * dlinesize +
x;
681 if (z < tmin || z >
tmax)
691 for (
i = 0;
i <
h;
i++) {
692 const int iw1 =
i * slinesizex;
693 const int iw2 =
i * slinesizey;
694 const int iwd =
i * slinesized;
695 for (j = 0; j <
w; j++) {
696 const int x = spx[iw1 + j];
697 const int y = spy[iw2 + j];
698 const int z = spd[iwd + j];
699 const int pos =
y * dlinesize +
x;
701 if (z < tmin || z >
tmax)
713 for (
i = 0;
i <
h;
i++) {
714 const int iw1 =
i * slinesizex;
715 const int iw2 =
i * slinesizey;
716 const int iwd =
i * slinesized;
717 for (j = 0; j <
w; j++) {
718 const int x = spx[iw1 + j];
719 const int y = spy[iw2 + j];
720 const int z = spd[iwd + j];
721 const int pos =
y * dlinesize +
x;
723 if (z < tmin || z >
tmax)
733 for (
i = 0;
i <
in->height;
i++) {
734 const int iwx = (
i >>
vsub) * slinesizex;
735 const int iwy = (
i >>
vsub) * slinesizey;
736 const int iwd =
i * slinesized;
737 for (j = 0; j <
in->width; j++) {
738 const int x = spx[iwx + (j >>
hsub)];
739 const int y = spy[iwy + (j >>
hsub)];
740 const int z = spd[iwd + j];
741 const int pos =
y * dlinesize +
x;
743 if (z < tmin || z >
tmax)
746 dpd[pos] =
FFMAX(z, dpd[pos]);
759 for (
i = 0;
i <
out->height;
i++) {
760 for (j = 0; j <
out->width; j++) {
761 int pos =
i * dlinesize + j;
770 for (
i = 0;
i <
out->height;
i++) {
771 for (j = 0; j <
out->width; j++) {
772 if (!dpd[
i *
out->linesize[
pd] + j]) {
773 dpx[
i *
out->linesize[px] + j] = j;
774 dpy[
i *
out->linesize[py] + j] =
i;
775 dpd[
i *
out->linesize[
pd] + j] = 128;
779 }
else if (
s->mode ==
COLOR5) {
780 for (
i = 0;
i <
out->height;
i++) {
781 for (j = 0; j <
out->width; j++) {
782 if (!dpd[
i *
out->linesize[
pd] + j]) {
783 dpx[
i *
out->linesize[px] + j] = j;
784 dpy[
i *
out->linesize[py] + j] =
i;
793 "R",
"B",
"Cy",
"Yl",
"G",
"Mg",
798 { 81, 90, 240 }, { 41, 240, 110 }, { 170, 166, 16 },
799 { 210, 16, 146 }, { 145, 54, 34 }, { 106, 202, 222 },
800 { 162, 44, 142 }, { 131, 156, 44 }, { 112, 72, 58 },
801 { 84, 184, 198 }, { 65, 100, 212 }, { 35, 212, 114 },
802 { 235, 128, 128 }, { 16, 128, 128 } },
803 { { 63, 102, 240 }, { 32, 240, 118 }, { 188, 154, 16 },
804 { 219, 16, 138 }, { 173, 42, 26 }, { 78, 214, 230 },
805 { 28, 212, 120 }, { 51, 109, 212 }, { 63, 193, 204 },
806 { 133, 63, 52 }, { 145, 147, 44 }, { 168, 44, 136 },
807 { 235, 128, 128 }, { 16, 128, 128 } },
808 { { 81*2, 90*2, 240*2 }, { 41*2, 240*2, 110*2 }, { 170*2, 166*2, 16*2 },
809 { 210*2, 16*2, 146*2 }, { 145*2, 54*2, 34*2 }, { 106*2, 202*2, 222*2 },
810 { 162*2, 44*2, 142*2 }, { 131*2, 156*2, 44*2 }, { 112*2, 72*2, 58*2 },
811 { 84*2, 184*2, 198*2 }, { 65*2, 100*2, 212*2 }, { 35*2, 212*2, 114*2 },
812 { 470, 256, 256 }, { 32, 256, 256 } },
813 { { 63*2, 102*2, 240*2 }, { 32*2, 240*2, 118*2 }, { 188*2, 154*2, 16*2 },
814 { 219*2, 16*2, 138*2 }, { 173*2, 42*2, 26*2 }, { 78*2, 214*2, 230*2 },
815 { 28*2, 212*2, 120*2 }, { 51*2, 109*2, 212*2 }, { 63*2, 193*2, 204*2 },
816 { 133*2, 63*2, 52*2 }, { 145*2, 147*2, 44*2 }, { 168*2, 44*2, 136*2 },
817 { 470, 256, 256 }, { 32, 256, 256 } },
818 { { 81*4, 90*4, 240*4 }, { 41*4, 240*4, 110*4 }, { 170*4, 166*4, 16*4 },
819 { 210*4, 16*4, 146*4 }, { 145*4, 54*4, 34*4 }, { 106*4, 202*4, 222*4 },
820 { 162*4, 44*4, 142*4 }, { 131*4, 156*4, 44*4 }, { 112*4, 72*4, 58*4 },
821 { 84*4, 184*4, 198*4 }, { 65*4, 100*4, 212*4 }, { 35*4, 212*4, 114*4 },
822 { 940, 512, 512 }, { 64, 512, 512 } },
823 { { 63*4, 102*4, 240*4 }, { 32*4, 240*4, 118*4 }, { 188*4, 154*4, 16*4 },
824 { 219*4, 16*4, 138*4 }, { 173*4, 42*4, 26*4 }, { 78*4, 214*4, 230*4 },
825 { 28*4, 212*4, 120*4 }, { 51*4, 109*4, 212*4 }, { 63*4, 193*4, 204*4 },
826 { 133*4, 63*4, 52*4 }, { 145*4, 147*4, 44*4 }, { 168*4, 44*4, 136*4 },
827 { 940, 512, 512 }, { 64, 512, 512 } },
828 { { 81*8, 90*4, 240*8 }, { 41*8, 240*8, 110*8 }, { 170*8, 166*8, 16*8 },
829 { 210*8, 16*4, 146*8 }, { 145*8, 54*8, 34*8 }, { 106*8, 202*8, 222*8 },
830 { 162*8, 44*4, 142*8 }, { 131*8, 156*8, 44*8 }, { 112*8, 72*8, 58*8 },
831 { 84*8, 184*4, 198*8 }, { 65*8, 100*8, 212*8 }, { 35*8, 212*8, 114*8 },
832 { 1880, 1024, 1024 }, { 128, 1024, 1024 } },
833 { { 63*8, 102*8, 240*8 }, { 32*8, 240*8, 118*8 }, { 188*8, 154*8, 16*8 },
834 { 219*8, 16*8, 138*8 }, { 173*8, 42*8, 26*8 }, { 78*8, 214*8, 230*8 },
835 { 28*8, 212*8, 120*8 }, { 51*8, 109*8, 212*8 }, { 63*8, 193*8, 204*8 },
836 { 133*8, 63*8, 52*8 }, { 145*8, 147*8, 44*8 }, { 168*8, 44*8, 136*8 },
837 { 1880, 1024, 1024 }, { 128, 1024, 1024 } },
838 { { 81*16, 90*16, 240*16 }, { 41*16, 240*16, 110*16 }, { 170*16, 166*16, 16*16 },
839 { 210*16, 16*16, 146*16 }, { 145*16, 54*16, 34*16 }, { 106*16, 202*16, 222*16 },
840 { 162*16, 44*16, 142*16 }, { 131*16, 156*16, 44*16 }, { 112*16, 72*16, 58*16 },
841 { 84*16, 184*16, 198*16 }, { 65*16, 100*16, 212*16 }, { 35*16, 212*16, 114*16 },
842 { 3760, 2048, 2048 }, { 256, 2048, 2048 } },
843 { { 63*16, 102*16, 240*16 }, { 32*16, 240*16, 118*16 }, { 188*16, 154*16, 16*16 },
844 { 219*16, 16*16, 138*16 }, { 173*16, 42*16, 26*16 }, { 78*16, 214*16, 230*16 },
845 { 28*16, 212*16, 120*16 }, { 51*16, 109*16, 212*16 }, { 63*16, 193*16, 204*16 },
846 { 133*16, 63*16, 52*16 }, { 145*16, 147*16, 44*16 }, { 168*16, 44*16, 136*16 },
847 { 3760, 2048, 2048 }, { 256, 2048, 2048 } },
852 const float f = 1. - o;
853 const float V = o * v;
856 dst[ l - 3] = dst[ l - 3] *
f +
V;
857 dst[ l + 3] = dst[ l + 3] *
f +
V;
858 dst[-l - 3] = dst[-l - 3] *
f +
V;
859 dst[-l + 3] = dst[-l + 3] *
f +
V;
863 dst[ l - 3] = dst[ l - 3] *
f +
V;
864 dst[ l + 3] = dst[ l + 3] *
f +
V;
865 dst[ l - 2] = dst[ l - 2] *
f +
V;
866 dst[ l + 2] = dst[ l + 2] *
f +
V;
867 dst[-l - 3] = dst[-l - 3] *
f +
V;
868 dst[-l + 3] = dst[-l + 3] *
f +
V;
869 dst[-l - 2] = dst[-l - 2] *
f +
V;
870 dst[-l + 2] = dst[-l + 2] *
f +
V;
875 const float f = 1. - o;
876 const float V = o * v;
879 dst[ l - 3] = dst[ l - 3] *
f +
V;
880 dst[ l + 3] = dst[ l + 3] *
f +
V;
881 dst[-l - 3] = dst[-l - 3] *
f +
V;
882 dst[-l + 3] = dst[-l + 3] *
f +
V;
886 dst[ l - 3] = dst[ l - 3] *
f +
V;
887 dst[ l + 3] = dst[ l + 3] *
f +
V;
888 dst[ l - 2] = dst[ l - 2] *
f +
V;
889 dst[ l + 2] = dst[ l + 2] *
f +
V;
890 dst[-l - 3] = dst[-l - 3] *
f +
V;
891 dst[-l + 3] = dst[-l + 3] *
f +
V;
892 dst[-l - 2] = dst[-l - 2] *
f +
V;
893 dst[-l + 2] = dst[-l + 2] *
f +
V;
909 for (
i = 0; txt[
i];
i++) {
914 for (char_y = font_height - 1; char_y >= 0; char_y--) {
916 if (font[txt[
i] * font_height + char_y] &
mask)
917 p[0] = p[0] * o2 + v * o1;
935 for (
i = 0; txt[
i];
i++) {
940 for (char_y = font_height - 1; char_y >= 0; char_y--) {
942 if (font[txt[
i] * font_height + char_y] &
mask)
943 p[0] = p[0] * o2 + v * o1;
954 const int max =
s->size - 1;
955 const float o =
s->opacity;
958 for (
i = 0;
i < 12;
i++) {
994 for (
i = 0;
i < 6 &&
s->flags & 4;
i++) {
995 uint16_t
color[4] = { 0, 0, 0, 0 };
1014 x = av_clip(
x, 0,
out->width - 9);
1015 y = av_clip(
y, 0,
out->height - 9);
1022 const float o =
s->opacity;
1025 for (
i = 0;
i < 12;
i++) {
1061 for (
i = 0;
i < 6 &&
s->flags & 4;
i++) {
1080 x = av_clip(
x, 0,
out->width - 9);
1081 y = av_clip(
y, 0,
out->height - 9);
1088 const int max =
s->size - 1;
1089 const float o =
s->opacity;
1090 const int m =
s->mult;
1093 for (
i = 0;
i < 12;
i++) {
1097 draw_dots16((uint16_t *)(
out->data[0] +
y *
out->linesize[0] +
x * 2),
out->linesize[0] / 2, 128 * m, o);
1108 draw_dots16((uint16_t *)(
out->data[0] +
y *
out->linesize[0] +
x * 2),
out->linesize[0] / 2, 128 * m, o);
1119 draw_dots16((uint16_t *)(
out->data[0] +
y *
out->linesize[0] +
x * 2),
out->linesize[0] / 2, 128 * m, o);
1126 for (
i = 0;
i < 6 &&
s->flags & 4;
i++) {
1127 const uint16_t
color[4] = { 128 * m, 0, 0,
max };
1140 x = av_clip(
x, 0,
out->width - 9);
1141 y = av_clip(
y, 0,
out->height - 9);
1148 const float o =
s->opacity;
1151 for (
i = 0;
i < 12;
i++) {
1184 for (
i = 0;
i < 6 &&
s->flags & 4;
i++) {
1198 x = av_clip(
x, 0,
out->width - 9);
1199 y = av_clip(
y, 0,
out->height - 9);
1212 if (
s->colorspace) {
1213 s->cs = (
s->depth - 8) * 2 +
s->colorspace - 1;
1215 switch (
in->colorspace) {
1218 s->cs = (
s->depth - 8) * 2 + 0;
1222 s->cs = (
s->depth - 8) * 2 + 1;
1234 s->graticulef(
s,
out,
s->x,
s->y,
s->pd,
s->cs);
1254 s->size = 1 <<
desc->comp[0].depth;
1255 s->mult =
s->size / 256;
1256 s->depth =
desc->comp[0].depth;
1257 s->tmin =
s->lthreshold * (
s->size - 1);
1258 s->tmax =
s->hthreshold * (
s->size - 1);
1260 if (
s->tmin >
s->tmax) {
1265 if (
s->mode ==
GRAY &&
s->is_yuv)
1268 if ((
s->x == 1 &&
s->y == 2) || (
s->x == 2 &&
s->y == 1))
1270 else if ((
s->x == 0 &&
s->y == 2) || (
s->x == 2 &&
s->y == 0))
1272 else if ((
s->x == 0 &&
s->y == 1) || (
s->x == 1 &&
s->y == 0))
1283 if (
s->is_yuv &&
s->size == 256) {
1284 if (
s->graticule == 1)
1286 else if (
s->graticule == 2)
1288 }
else if (
s->is_yuv) {
1289 if (
s->graticule == 1)
1291 else if (
s->graticule == 2)
1295 s->bg_color[3] =
s->bgopacity * (
s->size - 1);
1297 switch (
inlink->format) {
1309 s->bg_color[1] =
s->size / 2 - 1;
1310 s->bg_color[2] =
s->size / 2 - 1;
1313 s->hsub =
desc->log2_chroma_w;
1314 s->vsub =
desc->log2_chroma_h;
1316 s->planeheight[0] =
s->planeheight[3] =
inlink->h;
1318 s->planewidth[0] =
s->planewidth[3] =
inlink->w;
1351 .
name =
"vectorscope",
1354 .priv_class = &vectorscope_class,