Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b
Parent Directory
(gnuradio)
Kludge Summary of gnuradio/gr-gcell
| Total Kludges |
1 |
| Total Subdirs |
1 |
All Directories within gnuradio/gr-gcell
All Files within gnuradio/gr-gcell
Kludge Snippets in gnuradio/gr-gcell
gnuradio/gr-gcell/src/gcell_fft_vcc.cc
| Category |
FIXME |
| Committer |
eb |
| Commit ID |
b9ba2711addfc9057c136b520afc9e121ec19be9 |
113 float window_buf[MAX_FFT_SIZE/2] __attribute__((aligned (16)));
114 float *window = 0;
115
116 // If we've got a window, ensure it's 16-byte aligned
117 // FIXME move this to set_window
118 if (d_window.size()){
119 if ((((intptr_t)&d_window[0]) & 0xf) == 0)
120 window = &d_window[0]; // OK as is
121 else {