- Eigen malloc check

git-svn-id: http://moon:8086/svn/software/trunk/projects/mpsk_rx_gui@114 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2015-01-05 12:11:12 +00:00
parent b10343e9ad
commit 9ef2fba751
4 changed files with 18 additions and 5 deletions
+4
View File
@@ -362,6 +362,7 @@ void Receiver::timerCallback()
void Receiver::processPassband(RVec const &rf, uint32_t len)
{
Eigen::internal::set_is_malloc_allowed(false);
const ScopedLock sl (m_lock);
uint32_t len_down;
@@ -397,6 +398,9 @@ void Receiver::processPassband(RVec const &rf, uint32_t len)
// Arm Filtering and downsampling
len_down = m_firArmDown.process(m_basebandBuffer, m_passbandBuffer, len);
processBaseband(m_basebandBuffer, len_down);
Eigen::internal::set_is_malloc_allowed(true);
}
void Receiver::processBaseband(float *pI, float *pQ, uint32_t len)