|
1 | 1 | /* |
2 | | - * Copyright (C) 2025 Linux Studio Plugins Project <https://lsp-plug.in/> |
3 | | - * (C) 2025 Vladimir Sadovnikov <sadko4u@gmail.com> |
| 2 | + * Copyright (C) 2026 Linux Studio Plugins Project <https://lsp-plug.in/> |
| 3 | + * (C) 2026 Vladimir Sadovnikov <sadko4u@gmail.com> |
4 | 4 | * |
5 | 5 | * This file is part of lsp-plugins-sampler |
6 | 6 | * Created on: 11 июл. 2021 г. |
|
20 | 20 | */ |
21 | 21 |
|
22 | 22 | #include <lsp-plug.in/plug-fw/meta/ports.h> |
| 23 | +#include <lsp-plug.in/plug-fw/meta/registry.h> |
23 | 24 | #include <lsp-plug.in/shared/meta/developers.h> |
24 | 25 | #include <lsp-plug.in/common/status.h> |
25 | 26 | #include <private/meta/sampler.h> |
@@ -836,6 +837,7 @@ namespace lsp |
836 | 837 | mono_plugin_port_groups, |
837 | 838 | &sampler_bundle |
838 | 839 | }; |
| 840 | + LSP_REGISTER_METADATA(sampler_mono); |
839 | 841 |
|
840 | 842 | const plugin_t sampler_stereo = |
841 | 843 | { |
@@ -866,6 +868,7 @@ namespace lsp |
866 | 868 | stereo_plugin_port_groups, |
867 | 869 | &sampler_bundle |
868 | 870 | }; |
| 871 | + LSP_REGISTER_METADATA(sampler_stereo); |
869 | 872 |
|
870 | 873 | const plugin_t multisampler_x12 = |
871 | 874 | { |
@@ -896,6 +899,7 @@ namespace lsp |
896 | 899 | stereo_plugin_port_groups, |
897 | 900 | &multisampler_bundle |
898 | 901 | }; |
| 902 | + LSP_REGISTER_METADATA(multisampler_x12); |
899 | 903 |
|
900 | 904 | const plugin_t multisampler_x24 = |
901 | 905 | { |
@@ -926,6 +930,7 @@ namespace lsp |
926 | 930 | stereo_plugin_port_groups, |
927 | 931 | &multisampler_bundle |
928 | 932 | }; |
| 933 | + LSP_REGISTER_METADATA(multisampler_x24); |
929 | 934 |
|
930 | 935 | const plugin_t multisampler_x48 = |
931 | 936 | { |
@@ -956,6 +961,7 @@ namespace lsp |
956 | 961 | stereo_plugin_port_groups, |
957 | 962 | &multisampler_bundle |
958 | 963 | }; |
| 964 | + LSP_REGISTER_METADATA(multisampler_x48); |
959 | 965 |
|
960 | 966 | const plugin_t multisampler_x12_do = |
961 | 967 | { |
@@ -986,6 +992,7 @@ namespace lsp |
986 | 992 | sampler_x12_port_groups, |
987 | 993 | &multisampler_bundle |
988 | 994 | }; |
| 995 | + LSP_REGISTER_METADATA(multisampler_x12_do); |
989 | 996 |
|
990 | 997 | const plugin_t multisampler_x24_do = |
991 | 998 | { |
@@ -1016,6 +1023,7 @@ namespace lsp |
1016 | 1023 | sampler_x24_port_groups, |
1017 | 1024 | &multisampler_bundle |
1018 | 1025 | }; |
| 1026 | + LSP_REGISTER_METADATA(multisampler_x24_do); |
1019 | 1027 |
|
1020 | 1028 | const plugin_t multisampler_x48_do = |
1021 | 1029 | { |
@@ -1046,6 +1054,7 @@ namespace lsp |
1046 | 1054 | sampler_x48_port_groups, |
1047 | 1055 | &multisampler_bundle |
1048 | 1056 | }; |
| 1057 | + LSP_REGISTER_METADATA(multisampler_x48_do); |
1049 | 1058 |
|
1050 | 1059 | } /* namespace meta */ |
1051 | 1060 | } /* namespace lsp */ |
|
0 commit comments