| 150 | } |
| 151 | |
| 152 | void RawIDA::AddOutputChannel(word32 channelId) |
| 153 | { |
| 154 | m_outputChannelIds.push_back(channelId); |
| 155 | m_outputChannelIdStrings.push_back(WordToString(channelId)); |
| 156 | m_outputQueues.push_back(ByteQueue()); |
| 157 | if (m_inputChannelIds.size() == size_t(m_threshold)) |
| 158 | ComputeV((unsigned int)m_outputChannelIds.size() - 1); |
| 159 | } |
| 160 | |
| 161 | void RawIDA::PrepareInterpolation() |
| 162 | { |
nothing calls this directly
no test coverage detected