1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

imgcodecs: refactoring, improve code quality

This commit is contained in:
Alexander Alekhin
2017-08-15 22:04:55 +00:00
committed by Alexander Alekhin
parent 0d854db361
commit 999f41fb4f
5 changed files with 233 additions and 91 deletions
+2
View File
@@ -209,6 +209,8 @@ int RLByteStream::getByte()
current = m_current;
}
CV_Assert(current < m_end);
val = *((uchar*)current);
m_current = current + 1;
return val;