Mercurial > hg > vampy
comparison PyPlugin.h @ 47:8b2eddf686da
Fix blockSize+2 for frequency domin plugins
author | fazekasgy |
---|---|
date | Tue, 06 Oct 2009 09:27:20 +0000 |
parents | 27bab3a16c9a |
children | c1e4f706ca9a |
comparison
equal
deleted
inserted
replaced
46:af9c4cee95a8 | 47:8b2eddf686da |
---|---|
408 | 408 |
409 FeatureSet rFeatureSet; | 409 FeatureSet rFeatureSet; |
410 PyObject *pyChannelList = NULL; | 410 PyObject *pyChannelList = NULL; |
411 | 411 |
412 if (m_processType == numpy_bufferProcess) { | 412 if (m_processType == numpy_bufferProcess) { |
413 pyChannelList = m_ti.InputBuffers_As_SharedMemoryList(inputBuffers,m_channels,m_blockSize); | 413 pyChannelList = m_ti.InputBuffers_As_SharedMemoryList(inputBuffers,m_channels,m_blockSize,m_inputDomain); |
414 } | 414 } |
415 | 415 |
416 if (m_processType == legacyProcess) { | 416 if (m_processType == legacyProcess) { |
417 pyChannelList = m_ti.InputBuffers_As_PythonLists(inputBuffers,m_channels,m_blockSize,m_inputDomain); | 417 pyChannelList = m_ti.InputBuffers_As_PythonLists(inputBuffers,m_channels,m_blockSize,m_inputDomain); |
418 } | 418 } |