Fix build warning introduced in commit:424bc609b6f352a2b10f2a01ffcd037483e3591f
This commit is contained in:
parent
b929012583
commit
b2acf50c81
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user