File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
include/private/dsp/arch/generic Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3
- * (C) 2020 Vladimir Sadovnikov <[email protected] >
2
+ * Copyright (C) 2023 Linux Studio Plugins Project <https://lsp-plug.in/>
3
+ * (C) 2023 Vladimir Sadovnikov <[email protected] >
4
4
*
5
5
* This file is part of lsp-dsp-lib
6
6
* Created on: 31 мар. 2020 г.
@@ -71,10 +71,9 @@ namespace lsp
71
71
} while (clen >= 4 );
72
72
73
73
// Apply tail
74
- d[0 ] += /* 0 */ + k[1 ]*p[3 ] + k[2 ]*p[2 ] + k[3 ]*p[1 ];
75
- d[1 ] += /* 0 */ + /* 0 */ + k[2 ]*p[3 ] + k[3 ]*p[2 ];
76
- d[2 ] += /* 0 */ + /* 0 */ + /* 0 */ + k[3 ]*p[3 ];
77
- // d[3] += /* 0 */ + /* 0 */ + /* 0 */ + /* 0 */;
74
+ d[0 ] += /* 0 */ k[1 ]*p[3 ] + k[2 ]*p[2 ] + k[3 ]*p[1 ];
75
+ d[1 ] += /* 0 */ /* 0 */ k[2 ]*p[3 ] + k[3 ]*p[2 ];
76
+ d[2 ] += /* 0 */ /* 0 */ /* 0 */ k[3 ]*p[3 ];
78
77
}
79
78
80
79
// Apply tail
@@ -119,7 +118,7 @@ namespace lsp
119
118
k++;
120
119
}
121
120
}
122
- }
123
- }
121
+ } /* namespace generic */
122
+ } /* namespace lsp */
124
123
125
124
#endif /* PRIVATE_DSP_ARCH_GENERIC_CONVOLUTION_H_ */
You can’t perform that action at this time.
0 commit comments