1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00
freebsd-ports/audio/clunk/files/patch-clunk_mdct__context.h
Mathieu Arnold 9fa9eb9ac7 Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-26 16:51:15 +00:00

12 lines
355 B
C++

--- clunk/mdct_context.h.orig 2014-09-29 06:48:48 UTC
+++ clunk/mdct_context.h
@@ -61,7 +61,7 @@ public:
T data[N];
- mdct_context() : sqrt_N((T)sqrt((T)N)), data() {
+ mdct_context() : window_func(), sqrt_N((T)sqrt((T)N)), data() {
for(unsigned t = 0; t < N4; ++t) {
angle_cache[t] = std::polar<T>(1, 2 * T(M_PI) * (t + T(0.125)) / N);
}