Commit b2acf50c authored by Andrey Kamaev's avatar Andrey Kamaev

Fix build warning introduced in commit:424bc609

parent b9290125
...@@ -258,9 +258,9 @@ void RetinaColor::runColorDemultiplexing(const std::valarray<float> &multiplexed ...@@ -258,9 +258,9 @@ void RetinaColor::runColorDemultiplexing(const std::valarray<float> &multiplexed
_demultiplexedTempBuffer=0; _demultiplexedTempBuffer=0;
// -> demultiplex process // -> demultiplex process
register unsigned int *colorSamplingPRT=&_colorSampling[0]; register unsigned int *colorSamplingPRT=&_colorSampling[0];
register const float *multiplexedColorFramePTR=get_data(multiplexedColorFrame); register const float *multiplexedColorFramePtr=get_data(multiplexedColorFrame);
for (unsigned int indexa=0; indexa<_filterOutput.getNBpixels() ; ++indexa) for (unsigned int indexa=0; indexa<_filterOutput.getNBpixels() ; ++indexa)
_demultiplexedTempBuffer[*(colorSamplingPRT++)]=*(multiplexedColorFramePTR++); _demultiplexedTempBuffer[*(colorSamplingPRT++)]=*(multiplexedColorFramePtr++);
// interpolate the demultiplexed frame depending on the color sampling method // interpolate the demultiplexed frame depending on the color sampling method
if (!adaptiveFiltering) if (!adaptiveFiltering)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment